Time left:

[All Quizzes] → [Programming With Java] → [Object Oriented Concepts]


1. ► Following program have compilation error, can you guess root cause of it?

1
2
3
4
5
6
7
8
9
10
11
abstract class VQCourse {
    public String courseName;
    public String courseID;
} public class VirtuQCourseProvide extends VQCourse {

    public static void main(String[]args) {
        VQCourse course1 = new VQCourse();
         course1.courseID = "0001";
         course1.courseName = "JAVA";
         System.out.println(course1.toString());
}}
A.
B.
C.
D.
E.

2. ► Java is an object oriented programming language which where you declare the class which is type of object you just identified. The objects have states and behaviours which are methods in class.

A.
B.
C.
D.
E.

3. ► Select correct statements about class(es).

A.
B.
C.
D.
E.

4. ► Java provided mechanism where classes can inherit commonly used state and behaviour of other classes.

1
2
3
4
5
package com.vq.inheritance;

public class VQJavaCourse extends VQCourse {
//Some implementation 
}
A.
B.
C.

5. ► Select correct option(s) about class Object.

A.
B.
C.
D.
E.

6. ► Following is syntax to create a object of class Object. Which statements are true when following statement execute at runtime.

Object obj = new Object();
A.
B.
C.
D.
E.

7. ► Code below has class VQClassB which inherits another class VQClassA, study following code carefully and choose correct option about program output.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.vq.classes;

public class VQClassB {
    class VQClassA {
        public VQClassA(int x) {
            this.x = x;
        } protected int x;
    } public VQClassB(int x, int x2, int y) {
        x = x2;
        this.y = y;
    }

    private VQClassB(int x, int y) {
        this.x = x;
        this.y = y;
    }

    private int x;

    private int y;

    public static void main(String[]args) {
        VQClassB vqb = new VQClassB(20, 10);

        VQClassB.VQClassA vqa = new VQClassB(10, 10).new VQClassA(10);

        System.out.println(vqa.x + " " + vqb.x);
    }
}
A.
B.
C.
D.
E.

8. ► Which of following statement(s) can result in new object instance creation if executed successfully.

A.
B.
C.
D.
E.

9. ► You only want to declare the behaviour of a certain type without any implemention , you should declare it as interface. In its most common form, an interface is a group of related methods with empty bodies.

1
2
3
4
5
6
7
8
9
package com.vq.inheritance;

public interface VQCourse {

    public void printCourseDetail();

    public void getCoursePrice();

}
A.
B.
C.

10. ► What would be correct output of following program?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class VQCourse {
    public String courseName;
    public int courseID;
} public class VirtuQCourseProvide {

    public static void main(String[]args) {
        VQCourse course1 = new VQCourse();
         course1.courseID = 0001;
         course1.courseName = "0001";

        VQCourse course2 = new VQCourse();
         course2 = course1;

         System.out.println("course1.courseID = " + course1.courseID +
                            ", course2.courseID = " + course2.courseID);
}}
A.
B.
C.
D.
E.


© 2016 VirtuQ™ Education All right reserved. | Terms of Use | Privacy Policy