TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
3641
To review
24
TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
3641
To review
24
44 questions
Hard
8 votes588 runs0 comment
Medium
2 votes513 runs0 comment
Medium
1 vote555 runs2 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 vote513 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
Hard
0 vote533 runs2 comments
Easy
0 vote519 runs0 comment
Hard
0 vote488 runs1 comment
Easy
0 vote484 runs0 comment
Medium
0 vote478 runs0 comment
Medium
0 vote323 runs0 comment