C-BASICS

C-BASICS

University

25 Qs

quiz-placeholder

Similar activities

Programming in C(1)

Programming in C(1)

University

20 Qs

String in C Programming

String in C Programming

University

26 Qs

Python Programming - Test 1

Python Programming - Test 1

University - Professional Development

20 Qs

Technical Quiz WCC

Technical Quiz WCC

University

30 Qs

C - Structures

C - Structures

University

20 Qs

ITSA Selection Round 1

ITSA Selection Round 1

University

27 Qs

Computer Programming-2

Computer Programming-2

University

30 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?