inta[6] = {2,7,8,9,11,16); //line 26
When you compile, you get the following messages: EXPLAIN WHAT THE FOLLOWING ERRORS MEAN-
Test.java:26: ‘]’ expected
int a[6] = {2,7,8,9,11,16}; //line 26
^
Test.java:26: illegal start of expression
int a[6] = {2,7,8,9,11,16}; //line 26
^
Test.java:26: illegal start of expression
int a[6] = {2,7,8,9,11,16};//line 26
^
Test.java:26: not a statement
int a[6] = {2,7,8,9,11,16}; //line 26
^
Test.java: 26: “;” expected
int a[6] = {2,7,8,9,11,16}; //line 26
^
Test.java: 26: class, interface, or enum expected
}
^
6 errors
Explain the errors.
Answer:
You should have coded the line like below line.
int[] a = new int[]{2,7,8,9,11,16};
This statement creates an array names a and initializes with
integers 2,7,8,9,11,16
The statement you have written is int a[6] = {2,7,8,9,11,16}; which initializes 7th element of array and you are giving array elements so it is throwing compilation error.
(40 pts) You coded the following on line 26 of a program called Test.java: inta[6] =...
(20 pts) Fill in the missing code: This recursive method returns “even” if the length of a give String is even, and “odd” if the length of the String is odd. public static String foo(String s) { if (s.length() ==0) return “even”; else if (s.length() = = 1) return “odd”; else //your code goes here } (40 pts) You coded the following in the file Test.java : System.out.println( foo(5)); //more code here public static int foo(int n)...
Instructions: Consider the following C++ program. At the top you can see the interface for the Student class. Below this is the implementation of the Student class methods. Finally, we have a very small main program. #include <string> #include <fstream> #include <iostream> using namespace std; class Student { public: Student(); Student(const Student & student); ~Student(); void Set(const int uaid, const string name, const float gpa); void Get(int & uaid, string & name, float & gpa) const; void Print() const; void...
JAVA getting the following errors: Project4.java:93: error: ']' expected arr[index] = newVal; // LEAVE THIS HERE. DO NOT REMOVE ^ Project4.java:93: error: ';' expected arr[index] = newVal; // LEAVE THIS HERE. DO NOT REMOVE ^ Project4.java:93: error: <identifier> expected arr[index] = newVal; // LEAVE THIS HERE. DO NOT REMOVE ^ Project4.java:94: error: illegal start of type return true; ^ Project4.java:98: error: class, interface, or enum expected static int bSearch(int[] a, int count, int key) ^ Project4.java:101: error: class, interface, or...
(20 pts) Inside a method main, we see code like: Airplane.foo3(34.6); From this, reconstruct the header of method foo3 (which belongs to class Airplane); make appropriate assumptions if necessary. Write the method header as your answer. (20 pts) Inside method main, we see code like: Airplane a = new Airplane(); int n = a.foo4(“Hello”); From this, reconstruct the header of method foo4 (which belongs to class Airplane) Write the method header as your answer. (40 pts) You coded...
For Questions 1-3: consider the following code: public class A { private int number; protected String name; public double price; public A() { System.out.println(“A() called”); } private void foo1() { System.out.println(“A version of foo1() called”); } protected int foo2() { Sysem.out.println(“A version of foo2() called); return number; } public String foo3() { System.out.println(“A version of foo3() called”); Return “Hi”; } }//end class A public class B extends A { private char service; public B() { super(); System.out.println(“B() called”);...
For Questions 1-3: consider the following code: public class A { private int number; protected String name; public double price; public A() { System.out.println(“A() called”); } private void foo1() { System.out.println(“A version of foo1() called”); } protected int foo2() { Sysem.out.println(“A version of foo2() called); return number; } public String foo3() { System.out.println(“A version of foo3() called”); Return “Hi”; } }//end class A public class B extends A { private char service; public B() { super(); System.out.println(“B() called”); } public...
The following program supposes to calculate the area of a rectangle and produce the following output. Area of rectangle = 20 Unfortunately, the program has Compile-time and Run-time errors that prevent the program from running and producing the correct result. Using the table 2.1 below, allocate the error(s) on each program line. 1 class Rectangle{ 2 int length 3 Int width; 4 viod insert(int l, int w){ 5 length == l; 6 width = ww; 7 8 void calculateArea( {...
Given the following code: public static void foo3(String s) { if (s.length() >0) { System.out.print(s.charAt(s.length() -1)); foo3(s.substring(0, s.length() -1)); } } What is the output of: foo3(“”); 2, You coded the following in the file Test.java : System.out.println( foo(5)); //more code here public static int foo(int n) //line 9 { if (n = = 0) return 1; else System.out.println(n* foo(n-1) ); } //line 15 At compile time, you get the following error: Text.java: 15: missing return statement } ...
Prelab Exercises Your task is to write a Java program that will print out the following message (including the row of equal marks): Computer Science, Yes!!!! ========================= An outline of the program is below. Complete it as follows: a. In the documentation at the top, fill in the name of the file the program would be saved in and a brief description of what the program does. b. Add the code for the main method to do the printing. //...
1. (40 pts) Note: All programs MUST run in Ubuntu. Following the example C program in Folio consisting of three files (a.c, a.h, main.c), write a C program that consists of three files mysquare.h, mysquare.c andmyMain.c. Below is the mysquare.h prototype #include <stdlib.h> #include <stdio.h> void generateNums(int *myarr, int len); void squareNums(int *myarr, int len); void printNums(int *myarr, int len); mysquare.h must contain only the function declarations (prototypes) listed above generateNums function should generate len random integers in the range...