Quiz - 1

Quiz - 1

University

8 Qs

quiz-placeholder

Similar activities

C Programming - Basics 001

C Programming - Basics 001

University

10 Qs

Programming in C Test-1

Programming in C Test-1

University

10 Qs

#include <\c>

#include <\c>

University

13 Qs

Rapid Round 2

Rapid Round 2

University

10 Qs

JAVA array

JAVA array

12th Grade - University

10 Qs

TECH INTELLECT - ROUND 2

TECH INTELLECT - ROUND 2

University

10 Qs

ACTIVIDAD INTEGRADORA

ACTIVIDAD INTEGRADORA

10th Grade - University

10 Qs

DSA quiz 3 set 1

DSA quiz 3 set 1

University

10 Qs

Quiz - 1

Quiz - 1

Assessment

Quiz

Computers

University

Medium

Created by

Sai Kiran

Used 2+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

C language was developed by?

Charless babbage

Guindo Van Rossum

Dennis Ritchie

Tom Cruise

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Java was developed at

Sonic Solutions

Sun Microsystems

Tata Consultancy Services

Centrum Wiskunde & Informatica

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Python is a/an

Object Oriented Language

Interpreter

High-level

All of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#include <stdio.h>

int main() {

int num = 5;

printf("%d", num++ * 2);

return

0;

}

11

10

10.000000

9

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Correct the syntax of for loop if it's wrong

For(I=0;I<6;;I++)

For(I=0:I<6;I++)

for(I=0;i<6;I++)

For(I=0;i<6;I++)

for(I=0;I<6;I++)

6.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What C library should be included for the dynamic memory allocation?

stdio.h

stdlib.h

conio.h

iostream.h

7.

FILL IN THE BLANK QUESTION

1 min • 3 pts

#include <stdio.h>

int main() {

int a = 5;

int b = 10;

int c = a++ + b--;

printf("%d", c);

retu

rn 0;

}

8.

FILL IN THE BLANK QUESTION

1 min • 3 pts

#include <stdio.h>

int main() {

int x = 5;

int y = 3;

int z = x % y;

printf("%d", z);

return 0;

}