Regarding the Java language answer the following true or false questions. All ob
ID: 3673759 • Letter: R
Question
Regarding the Java language answer the following true or false questions.
All objects inherit the methods from the Object class.
In a child class, you can directly access private instance variables declared in the parent class.
In a child class, you can directly invoke private methods declared in the parent class.
Which of the following is the syntax to invoke the parent's constructor?
In a child class constructor, if you do not explicitly call a parent constructor, then no parent constructor is ever called.
Explanation / Answer
1) true
2) false
3) false
4) by using super keyword
super(name)
5) false