Computer Programming-2
Quiz
ā¢
Computers
ā¢
University
ā¢
Practice Problem
ā¢
Hard
Zeel Mehta
Used 17+ times
FREE Resource
Enhance your content in a minute
30 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec ⢠1 pt
How many times will the following for loop iterate?
for (int i = 0; i < 5; i++) {
// code here
}
5
4
3
2
2.
MULTIPLE CHOICE QUESTION
30 sec ⢠1 pt
What is the syntax of a simple for loop in C?
for (initialize; condition; increment) { }
for (initialize: condition: increment); { }
for (initialize; condition: decrement); { }
for (initialize: condition: decrement) { }
3.
MULTIPLE CHOICE QUESTION
30 sec ⢠1 pt
What is the correct way to declare a 1-D array named "numbers" of 5 integers in C?
int numbers[ ] = {5};
numbers [5];
numbers = {5};
int numbers [5];
4.
MULTIPLE CHOICE QUESTION
30 sec ⢠1 pt
What is the output of the following code snippet?
char str[5] = "Hello";
printf("%c", str[4]);
\0
e
l
o
5.
MULTIPLE CHOICE QUESTION
30 sec ⢠1 pt
What is not the correct way to initialize an array named "grades" with the values 90, 85, 95, and 80 in C?
int grade[10] ={90, 85, 95, 80};
int grades[4] = {90, 85, 95, 80};
int grades[ ] = {90, 85, 95, 80};
int grades[4] = {90, 85, 95, 80}
6.
MULTIPLE CHOICE QUESTION
30 sec ⢠1 pt
Which of the following functions can be used to find the length of a string in C?
strlenn()
strnlen()
strlen()
strlan()
7.
MULTIPLE CHOICE QUESTION
30 sec ⢠1 pt
What is the output of the following code snippet?
char str1[10] = "Hello";
char str2[20] = {'H', 'e', 'l', 'l', 'o', ' ','\0'};
if (strcmp(str1, str2) == 0) {
printf("Equal");
} else {
printf("Not equal");
}
Runtime Error
Equal
Compile time Error
Not Equal
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?
Similar Resources on Wayground
25 questions
GDSC FET Jain University Study Jam 106
Quiz
ā¢
University
25 questions
Script_programming_test
Quiz
ā¢
University
25 questions
IoT Quiz - 1
Quiz
ā¢
University - Professi...
25 questions
Quiz Teori bahasa Otomata
Quiz
ā¢
University
25 questions
The SemiColons Quiz
Quiz
ā¢
University
25 questions
Information assurance and security
Quiz
ā¢
University
25 questions
STIN (EM24) - Sistemas de Información (T1)
Quiz
ā¢
University - Professi...
25 questions
Cys quiz 1
Quiz
ā¢
University
Popular Resources on Wayground
15 questions
Fractions on a Number Line
Quiz
ā¢
3rd Grade
20 questions
Equivalent Fractions
Quiz
ā¢
3rd Grade
25 questions
Multiplication Facts
Quiz
ā¢
5th Grade
22 questions
fractions
Quiz
ā¢
3rd Grade
20 questions
Main Idea and Details
Quiz
ā¢
5th Grade
20 questions
Context Clues
Quiz
ā¢
6th Grade
15 questions
Equivalent Fractions
Quiz
ā¢
4th Grade
20 questions
Figurative Language Review
Quiz
ā¢
6th Grade
