C Program 3

C Program 3

University

10 Qs

quiz-placeholder

Similar activities

IT203 Java Unit4 Post Test

IT203 Java Unit4 Post Test

University

10 Qs

Modul 3 _ Ricky Setyawan

Modul 3 _ Ricky Setyawan

University

10 Qs

Web Dev

Web Dev

University

15 Qs

Understanding Arrays in Programming

Understanding Arrays in Programming

University

10 Qs

Array

Array

University

10 Qs

P82 Invention and Robotic Club 06/21

P82 Invention and Robotic Club 06/21

KG - Professional Development

15 Qs

Mastering Python Loops

Mastering Python Loops

University

10 Qs

Python Strings and Variables

Python Strings and Variables

5th Grade - University

8 Qs

C Program 3

C Program 3

Assessment

Quiz

Other

University

Hard

Created by

ALAN SANTO

FREE Resource

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.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?