
Array and Pointer Quiz

Quiz
•
Information Technology (IT)
•
University
•
Medium
PRIYADHARSHNI S
Used 2+ times
FREE Resource
41 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
You are writing a program to store some scores in an array. You want to print the third score stored. int arr[] = {1, 2, 3, 4}; printf("%d", arr[2]); What is the output?
1
2
3
4
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
You have two arrays representing sensor readings. You want to calculate the sum of the first and last values in one of these arrays. int arr[] = {5, 6, 7}; printf("%d", arr[0] + arr[2]); What is the output?
5
6
7
12
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
You partially initialize an array and want to print the first and last elements of it. int arr[4] = {1}; printf("%d %d", arr[0], arr[3]); What is the output?
1 1
1 0
0 1
0 0
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
In a loop, you print all elements of an integer array initialized with three values. int arr[3] = {10, 20, 30}; for(int i = 0; i < 3; i++) printf("%d ", arr[i]); What does this print?
10 20 30
20 30 10
30 20 10
10 30 20
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
You store characters in a char array intending it to be a string and then print it. char arr[] = {'a', 'b', 'c', '\0'}; printf("%s", arr); What does this output?
abc
a
ab
Error
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
You use pointer arithmetic to access the second element of an integer array. int arr[3] = {1, 2, 3}; printf("%d", *(arr + 1)); What is the output?
1
2
3
Garbage value
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
You are confused about pointer dereferencing and arithmetic. You print *arr + 1 on an integer array. int arr[3] = {1, 2, 3}; printf("%d", *arr + 1); What is the output?
0
1
2
3
Create a free account and access millions of resources
Similar Resources on Wayground
36 questions
Đề Cương HKII Tin 10

Quiz
•
10th Grade - University
40 questions
Ulangan Harian

Quiz
•
11th Grade - University
40 questions
C++ MCQ Question Bank

Quiz
•
University
45 questions
Chapter 1 to Chapter 5 python

Quiz
•
University
40 questions
C Programming - Array MCQs

Quiz
•
University
38 questions
7 кл-06

Quiz
•
7th Grade - University
37 questions
8 класс цикл

Quiz
•
8th Grade - University
41 questions
JABA!

Quiz
•
University
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade