C Quizz Day 1

C Quizz Day 1

Professional Development

25 Qs

quiz-placeholder

Similar activities

Programación básica y C++

Programación básica y C++

Professional Development

20 Qs

PythonDataTypes

PythonDataTypes

Professional Development

20 Qs

ЫКЧАМ БАСКЫЧТАР

ЫКЧАМ БАСКЫЧТАР

Professional Development

20 Qs

Programming In C

Programming In C

5th Grade - Professional Development

25 Qs

SAS DL

SAS DL

Professional Development

22 Qs

Structures in C

Structures in C

Professional Development

30 Qs

Creating and Configuring an App SSA pt1

Creating and Configuring an App SSA pt1

Professional Development

23 Qs

PL SQL

PL SQL

University - Professional Development

20 Qs

C Quizz Day 1

C Quizz Day 1

Assessment

Quiz

Created by

BT official

Education

Professional Development

17 plays

Medium

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

All keywords in C are in ____________

Lowercase

Uppercase

Camelcase

None of these

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

A translator which reads an entire program written in a high level language and converts it into machine language code is:

Assembler

Compiler

Linker

Loader

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which is valid C variable declarations?

int my_num = 100,000;

int my_num = 100000;

int my num = 1000;

int $my_num = 10000;

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which is variable declaration?

int a,b;

c=a+b;

printf("%d%d",a,b)

scanf("%d%d",&a,&b);

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

how to print a and b variable of int and float respectively

scanf("%d%f",&a,&b);

printf("%d%f",a,b);

printf("%f%d",&a,&b);

printf("%f%d",&a,&b);

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is not a valid variable name declaration?

int a3;

int 3a;

int _A3;

int a_3

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What will be the output of the C code?

Hello World! x;

Hello World! followed by a junk value

Compile time error

Hello World!

Explore all questions with a free account

or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?