Which of the following correctly declares an integer array of size 5 in C?

Session 9

Quiz
•
Computers
•
University
•
Medium

Dylan Muraco
Used 1+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
int arr(5);
int arr[5];
array<int> arr[5];
int arr;
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you access the third element of an array named numbers in C?
numbers[3];
numbers[2];
numbers(2);
numbers{3};
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the index of the last element in an array declared as int arr[10];
9
10
0
1
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following correctly initializes an integer array with values 1, 2, 3, 4, 5?
int arr = {1, 2, 3, 4, 5};
int arr[5] = {1, 2, 3, 4, 5};
int arr[] = 1, 2, 3, 4, 5;
int arr[5] = (1, 2, 3, 4, 5);
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What happens if you try to access arr[10] in an array declared as int arr[5];?
The program will always crash.
The program will throw a syntax error.
It causes undefined behavior.
The value stored at arr[10] is always 0.
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
When passing an array to a function, how is it typically passed?
By value
By reference
By copy
It depends on the function
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does sizeof(arr) / sizeof(arr[0]) return when arr is declared as int arr[10];?
0
10
5
4
Create a free account and access millions of resources
Similar Resources on Quizizz
10 questions
C Program Array and strings

Quiz
•
University
10 questions
Quiz 8: Arrays&Vector

Quiz
•
University
10 questions
Java Static

Quiz
•
University
13 questions
Array of Structure

Quiz
•
University
10 questions
Arrays in C (II yr 02.07.2020)

Quiz
•
University
15 questions
DATA STRUCTURES QUIZ

Quiz
•
University
10 questions
Prob. prog 2

Quiz
•
University
6 questions
Part1 Array

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade