TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
3800
To review
8
TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
3800
To review
8
41 questions
Hard
4 votes251 runs0 comment
Medium
3 votes367 runs1 comment
Medium
2 votes380 runs1 comment
Easy
2 votes351 runs0 comment
Easy
1 vote413 runs0 comment
Easy
1 vote373 runs0 comment
Medium
1 vote348 runs0 comment
Easy
1 vote346 runs0 comment
Easy
1 vote59 runs0 comment
Hard
1 vote43 runs0 comment
What does the following code display ? class A { public: virtual void hello() {cout << "A" << endl;} }; class B : public A { public: void hello() {cout << "B" << endl;} }; void meet_value(A a1, A a2) { a1.hello(); a2.hello(); } void meet_reference(A& a1, A& a2) { a1.hello(); a2.hello(); } int main() { B b; A a; meet_value(a, b); meet_reference(a, b); return 0; } Answer : "AAAB".
Samuelat Mar 28, 2022
Medium
1 vote31 runs0 comment
Hard
0 vote374 runs1 comment
Medium
0 vote370 runs1 comment
Expert
0 vote367 runs0 comment
Which instructions are forbidden in this example ?
Samuelat Mar 28, 2022