wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Bridge class

Total questions: 60

Worksheet time: 30mins

Name
Class
Date
1.

The symbol for factorial is an exclamation mark

a)

@

b)

!

c)

$

d)

%

2.

The factorial of a number 5!

(a)  

3.

Basic logic gates in digital electronics

a)

2

b)

1

c)

4

d)

3

4.

Rule of AND Gate

a)

Outputs true (1) if at least one of its inputs is true.

b)

inverts the input

c)

Outputs true (1) only if all its inputs are true.

d)

Outputs the opposite value of its single input

5.

Logic for calculating the factorial

a)

while(i<=n)

f=f*i;

i++

b)

while(i=n)

f=f*i;

i++

c)

while(i<n)

f=f*i;

i++

d)

while(i<=!n)

f=f*i;

i++

6.

Logic of Odd and Even Number

a)

if(n%2==0)

b)

if(n/2=0)

c)

if(n%=2)

d)

if(n==0)

7.

Role of OR Gates

a)

Outputs true (1) only if all its inputs are true.

b)

inverts the input

c)

Outputs true (1) only if all its inputs are true.

d)

Outputs the opposite value of its single input

8.

Logic for finding the square root

a)

Use the Math.sqrt() function

b)

Iteratively subtract numbers until reaching 0

c)

Use the Math.pow() function with 0.5 as the exponent

d)

Divide the number by 2 until reaching the square root

9.

How many basic logic gates are there in digital electronics?

a)

2

b)

1

c)

4

d)

3

10.

What is the logic for determining the square root of a number?

a)

Use the Math.sqrt() function

b)

Iteratively subtract numbers until reaching 0

c)

Use the Math.pow() function with 0.5 as the exponent

d)

Divide the number by 2 until reaching the square root

11.

High-level programming languages were introduced in .............

a)

1940

b)

1991

c)

1960

d)

1950

12.

Machine-level language were introduced in the.........

a)

1940

b)

1950

c)

1960

d)

1970

13.

What is the standard form of a quadratic equation?

a)

ax+by+c=0

b)

ax2+bx+c=0

c)

ax3+bx2+c=0

d)

ax2+bx2+c=0

14.

Definition of a palindrome number

a)

A number that reads the same backward as forward

b)

A number that is divisible by 2

c)

A number that is a multiple of 5

d)

A number that is even

15.

How to calculate the area of a circle?

a)

Area = π * r^2

b)

Area = 2 * π * r

c)

Area = 0.5 * π * r^2

d)

Area = 3 * π * r^2

16.

What is the logic behind calculating the area of a triangle?

a)

Area = 0.5 * base * height

b)

Area = base * height

c)

Area = base + height

d)

Area = 2 * base * height

17.

What is the standard form of a linear equation?

a)

ax+by=c

b)

ax^2+by=c

c)

ax^3+by^2=c

d)

ax^2+by^2=c

18.

When was the first computer virus discovered?

a)

1970

b)

1980

c)

1990

d)

2000

19.

What is the logic behind calculating the perimeter of a rectangle?

a)

Perimeter = 2 * (length + width)

b)

Perimeter = length * width

c)

Perimeter = length + width

d)

Perimeter = 2 * length * width

20.

What is the primary function of a compiler?

a)

To execute code line by line

b)

To convert high-level language code into machine code

c)

To interpret code and execute it

d)

To handle input/output operations

21.

Which of the following statements is true about an interpreter?

a)

It translates the entire program into machine code at once.

b)

It translates and executes code line by line.

c)

It requires more memory compared to a compiler.

d)

It produces an intermediate object code.

22.

What is the logic behind calculating the area of a square?

a)

Area = side * side

b)

Area = 2 * side

c)

Area = 0.5 * side * side

d)

Area = 3 * side * side

23.

Definition of a prime number

a)

A number that is divisible by 2

b)

A number that is divisible by 1 and itself only

c)

A number that is a multiple of 5

d)

A number that is even

24.

Which of the following sets correctly lists all positive odd numbers less than 50?

a)

{1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49}

b)

{1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47}

c)

{2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50}

d)

{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,

25.

What is the cardinality of the power set P(S) of the set S={1,2,3} ?

a)

2

b)

4

c)

6

d)

8

26.

Which of the following statements is true?

a)

A set with no elements is called a null set.

b)

A set with exactly one element is called a pair set.

c)

A set with exactly two elements is called a triple set.

d)

None of the above.

27.

The order of the power set P(A)of a set A with n elements is:

a)

2^n

b)

n^2

c)

2^n+1

d)

n!

28.

What is the formula for calculating the area of a rectangle?

a)

Area = length + width

b)

Area = length * width

c)

Area = 2 * (length + width)

d)

Area = length - width

29.

Definition of a composite number

a)

A number that has more than two distinct positive divisors

b)

A number that is only divisible by 1 and itself

c)

A number that is a multiple of 10

d)

A number that is even

30.

What is the logic for determining the maximum value in an array?

a)

Iterate through the array and compare each element

b)

Sort the array and take the last element

c)

Use the Math.max() function

d)

Divide the array into halves and compare

31.

Which of the following sets is well-defined?

