There is a syntax error in the object below. Which of the
following adjustments will make this code correct? var superman = {
firstName: "Clark", lastName: "Kent", revealIdentity function() {
return this.firstName + " " + this.lastName; } };
a. firstName: "Clark";
b. revealIdentity: function () {
c. return firstName + " " + lastName;
d. var superman {
There is a syntax error in the object below. Which of the following adjustments will make...
8.26
Encapsulate the Name class. Modify the existing code shown below
to make its fields private, and add appropriate accessor methods to
the class named getFirstName, getMiddleInitial, and
getLastName.
code:
class Name {
private String firstName;
private String middleNames;
private String lastName;
//Constructor method
public Name(String firstName, String middleNames, String
lastName)
{
this.firstName = firstName;
this.middleNames = middleNames;
this.lastName = lastName;
}
//Accessor for firstName
public String getFirstName()
{
return firstName;
}
//Accessor for middleNames
public String getMiddlesNames()...
What is wrong with this Code? Fix the code errors to run correctly without error. There are four parts for one code, all are small code segments for one question. public class StudentTest { public static void main(String[] args){ // Part Time Student Test Student ft1 = new PartTimeStudent("George", "Bush", "123-12-5678", 1, 2 ); System.out.println(ft1); Student ft2 = new PartTimeStudent("Abraham", "Lincoln", "001-90-5323", 6, 22 ); System.out.println(ft2); // Full Time Student Test Student pt1 = new FullTimeStudent("Nikola", "Tesla", "442-00-0998", 8, 26...
JAVA PROGRAMMING In this final review lab from our intro course, use the Name class you created in the previous lab. In this lab, create a Student class with the following class variable: Student name: Name (Note: Name is a datatype) Student Id: String Create the getter and setter methods. In addition to these methods, create a toString() method, which overrides the object class toString() method. This override method prints the current value of any of this class object. Complete...
Introduction In this lab, you will be working with three classes: Person, Student, and Roster. Person and Student represent individuals with a first and last name as String class variables, and Student has an additional int class variable that represents a ID number. The Roster class represents a group of people that are objects of either the Person or Student class. It contains an ArrayList. The Person class has been completed for you with class variables, a constructor, and a...
Language Java Step 1: Design a class called Student. The Student class should contain the following data: firstName lastName studentID totalCredits gpa Your class should implement the “sets” and “gets” for the class. Include methods: equals, compareTo, toString. Change the toString method (from class) to put each member variable on a new line. Step 2: Write a driver program to test that Student works correctly. Test is with 3 students as given in class. Step 3: Write a “registration” program...
With the code below, which of the statements will NOT cause a syntax error? enum Region{MEXICO, TEXAS, BOOMTOWN, GOTHAM, OLDSOUTH, TOWER}; Region R1, R2; R1 = TEXAS; Answers: R2 = (int) R1 + 2; R2 = R1 + 2; R2 = static_cast<Region>(R1 + 2); R2 = R1 + static_cast<Region>(2);
11. A _____________ error does not cause the compiler to generate an error, but does cause the program to produce incorrect results. Syntax, logic, variable name, function name 12. A syntax error occurs when the programmer violates one or more grammar rules of the C language. True or False 13. Given this line of code: y = sqrt(x); x would be known as the argument. True or False 14. A void function does not return a value to the...
Q10: Which of the following is not an error (either a syntax error or a logic error)? Neglecting to include an action in the body of a while statement that will eventually cause the condition to become false. Spelling a key word (such as while or if) with a capitalized first letter. Using a condition for a while statement that is initially false. An infinite loop. Q11: How many times is the body of the loop below executed? int counter;...
Which of the following replacement code fragments will fix the code below? console.log(square); console.log(square(5)); var square = function(n) { return n * n; } A.) alert(square); alert(square(5)); var square = function(n) { return n * n; } B.) console.log(square); console.log(square(5)); var function square = function(n) { return n * n; } C.) console.log(square); console.log(square(5)); function square = function(n) { return n * n; } D.) console.log(square); console.log(square(5)); function square(n) { return n * n; }
Specify whether each of the following errors is a syntax error, a runtime error or a logic error: a. using single quotes where command needs double quotes _____ b. dollar and cents amount on a bill is not formatted correctly _____ c. divide a number by zero _____ (8) Evaluate the following expressions: a. fabs (-25.2) b. pow(4.0, 3.0) c. squareroot (400) d. fabs (8.2) e. squareroot (-400) f. floor(-6.7) g. floor(6.7) h. ceil(-4.1) (4) Indicate which of the following...