TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
3812
To review
37
TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
3812
To review
37
44 questions
Hard
12 votes792 runs0 comment
Medium
4 votes629 runs0 comment
Medium
3 votes712 runs2 comments
Medium
3 votes400 runs0 comment
Medium
2 votes695 runs0 comment
Medium
2 votes205 runs0 comment
Easy
1 vote743 runs3 comments
In this code, the class B extends the class A. The class B overrides the method talk() from the class A. The object b is an instance of the class B. The object a is an instance of the class A. The object a is assigned to the object b. The object a calls the method talk(). The method talk() from the class B is called.
Samuelat Mar 28, 2023
Hard
1 vote686 runs1 comment
What does the following code return ? public class A { public void talk() { echo "I am A" } public secretTalk() { this.talk() } } public class B extends A { private void talk() { echo "I am B" } public secretTalk() { this.talk() } } A b = new B() b.talk() b.secretTalk() Answer : "I am A" "I am B"
Samuelat Mar 28, 2022
Easy
1 vote638 runs0 comment
Medium
1 vote193 runs0 comment