C-BASICS

C-BASICS

University

25 Qs

quiz-placeholder

Similar activities

Reckon your Techie Quiz - Day 2 - Python (23.08.22)

Reckon your Techie Quiz - Day 2 - Python (23.08.22)

University

25 Qs

c-basics-1

c-basics-1

10th Grade - Professional Development

24 Qs

PPS PYTHON QUIZ

PPS PYTHON QUIZ

University

20 Qs

Geeks for Geeks PCCOER Info Session CP Quiz

Geeks for Geeks PCCOER Info Session CP Quiz

University

20 Qs

String in C Programming

String in C Programming

University

26 Qs

Code-A-Vita

Code-A-Vita

University

20 Qs

TECHFEST QUALIFYING ROUND

TECHFEST QUALIFYING ROUND

University

20 Qs

AP CSA Unit 2 Review

AP CSA Unit 2 Review

9th Grade - University

22 Qs

C-BASICS

C-BASICS

Assessment

Quiz

Computers

University

Hard

Created by

JENEFA NAVEEN

Used 3+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is a correct syntax to output "Hello World" in C?

printf("Hello World");  

System.out.printline("Hello World");

Console.WriteLine("Hello World");

cout << "Hello World";

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct way to declare a integer variable in C?

int x;

String x;

float x;

boolean x;

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following C code snippet?

int x = 5;
int y = 3;
printf("%d", x + y);

8

53

15

35

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct way to write a for loop in C?

for(int i = 0; i < 10; i++)

for i = 0; i < 10; i++

for i = 0; i < 10

for(int i = 0; i < 10

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to define a function in C?

void functionName() {}

functionName() {}

def functionName() {}

function functionName() {}

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which data type is used to store decimal numbers in C?

int

char

float

double

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to compare two variables in C?

x == y

x = y

x === y

x != y

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?