Glitch1

Glitch1

Assessment

Flashcard

Computers

Professional Development

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

7 questions

Show all answers

1.

FLASHCARD QUESTION

Front

which is a programming language? Options: Telugu, English, Japanese, Python

Back

Python

2.

FLASHCARD QUESTION

Front

How many keywords are there in C?

Back

32

3.

FLASHCARD QUESTION

Front

which of the following is not a keyword in c? Options: for, while, lambda, register

Back

lambda

4.

FLASHCARD QUESTION

Front

What is the correct syntax to declare an integer variable in C? Options: int x;, integer x;, x int;, num x;

Back

int x;

5.

FLASHCARD QUESTION

Front

What is the output of the following code?
#include <stdio.h>
int main() {
int a = 5, b = 2;
printf("%d", a + b);
return 0;
}

Back

7

6.

FLASHCARD QUESTION

Front

Which of the following is used to take input from the user in C? Options: printf(), scanf(), input(), read()

Back

scanf()

7.

FLASHCARD QUESTION

Front

What is the size of an int data type (in most 32-bit systems)?

Back

4