a)

The set of all honest members in the family.

b)

The set of all efficient doctors in the hospital.

c)

The set of all prime numbers less than 100.

d)

The set of all hardworking teachers in a school.

32.

Which of the following is an example of an empty set?

a)

The set of even natural numbers divisible by 3.

b)

The set of all prime numbers divisible by 2.

c)

The set of odd natural numbers divisible by 2.

d)

All of the above.

33.

What is the definition of an irrational number?

a)

A number that can be expressed as a fraction of two integers

b)

A number that cannot be expressed as a fraction of two integers

c)

A number that is a whole number

d)

A number that is a perfect square

34.

Which of the following is an example of a finite set?

a)

The set of all even numbers

b)

The set of all natural numbers

c)

The set of all prime numbers less than 50

d)

The set of all integers

35.

What is a palindrome?

a)

A word that has more vowels than consonants

b)

A number that can be divided evenly by 9

c)

A sequence of characters that reads the same forward and backward

d)

A sentence that contains a palindrome

36.

Which of the following is a palindrome?

a)

Level

b)

Apple

c)

Python

d)

Function

37.

Which of these numbers is a palindrome?

a)

12321

b)

12345

c)

54321

d)

67890

38.

What is the output of a NAND Gate?

a)

Outputs true (1) if at least one of its inputs is true.

b)

Outputs false (0) only if all its inputs are true.

c)

Outputs true (1) only if all its inputs are false.

d)

Outputs the opposite value of its single input

39.

Logic for determining if a number is prime

a)

Check if the number is divisible by any number other than 1 and itself

b)

Check if the number is even

c)

Check if the number is greater than 1

d)

Check if the number is a perfect square

40.

What is the longest palindromic word in the English language?

a)

Rotator

b)

Racecar

c)

Deified

d)

Detartrated

41.

Which of the following is NOT a palindrome?

a)

Kayak

b)

Rotor

c)

Civic

d)

Summer

42.

What is the sum of the first 10 terms of the arithmetic series 2, 5, 8, 11, ...?

a)

350

b)

275

c)

223

d)

343

43.

Which of the following is an example of an infinite set?

a)

The set of all odd numbers

b)

The set of all integers

c)

The set of all natural numbers

d)

The set of all prime numbers

44.

Which of the following is an example of a perfect square?

a)

16

b)

20

c)

22

d)

25

45.

Which of the following is an example of an irrational number?

a)

3.14

b)

1/2

c)

√2

d)

7

46.

What does "RAM" stand for?

a)

Random Access Memory

b)

Read Access Memory

c)

Rapid Access Memory

d)

Regular Access Memory

47.

What does "URL" stand for?

a)

Uniform Resource Locator

b)

Universal Resource Locator

c)

Uniform Retrieval Locator

d)

Universal Retrieval Locator

48.

What does "USB" stand for?

a)

Universal Serial Bus

b)

Uniform Serial Bus

c)

Universal Storage Bus

d)

Uniform Storage Bus

49.

How do you determine if a number is even?

a)

Check if the number is divisible by 2

b)

Check if the number is divisible by 3

c)

Check if the number is greater than 0

d)

Check if the number is a prime number

50.

Brain Of Computer ?

a)

CPU

b)

Memory

c)

Keyboard

d)

Mouse

51.

Which of the following is a characteristic of a prime number?

a)

It has exactly two distinct positive divisors

b)

It is divisible by 1 and itself only

c)

It is an even number

d)

It can be expressed as a product of two integers

52.

What is the primary purpose of an operating system?

a)

To manage hardware and software resources

b)

To provide internet connectivity

c)

To run applications

d)

To protect against viruses

53.

What does "HTTP" stand for?

a)

Hypertext Transfer Protocol

b)

Hypertext Transmission Protocol

c)

High Transfer Text Protocol

d)

High Transmission Text Protocol

54.

Which of the following is an example of a prime number?

a)

9

b)

11

c)

15

d)

21

55.

What is the formula for calculating the volume of a cylinder?

a)

V = π * r^2 * h

b)

V = 2 * π * r * h

c)

V = π * r * h^2

d)

V = r^2 * h

56.

What is the primary function of the CPU?

a)

To store data

b)

To perform calculations and process instructions

c)

To manage input and output devices

d)

To provide power to the computer

57.

Which of the following is a characteristic of a rational number?

a)

It can be expressed as a fraction

b)

It is always an integer

c)

It cannot be expressed as a decimal

d)

It is always a whole number

58.

What is the formula for the area of a triangle?

a)

Area = base * height

b)

Area = 0.5 * base * height

c)

Area = base + height

d)

Area = base * height * 2

59.

Which of the following is an example of a proper subset?

a)

The set of all even numbers is a proper subset of the set of all integers.

b)

The set of all prime numbers is a proper subset of the set of all natural numbers.

c)

The set of all natural numbers is a proper subset of the set of all integers.

d)

The set of all squares is a proper subset of the set of all numbers.

60.

What is the main purpose of an interpreter?

a)

To convert high-level language code into machine code

b)

To execute code line by line

c)

To compile code into an executable file

d)

To optimize code for performance