int x;
int y;
int z;
x=3;
y=4;
z = ++x * y++;
printf("%d",z);
Quiz on C Operators
Quiz
•
Engineering
•
12th Grade
•
Hard
Seethamani P IT faculty
Used 2+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
int x;
int y;
int z;
x=3;
y=4;
z = ++x * y++;
printf("%d",z);
12
16
20
0
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which operator is used to compare two values for equality?
<>
=
!=
==
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the expression (5 > 3) && (2 < 4)?
undefined
true
false
null
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does the bitwise operator '&' do in C?
The '&' operator shifts bits to the left.
The '&' operator inverts the bits of a number.
The '&' operator performs a bitwise AND operation.
The '&' operator performs a bitwise OR operation.
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you assign a value to a variable in C?
You can assign a value to a variable in C by using the command: set variable_name to value;
You assign a value to a variable in C using the syntax: variable_name = value;.
In C, you declare a variable and assign a value with the syntax: variable_name : value;
You assign a value to a variable in C using the syntax: value = variable_name;
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
#include <stdio.h>
int main()
{
int i = 95;
char c = 97;
printf("%d, %d\n", sizeof(i), sizeof(c));
return 0;
}
4,1
4,2
2,4
2,8
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you determine the size of a data type in C?
Use the 'sizeof' operator.
Use the 'length' function.
Check the data type documentation.
Use the 'size' keyword.
20 questions
Quiz on C Programming
Quiz
•
12th Grade
15 questions
Quiz on Keyword, Constants and Variable
Quiz
•
12th Grade
10 questions
C Programming Control Statements
Quiz
•
12th Grade
15 questions
Quiz on Control Structures
Quiz
•
12th Grade
15 questions
Lesson 6 System Terminology and Concepts
Quiz
•
12th Grade - University
20 questions
PIF Session 5B Assessment
Quiz
•
9th - 12th Grade
15 questions
Processor Flow Quiz
Quiz
•
12th Grade
10 questions
Embedded System Quiz 1
Quiz
•
12th Grade
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
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
20 questions
Taxes
Quiz
•
9th - 12th Grade
17 questions
Parts of Speech
Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression
Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing
Quiz
•
9th - 12th Grade
10 questions
Identifying equations
Quiz
•
KG - University