Unit 2 Final Quizz

Unit 2 Final Quizz

University

54 Qs

quiz-placeholder

Similar activities

Kiến thức về xử lý mảng 1 chiều trong C++

Kiến thức về xử lý mảng 1 chiều trong C++

University

50 Qs

Data Structures

Data Structures

University

50 Qs

lập trình C4

lập trình C4

University

51 Qs

TECH SPARDHA FOR 1St YEAR STUDENTS

TECH SPARDHA FOR 1St YEAR STUDENTS

University

50 Qs

C Programming Quiz

C Programming Quiz

University

51 Qs

CC 101 Final Exam

CC 101 Final Exam

University

50 Qs

UTS Struktur Data

UTS Struktur Data

University

53 Qs

Java Programming Quiz 2-6

Java Programming Quiz 2-6

University

50 Qs

Unit 2 Final Quizz

Unit 2 Final Quizz

Assessment

Quiz

Computers

University

Hard

Created by

Shubham Khari

Used 7+ times

FREE Resource

54 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? int arr[] = {1, 2, 3, 4, 5}; printf("%d", arr[2]);

1

2

3

4

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the index of the last element in an array of size 10 in C?

9

10

11

0

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the default value of an array element in C if it is not initialized?

0

Garbage value

-1

Depends on the data type

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? int arr[] = {10, 20, 30, 40, 50}; printf("%d", arr[1] + arr[3]);

30

60

70

90

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare an integer array of size 5 in C?

int arr(5);

int arr[5];

arr int[5];

arr(5) int;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? int arr[5] = {1, 2, 3, 4, 5}; printf("%d", arr[4]);

5

4

3

2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following correctly assigns a value to the second element of the array `arr` in C?

arr(2) = 5;

arr[2] = 5;

arr[1] = 5;

arr = 5;

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?