Company Exam
Interview Question
Interview Experience
Quants
Reasoning
Verbal
MCQs
Tutorials
DSA
Ques 1 Encapsulation
Which of the following statements is true regarding encapsulation?
Ques 2 Encapsulation
Which of the following code snippets demonstrates encapsulation correctly?
public class Car { public String make; public String model; }
public class Car { private String make; private String model; public void setMake(String make) { this.make = make; } public String getMake() { return make; } public void setModel(String model) { this.model = model; } public String getModel() { return model; } }
public class Car { String make; String model; }
public class Car { private String make; private String model; public Car(String make, String model) { this.make = make; this.model = model; } }