Questions
Questions

CPT111W PRINSIP PENGATURCARAAN (PRINCIPLES OF PROGRAMMING)

Single choice

What will be the output of the following program?#include <iostream> using namespace std; int main() { int arr[] = {5, 10, 15, 20}; for (auto elem : arr) { elem += 5; } for (auto elem : arr) { cout << elem << " "; } return 0; }

View Explanation

View Explanation

Verified Answer
Please login to view
Step-by-Step Analysis
The question presents a C++ program and asks for its output. There are no explicit answer options provided in the option list, but the given answer field mentions 'b. 5 10 15 20'. First, consider what the code does. The array arr is initialized as {5, 10, 15, 20}. The first range-based for loop uses 'for......Login to view full explanation

Log in for full answers

We've collected over 50,000 authentic exam questions and detailed explanations from around the globe. Log in now and get instant access to the answers!

More Practical Tools for Students Powered by AI Study Helper

Join us and instantly unlock extensive past papers & exclusive solutions to get a head start on your studies!