Search Header Logo

C Program 3

Authored by ALAN SANTO

Other

University

C Program 3
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the break statement do in a loop?

The break statement pauses a loop.
The break statement exits a loop.
The break statement skips the current iteration of a loop.
The break statement continues to the next loop iteration.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What will be the output of this code?

0 1 2 3 4

4

0 1 2 3

0 1 2 3 5 6 7 8 9

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Of the following, what is the correct syntax to declare an array of integers called myNumbers with the values 25, 50, 75, and 100?

int myNumbers[25, 50, 75, 100];

int myNumbers = {25, 50, 75, 100};

int myNumbers[] = {25, 50, 75, 100};

int myNumbers[] = 25, 50, 75, 100;

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Change the value of the first element to 33:
int myNumbers[] = {25, 50, 75, 100};

myNumbers[0] = 33;
myNumbers[3] = 33;
myNumbers[0] = 25;
myNumbers[1] = 33;

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The sizeof operator returns the size of a type in bytes.

True

False

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following declaration represent?
int matrix[2][3] = { {1, 4, 2}, {3, 6, 8} };

A 1-dimensional array of 5 elements

A 2-dimensional array with 2 rows and 3 columns

A 3-dimensional array with 2 rows and 3 columns

A 2-dimensional array with 2 rows and 3 columns

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the continue statement do in a loop?

The continue statement restarts the loop from the beginning.

The continue statement pauses a loop.

The continue statement skips the current iteration and continues with the next iteration.

The continue statement exits a loop.

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?