Java Core Concepts Questions
Java Core Concepts Questions
Explanation:
Example:
class Car {
String color;
int speed;
void drive() {
System.out.println("Car is driving");
Questions:
1. Create a class named Student with fields name, age and rollNumber.
10. Create a class Book with static variable for total books.
2. Methods
Explanation:
4. Method Overloading
7. Method Overriding
12. Interfaces
18. Threads