/** | |
* Get the email account name. | |
* | |
* @return the name of the account. | |
*/ | |
private String getAccountName() { | |
return "[email protected]"; | |
return "[email protected]"; | |
} |
/** | |
* Add $4 of tip onto the current bill. | |
* | |
* @return the total price of the bill (including tip). | |
*/ | |
private addTip(int bill) { | |
return bill + 4; | |
} |
/** | |
* Sets up the app for the current city. | |
*/ | |
private nothing setup() { | |
cityName = "London"; | |
} |
/** | |
* Get the number of students in a class. | |
* | |
* @return the number of students. | |
*/ | |
private int getStudentClassSize() { | |
return "20"; | |
} |
Method 1 Ln 8 unreachable code after the first return statement.
Method 2 Ln 6 The data type of the return value must match the method's declared return type. It should be int
Method 3 Ln 4 There is not a method's declared return type of "nothing". It should be void.
Method 4 Ln 7 The data type of the return value must match the method's declared return type.20 should be without quotes
you are correct @abdahma01
DONE
DONE . thank god !
Please stop putting the solution in the comments.
Method1------>this is correct
private String getAccountName() {
return "[email protected]";
}
Method2------>this is correct
private int addTip(int bill) {
return bill + 4;
}
Method3------>this is correct
private nothing setup() {
return cityName = "London";
}
Method4------>this is correct
private int getStudentClassSize() {
return 20;
}
#1 Method: line 8: extra return statement line at the end of the method code.
#2 Method: line 6: Missing datatype of the method itself to be returned.
#3 Method: line 4: The method just set the value to cityName and doesn't return a value or we should define a data type for the method to be able to return something such as String value.
#4 Method: line 7: int not a proper data type used in the method to return a value of type String.
Method #3 does not include a return statement in its definition. Keeping in mind that except void methods, any other method should have a return statement, setup() should return a reference to a nothing object.
8 - can't return two values.
6 - forget return data type.
4 - nothing is not return data type.
7 - "20" not correct return data type,must be integer and this string.
why we comment here ??
Are we suppose to provide answers here?
I don't think so guys
@Eduese I don't think so too.
Done
thx
can't return two values
Method 1) : 8_ there is extra return line
Method 2) : 6_need data type then method name, data type is missing
Method 3) : 4_need data type String to get return value
Method 4) : 7_must be int or string , not proper data type
done
8,6,4,7
I agree Nogaeman keep it like that lad
Method (1) : 8 there is extra return line
Method (2) : 6 data type is missing
Method(3) : 4 need data type String to return value
Method (4) : 7 not proper data type
8,6,4,7
methode1------>line8-Return 2 values
methode2------>line6-return data type
methode3------>line4-return data type and methode name
methode4------>line7-" 10"return type int not string
Method 1: LN8,
Method 2: LN6,
Method 3: LN4,
Method 4: LN7.
guys please anyone solve lab1 ??
-nothing- could be a return type only if -nothing- is a class, but a class in java should have the first letter capitalized like -Nothing-. if we had -Nothing- in place of -nothing- then it will be correct and the method will return an object of the class Nothing.
I disagree with u bro , classes can begin with small letters , but we put it capital to make a different between the class and it's instances
Method 1: (LN 8) can't have two return statements.
Method 2: (LN 6) return type absent.
Method 3: (LN 4) return type absent.
Method 4: (LN 7) returning type and return content is different, defined int as return type then entered text.
PS: Im answering here cause I cant answer in the classroom because of chrome issues
I dont agree. "nothing" could be the type of an object made by us.
but method is not returning anything as there is no return statement
Method 1 >> Error Line 8 return "[email protected]";
The Correct
private String getAccountName() {
return "[email protected]";
}
Method 2 >> Error Line 6 private addTip(int bill) {
The Correct
private int addTip(int bill) {
return bill + 4;
}
Method 3 >> Error Line 4 private nothing setup() {
The Correct
private string setup() {
cityName = "London";
}
Method 4 >> Error Line 7 return "20";
The Correct
private int getStudentClassSize() {
return 20;
}
hey guys..would anybody be so kind and paste me the whole code because apparently I didn't save it.