TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
3868
To review
4
TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
3868
To review
4
41 questions
Medium
6 votes545 runs0 comment
Which statement concerning constructors is false ?
Samuelat Mar 28, 2022
Hard
5 votes320 runs0 comment
Easy
3 votes413 runs0 comment
Medium
2 votes458 runs1 comment
Easy
2 votes449 runs0 comment
Hard
2 votes422 runs0 comment
Easy
2 votes401 runs0 comment
Write a C++ program that displays a memory address.
Samuelat Mar 28, 2022
Hard
1 vote449 runs1 comment
Easy
1 vote412 runs0 comment
Medium
1 vote408 runs0 comment
Write a function to display objects of type Complex.
Samuelat Mar 28, 2022
Hard
1 vote138 runs0 comment
How to use the logic operators AND / OR / NOT in C++
Samuelat Mar 28, 2022
Easy
1 vote63 runs0 comment
Hard
1 vote61 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 vote39 runs0 comment
Hard
1 vote21 runs0 comment