TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
77
To review
0
TechnologyProfessionTest
Sort by
Newest
Most popular
Last review
Filter by
Published
77
To review
0
77 questions
Hard
4 votes198 runs0 comment
Hard
3 votes438 runs0 comment
Write a C++ function that returns the sum of two integers.
Abha Agrawaat Dec 3, 2021
Hard
2 votes432 runs0 comment
Medium
2 votes295 runs1 comment
Easy
2 votes290 runs0 comment
Hard
1 vote460 runs0 comment
Which of the following sets of code will cause a compile time error?
Abha Agrawaat Dec 3, 2021
Hard
1 vote439 runs0 comment
C++: what is the output of the following code? `std::cout << &obj << std::endl;`
Abha Agrawaat Dec 3, 2021
Medium
1 vote404 runs0 comment
Write a C++ program that creates an array of 10 Person objects.
Abha Agrawaat Apr 7, 2023
Medium
1 vote306 runs1 comment
Medium
1 vote279 runs0 comment
Hard
1 vote277 runs0 comment
Medium
1 vote52 runs0 comment
Hard
1 vote29 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