wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Fun-a-thon Quiz

Total questions: 40

Worksheet time: 13mins

Name
Class
Date
1.

Which data type is best for storing a number 65000 in a 32-bit system ?

a)

int

b)

long

c)

signed short

d)

unsigned short

2.

Variables that are declared inside a function are :

a)

constant

b)

static

c)

local

d)

global

3.

Neeraj Chopra won which medal in the 2022 World Athletics Championships?

a)

Gold

b)

Silver

c)

Bronze

d)

None of the above

4.

Which artificial intelligence chatbot is Google’s latest challenger to ChatGPT?

a)

Bard

b)

Drift

c)

Hubspot

d)

Google Assistant

5.

Which is the first search engine on internet?

a)

Archie

b)

Google

c)

Yahoo

d)

Bing

6.

Which was the first computer virus ?

a)

Creeper Virus

b)

Rabbit

c)

Elk cloner

d)

SCA virus

7.

Where is the headquarter of Microsoft office located ?

a)

Washington

b)

Texas

c)

California

d)

San Francisco

8.

Who is also known as father of Indian supercomputing ?

a)

Dr Vijay Bhatkar

b)

Dr Jayant Narlikar

c)

Dr Nandan Nilekani

d)

Dr Raghunath Mashelkar

9.

Which is the venue of the Asian Games in 2023?

a)

China

b)

India

c)

Japan

d)

Indonesia

10.

Who has become first Indian player to have played 100 matches each in all three formats of the game?

a)

Virat Kohli

b)

Rohit Sharma

c)

M S Dhoni

d)

Shikar Dhawan

11.

When and where will the next ODI World Cup will be held?

a)

2023,Australia

b)

2024,England

c)

2023,India

d)

2024,Pakistan

12.

Which Indian cricketer scored the fastest 1000 runs?

a)

Sachin Tendulkar

b)

Virat Kohli

c)

Shubhman Gill

d)

Surya Kumar Yadav

13.

From which generation operating systems were developed?

a)

First Generation

b)

Second Generation

c)

Third Generation

d)

Fourth Generation

14.

For which club is Ronaldo currently playing ?

a)

Real Madrid

b)

Juventus

c)

Manchester United

d)

Al Nassr

15.

How many keywords are there in Standard C programming language ?

a)

44

b)

32

c)

28

d)

64

16.

Who is the Governor of Uttarakhand ?

a)

Ganesh Joshi

b)

Gurmeet Singh

c)

Tirath Singh Rawat

d)

Baby Rani Maurya

17.

Which of the following is true about C programming language?

a)

C is a structural language

b)

C is a procedural language

c)

C does not support function within functions

d)

All of these

18.

What is the minimal range of unsigned char data type ?

a)

-127 to 127

b)

0 to 255

c)

-32767 to 32767

d)

0 to 64000

19.

What is the correct HTML for referring to an external style sheet?

a)

<link rel="stylesheet"

href="mystyle.css">

b)

<stylesheet>mystyle.css</stylesheet>

c)

<style src="mystyle.css">

d)

<style>src="mystyle.css" type="css"</style>

20.

In C, the names of variables, functions, labels, and various other user-defined items are :

a)

Keywords

b)

Tokens

c)

Identifiers

d)

Symbols

21.

What is the correct HTML for adding a background color?

a)

<body bg="yellow">

b)

<background>yellow</background>

c)

<body style="background-color:yellow;">

d)

<background color="yellow">

22.

Choose the correct HTML element to define emphasized text ?

a)

<em>

b)

<i>

c)

<br>

d)

<ep>

23.

When will the next General Elections of India be held?

a)

2024

b)

2025

c)

2026

d)

2023

24.

What is the correct HTML for creating a hyperlink?

a)

<href>

b)

<hy>

c)

<a>

d)

<anchor>

25.

Which CSS property controls the text size?

a)

font-size

b)

text-size

c)

content-size

d)

body-size

26.

Which property is used to change the background color?

a)

bgcolor

b)

background-color

c)

color

d)

bcolor

27.

Choose the correct HTML element for the largest heading:

a)

<hr>

b)

<head>

c)

<h1>

d)

<h6>

28.

Which animation company was founded by Steve Jobs?

a)

Disney

b)

Pixar

c)

Dreamworks

d)

Paramount

29.

Which Shah Rukh Khan movie is/will be directed by Rajkumar Hirani?

a)

Pathan

b)

Zero

c)

Dunki

d)

Jawaan

30.

Find the Output:

for(int i=1;i<8;i++)

{if(i==5)

break;

printf("%d",i);

}

a)

1234678

b)

1234

c)

1234567

d)

01234

31.

What is the correct HTML element for inserting a line break?

a)

<hr>

b)

<br>

c)

<break>

d)

<lb>

32.

Find the value of a and b:

int a=0, b=1;

a++;

--b;

a)

a=1,b=0

b)

a=0,b=0

c)

a=1,b=1

d)

a=0,b=1

33.

Which student of Graphic Era University grabbed the AIR 25 in GATE 2023 ?

a)

Himanshu Devrani

b)

Sushant Rawat

c)

Aashish Bahuguna

d)

Sakshi Chauhan

34.

Process in which source code is combined with object code is termed as :

a)

Compiling

b)

Loading

c)

Linking

d)

None of these

35.

Between which two teams will ICC World Test Championship 2023 be played?

a)

India,England

b)

India,Australia

c)

New Zealand,Australia

d)

New Zealand,England

36.

Which district was the Epicentre of the recent eathquakes in Uttarakhand ?

a)

Uttarkashi

b)

Chamoli

c)

Tehri

d)

Pauri Garhwal

37.

Which of the following is an ternary operator in C?

a)

& &

b)

% %

c)

& ^

d)

? :

38.

Where will FIFA 2026 held?

a)

USA

b)

Mexico

c)

Canada

d)

All of these

39.

The format identifier ‘%i’ is also used for :

a)

char

b)

int

c)

float

d)

string

40.

Which datatype is not applicable for mod(%) operation ?

a)

int

b)

float

c)

char

d)

none of these