Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse W

Alphabetical listing with fast deep pagination.
66619 items • Page 307 / 1333

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
What is wrong with the following code to create a class? public class Triangle {
What is wrong with the following code to create a class? public class Triangle {    // instance variables    private int largest;    private int shortest;    private int s1;    pr…
What is wrong with the following code? Correct it. public class Circle{ private
What is wrong with the following code? Correct it. public class Circle{       private double radius;       public Circle(double radius){                radius = radius;       }   …
What is wrong with the following code? Find (at least) five errors. For each err
What is wrong with the following code? Find (at least) five errors. For each error, state the line number , explain the error and show a correction. #include<iostream> #incl…
What is wrong with the following code? class classA { protected: void setX(int a
What is wrong with the following code?             class classA             {             protected:                         void setX(int a);                      // Line 1      …
What is wrong with the following code? for(int i = 0; i
What is wrong with the following code? for(int i = 0; i <=phrase.size( ); ++i) { cout << "Character at position " << i << " is: " << phrase[i] << …
What is wrong with the following equation? x2 + x- 12/x-3= x + 4 (x - 3)(x + 4)
What is wrong with the following equation? x2 + x- 12/x-3= x + 4 (x - 3)(x + 4) x2 + x - 12 The left-hand side is not defined for x =0, but the right-hand side is. The left-hand s…
What is wrong with the following function definition? void fill(const int a[], i
What is wrong with the following function definition? void fill(const int a[], int size) { for (int i = 0; i < size; i++) {     a[i] = 0; } return; } The function cannot change…
What is wrong with the following graph? Last week, we asked whether A levels are
What is wrong with the following graph? Last week, we asked whether A levels are becoming harder to pass. You said: Yes 50% No 49% A pie chart is not an appropriate graph for this…
What is wrong with the following if() statement, if anything? if(a = 5): printf(
What is wrong with the following if() statement, if anything? if(a = 5): printf("The value of a is five|n"): Nothing is wrong: the statement is fine as it is. There is a semicolon…
What is wrong with the following interface? public interface House { @Deprecated
What is wrong with the following interface? public interface House {    @Deprecated    void open(); void openFrontDoor();    void openBackDoor();} 2- Consider this implementation …
What is wrong with the following method for calculating factorials? /** * Calcul
What is wrong with the following method for calculating factorials? /** * Calculates the factorial of a non-negative integer, that is, the product of * all integers between 1 and …
What is wrong with the following program? #include namespace mySpace { const dou
What is wrong with the following program? #include namespace mySpace { const double RATE = 15.35; int a; using namespace std; int main() { int b; cin b; a = b; cout RATE a + 2 b e…
What is wrong with the following program? public class ShowErrors {public static
What is wrong with the following program? public class ShowErrors {public static void main(String[] args) {ShowErrors t = now ShowErrors(S):}} public class ShowErrors {public void…
What is wrong with the following switch statement? int ans; cout \"Type y for ye
What is wrong with the following switch statement? int ans; cout "Type y for yes or n for no "; cin ans; switch (ans) { case 'y': caae 'Y': cout "You said yes "; break; case 'n': …
What is wrong with the following two functions? void Power ( int x, int y) { int
What is wrong with the following two functions? void Power ( int x, int y) { int result; result = 1; while ( y > 0 ) { result = result * x; y--; } } and ... void Power ( int&am…
What is wrong with the following ‘proof’ that all cupcakes have the same flavor?
What is wrong with the following ‘proof’ that all cupcakes have the same flavor? What is wrong with the following 'proof' that all cupcakes have the same flavor? "Suppose there ar…
What is wrong with the following ‘proof’ that all cupcakes have the same flavor?
What is wrong with the following ‘proof’ that all cupcakes have the same flavor? “Suppose there are n cupcakes in the world. We induct on n. If n = 1 the result is clear (since an…
What is wrong with the given proof to prove the following theorem? Theorem: If x
What is wrong with the given proof to prove the following theorem? Theorem: If x is a real number, then x^2 is a positive real number. Proof: Let p_1 be "x is positive." statement…
What is wrong with the proof of the following (true) theorem? theorem 2. all new
What is wrong with the proof of the following (true) theorem? theorem 2. all new 1922 ford model T cars had the same exterior color. proof. The case n = 1 is obvious. Suppose that…
What is wrong with the three lines of code? this is java on BlueJ Constructor fo
What is wrong with the three lines of code? this is java on BlueJ Constructor for objects of class 03A3 public Q3A3 (int nl, int n2, int n3) //declaring variables int weekday-n1;/…
What is wrong with the way the nucleotides are joined? A. The 5\' carbon of the
What is wrong with the way the nucleotides are joined? A. The 5' carbon of the top nucleotide is connected to the 2' carbon position of the sugar in the bottom nucleotide, but a p…
What is wrong with the way the nucleotides are joined? The 5 carbon of the top n
What is wrong with the way the nucleotides are joined? The 5 carbon of the top nucleotide is connected to the 2 carbon position of the sugar in thas bottom nucleotide, but a phosp…
What is wrong with these codes A and B? Please help figure out and fix it. There
What is wrong with these codes A and B? Please help figure out and fix it. There may be more than 1 thing wrong. Also, document the process you use to figure it out using comments…
What is wrong with this HTML file Email bo
What is wrong with this HTML file <title>Email</title> </head> <body>     <style> body {background-color: #FF0000}</style>         <center&g…
What is wrong with this T-SQL statement? Select * from dbo.book where * in (\'tw
What is wrong with this T-SQL statement? Select * from dbo.book where * in ('two towers','hello kitty'); The book titles are not in double quotes. You must use a column before the…
What is wrong with this call statement? PrintName(string name); It is missing vo
What is wrong with this call statement? PrintName(string name); It is missing void. The data type should be removed. The semicolon should be removed. Nothing is wrong with it. A v…
What is wrong with this code class staff { String code; String name; /* Input pa
What is wrong with this code class staff { String code; String name; /* Input parameters for the constructor are: String c: staff code. String n: staff name. */ public staff(Strin…
What is wrong with this code! The problem I get is when I use white space in inp
What is wrong with this code! The problem I get is when I use white space in input (for the char arrays). How can I fix this problem! If there is no error you are probably inputti…
What is wrong with this code! The problem I get is when I use white space in inp
What is wrong with this code! The problem I get is when I use white space in input (for the char arrays). How can I fix this problem! If there is no error you are probably inputti…
What is wrong with this code: receive error code: temp/file.java:1: error: class
What is wrong with this code: receive error code: temp/file.java:1: error: class, interface, or enum expected OverloadedMethods.java ^ 1 error Compilation Failed OverloadedMethods…
What is wrong with this code? //-------------------------------------------- //f
What is wrong with this code? //-------------------------------------------- //file name: price.c //programmer: morgan lim //date: december 5, 2016 // //description: //allows the …
What is wrong with this code? How do I make it look like the sample picture wher
What is wrong with this code? How do I make it look like the sample picture where all the numbers are lined up, and all the numbers are calculated like the sample output? Everythi…
What is wrong with this code? I cannot get the port to connect to the socket at
What is wrong with this code? I cannot get the port to connect to the socket at all. When I enter a port number the client does nothing. Instructions: Implementing doServer(int li…
What is wrong with this code? In addition to the line of code, why exactly is it
What is wrong with this code? In addition to the line of code, why exactly is it a problem? How would two threads incorrectly execute that line, down to the pseudo-assembly level?…
What is wrong with this code? It is supposed to be a working Sierpinski carpet.
What is wrong with this code? It is supposed to be a working Sierpinski carpet. I would suggest putting this in eclipse to format it and see what is happening. import java.util.*;…
What is wrong with this code? It works fine if I enter different numbers, but wh
What is wrong with this code? It works fine if I enter different numbers, but when I use the same integrals the index does not work. For example 1 1 1 1 1 1 1 2 1 1, the max is 2 …
What is wrong with this php code? // Table header. echo \'
What is wrong with this php code? // Table header. echo '<table align="center" cellspacing="3" cellpadding="3" width="75%"> <tr><td align="left"><b>Team&lt…
What is wrong with this portion of the following code \"choice = getChoice(cours
What is wrong with this portion of the following code "choice = getChoice(courses, input);"? do { choice = getChoice(courses, input);    switch (ValidateChoice(choice, validChoice…
What is wrong with this program in Visual studio C#, Console application Please
What is wrong with this program in Visual studio C#, Console application Please Help me: Console.Write("Enter A Number:"); int thenumber; thenumber: Convert.ToInt32(Console.ReadLi…
What is wrong with this program. I am compiling in vim with C. 1 //C 2 //Pointer
What is wrong with this program. I am compiling in vim with C. 1 //C 2 //Pointer & structures 3 4 5 #include <stdio.h> 6 #include <string.h> 7 8 struct Semester 9 …
What is wrong with this proof that integer solutions of n + 1 - k = 0 exist? Sup
What is wrong with this proof that integer solutions of n + 1 - k = 0 exist? Suppose n = 7 and k = 8. Since k = n+1. Proving that n + 1 - k = 0. Nothing. "Since" introduces a subo…
What is wrong with this proof? Theorem. 7 is divisible by 3 Proof. Every integer
What is wrong with this proof? Theorem. 7 is divisible by 3 Proof. Every integer number is divisible by 3 or it is not. Let c be an arbitrary integer number. Therefore, it is divi…
What is wrong with this script? Questions 17 – 20 pose questions from the follow
What is wrong with this script? Questions 17 – 20 pose questions from the following Windows batch file. set dbUser=root set dbPassword=password set backupDir="C:Documents and Sett…
What is wrong with this simplified Embedded C code? void interruptHandler() { //
What is wrong with this simplified Embedded C code? void interruptHandler() { // write to a register on hardware  // to enable functionality delayInSeconds(1); // delay for 1 seco…
What is wrong with this solution? The irreversible liquid phase second order rea
What is wrong with this solution? The irreversible liquid phase second order reaction (-r_A = kC_A^2) 2 A rightarrow B k = 0.03dm^3/mol middot s is carried out in a CSTR. The ente…
What is wrong with this “proof” ? “Theorem:” For every positive integer n, if x
What is wrong with this “proof” ? “Theorem:” For every positive integer n, if x and y are positive integers with max(x, y) = n, then x = y. “Basis step:” Suppose that n=1. If max(…
What is wrong with this? CREATE TABLE participation ( team_id int(11) not null,
What is wrong with this? CREATE TABLE participation (    team_id int(11) not null,    driver_id int(11) not null,    race_id int(11) not null,    points_earned int(11) not null,  …
What is wrong(mistakes) with these two statetments? it could be words or numbers
What is wrong(mistakes) with these two statetments? it could be words or numbers... A researcher finds a large negative correlation between rom-com watching and relationship satis…
What is wrong? Explain what is wrong with each of the following randomization pr
What is wrong? Explain what is wrong with each of the following randomization procedures and describe how you would do the randomization correctly. (a) Twenty students are to be u…
What is wrong? Explain what is wrong with each of the following randomization pr
What is wrong? Explain what is wrong with each of the following randomization procedures and describe how you would do the randomization correctly. (a) Twenty students are to be u…