0% found this document useful (0 votes)
37 views46 pages

Core Java Interview Prep Guide

The document discusses core Java interview questions and answers. It covers topics like Java object class, main method, inheritance, constructors, garbage collection, and type checking. The document provides code examples for concepts like inheritance, constructor chaining, and type checking using instanceof. It is meant to help prepare for Java job interviews by providing common questions asked and sample code to explain the concepts.

Uploaded by

monaminakshi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views46 pages

Core Java Interview Prep Guide

The document discusses core Java interview questions and answers. It covers topics like Java object class, main method, inheritance, constructors, garbage collection, and type checking. The document provides code examples for concepts like inheritance, constructor chaining, and type checking using instanceof. It is meant to help prepare for Java job interviews by providing common questions asked and sample code to explain the concepts.

Uploaded by

monaminakshi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

ay - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

1 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

2 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

3 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

java.lang.Object

4 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

public static void main(String args[])

public static void


main(String args[])

5 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

java.lang.Object Object
java.lang

java.lang

6 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

import java.lang.Math;

//inside class
double test = Math.PI * 5;

import static java.lang.Math.PI;

//no need to refer class now


double test = PI * 5;

7 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

8 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

9 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

10 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

11 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

package com.journaldev.access;

public class SuperClass {

public SuperClass(){
}

public SuperClass(int i){}

public void test(){


System.out.println("super class test method");
}
}

package com.journaldev.access;

public class ChildClass extends SuperClass {

public ChildClass(String str){


//access super class constructor with super keyword
super();

//access child class method


test();

//use super to access super class method


super.test();
}

@Override
public void test(){
System.out.println("child class test method");
}
}

12 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

//constructor
public Point(int x, int y) {
this.x = x;
this.y = y;
}

public Rectangle() {
this(0, 0, 0, 0);
}
public Rectangle(int width, int height) {
this(0, 0, width, height);
}
public Rectangle(int x, int y, int width, int height) {
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}

13 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

Runtime.getRuntime().gc()
System.gc()

public static void main(String args[]){


Object str = new String("abc");

14 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!
println("String value:"+str);

if(str instanceof Integer){


System.out.println("Integer value:"+str);
}
}

javac

15 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!
util;

public class Test {

public static String toString(){


System.out.println("Test toString called");
return "";
}

public static void main(String args[]){


System.out.println(toString());
}
}

Object
toString()

Object

package com.journaldev.util;

public class Test {

public static String foo(){


System.out.println("Test foo called");
return "";
}

public static void main(String args[]){


Test obj = null;
System.out.println(obj.foo());
}
}

NullPointerException

16 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!
obj.foo() Test.foo()
NullPointerException

17 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

18 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

19 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

20 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

21 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

22 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

23 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

24 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

25 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

26 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

27 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

28 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

29 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

30 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

31 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

32 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

33 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

34 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

35 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

36 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

37 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

38 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

39 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

40 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

41 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

42 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

43 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

44 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

45 of 46 3/14/2018, 2:37 PM
Core Java Interview Questions and Answers - JournalDev https://www.journaldev.com/2366/core-java-interview-questions-and-an...

{St Patrick's Day - 6 Hours Flash Sale} - All Udemy Courses at $10.99 Only Check It Now!

46 of 46 3/14/2018, 2:37 PM

You might also like