exam questions

Exam CPA-21-02 All Questions

View all questions & answers for the CPA-21-02 exam

Exam CPA-21-02 topic 1 question 1 discussion

Actual exam question from C++ Institute's CPA-21-02
Question #: 1
Topic #: 1
[All CPA-21-02 Questions]

What happens when you attempt to compile and run the following code?

  • A. It prints: 4
  • B. It prints: 1
  • C. It causes a compilation error
  • D. It prints: 0
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
MitMik97
1 month ago
Selected Answer: D
#include <iostream> using namespace std; int fun(int x){ return 4 * x; } int main(){ cout << fun(0) && fun(1); return 0; }
upvoted 1 times
...
Mullets8818
5 months, 1 week ago
Selected Answer: C
The correct answer is C because the opening brace for the body of main was mis-typed as a bracket.
upvoted 2 times
...
Omar_Alesharie
8 months, 2 weeks ago
Selected Answer: D
As NiceKing says foo(0) && foo(1) would evaluate to 0 && 4 with 4 implicitly converted to 1 for a logical && operation. The result of 0 would output as int.
upvoted 1 times
...
Miguel85
1 year, 1 month ago
fun(0) && fun(1) is FALSE. but even if it were TRUE would it still be a syntax error because there is no condition (like an IF ) to check for TRUE or FLASE ?
upvoted 1 times
...
NiceKing
1 year, 3 months ago
Selected Answer: D
foo(0) && foo(1) would evaluate to 0 && 4 with 4 implicitly converted to 1 for a logical && operation. The result of 0 would output as int.
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago