Set 4

Multiple Choice Question

QID: 
95

Given:

public class Square {
private double side = 0; // LINE 2
public static void main(String[] args) { // LINE 4
Square sq = new Square(); // LINE 5
side = 10; // LINE 6
}
}

What can be done to make this code compile and run?

Select 1 option

A. replace // LINE 2 with:
          private int side = 0;
B. replace // LINE 2 with:
          public int side = 0;
C. replace // LINE 5 with:
         double sq = new Square();
D. replace // LINE 6 with:
          sq.side = 10;

Multiple Choice Question

QID: 
94

Given:

public class Employee{
String name;
public Employee(){
}
}

Which of the following lines creates an Employee instance?

Select 1 option

A. Employee e;
B. Employee e = new Employee();
C. Employee e = Employee.new();
D. Employee e = Employee();

Multiple Choice Question

QID: 
93

Consider the following program :

class Test{
public static void main(String[] args){
short s = 10; // 1
char c = s; // 2
s = c; // 3
}
}

Identify the correct statements.

Select 2 options

A. Line 3 is not valid.
B. Line 2 is not valid.
C. It will compile because both short and char can hold 10.
D. None of the lines 1, 2 and 3 are valid.

Multiple Choice Question

QID: 
92

Which of the following is not a primitive data value in Java?

Select 2 options

A. "x"
B. 'x'
C. 10.2F
D. Object
E. false

Multiple Choice Question

QID: 
91

Given the following class, which of the given blocks can be inserted at line 1 without errors?

public class InitClass{
private static int loop = 15 ;
static final int INTERVAL = 10 ;
boolean flag ;
//line 1
}

Select 4 options

A. static {System.out.println("Static"); }
B. static { loop = 1; }
C. static { loop += INTERVAL; }
D. static { INTERVAL = 10; }
E. { flag = true; loop = 0; }

Pages

Quick Notes Finder Tags

Activities (1) advanced java (1) agile (3) App Servers (6) archived notes (2) Arrays (1) Best Practices (12) Best Practices (Design) (3) Best Practices (Java) (7) Best Practices (Java EE) (1) BigData (3) Chars & Encodings (6) coding problems (2) Collections (15) contests (3) Core Java (All) (55) course plan (2) Database (12) Design patterns (8) dev tools (3) downloads (2) eclipse (9) Essentials (1) examples (14) Exception (1) Exceptions (4) Exercise (1) exercises (6) Getting Started (18) Groovy (2) hadoop (4) hibernate (77) hibernate interview questions (6) History (1) Hot book (5) http monitoring (2) Inheritance (4) intellij (1) java 8 notes (4) Java 9 (1) Java Concepts (7) Java Core (9) java ee exercises (1) java ee interview questions (2) Java Elements (16) Java Environment (1) Java Features (4) java interview points (4) java interview questions (4) javajee initiatives (1) javajee thoughts (3) Java Performance (6) Java Programmer 1 (11) Java Programmer 2 (7) Javascript Frameworks (1) Java SE Professional (1) JPA 1 - Module (6) JPA 1 - Modules (1) JSP (1) Legacy Java (1) linked list (3) maven (1) Multithreading (16) NFR (1) No SQL (1) Object Oriented (9) OCPJP (4) OCPWCD (1) OOAD (3) Operators (4) Overloading (2) Overriding (2) Overviews (1) policies (1) programming (1) Quartz Scheduler (1) Quizzes (17) RabbitMQ (1) references (2) restful web service (3) Searching (1) security (10) Servlets (8) Servlets and JSP (31) Site Usage Guidelines (1) Sorting (1) source code management (1) spring (4) spring boot (3) Spring Examples (1) Spring Features (1) spring jpa (1) Stack (1) Streams & IO (3) Strings (11) SW Developer Tools (2) testing (1) troubleshooting (1) user interface (1) vxml (8) web services (1) Web Technologies (1) Web Technology Books (1) youtube (1)