Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

ACC Quiz

Total questions: 35

Worksheet time: 21mins

Name
Class
Date
1.
What is the length of bridge which is crossed by a 130 m long train in 30 sec with the speed of 45 km/h.
a)
215 m
b)
225 m
c)
245 m
d)
250 m
2.
The largest 4 digit number exactly divisible by 88 is:
a)
9768
b)
9944
c)
9988
d)
8888
3.
How many times are the hands of a clock at right angle in a day?
a)
44
b)
22
c)
48
d)
24
4.
What is the probility of getting a sum of 9 from two throws of a dice?
a)
P€ = 1/12
b)
P€ = 1/9
c)
P€ = 1/6
d)
P€ = 1/8
5.
A train speeds past a pole in 15 sec and a platform 100 m long in 25 second. Its length is:-
a)
200 m
b)
70 m
c)
150 m
d)
Data inadequate
6.
What is the cube root of 0.000216
a)
8.7
b)
0.08
c)
0.06
d)
0.006
7.
The true discount on Rs. 2562 due 4 months is Rs. 122. The rate percent is :
a)
0.08
b)
0.1
c)
0.17
d)
0.15
8.
The products of two numbers is 120 and the sum of their squares is 289. The sum of the number is:
a)
19
b)
26
c)
23
d)
None of these
9.
Find a possitive number, when it increased by 17 is equal to 60 times the reciprocal of the number.
a)
10
b)
3
c)
17
d)
20
10.
If (log 27 = 1.431), then the value of (log 9) is :
a)
0.954
b)
0.934
c)
0.945
d)
0.958
11.
A person crosses a 600 m long street in 5 minutes, then his speed in km per hour is:
a)
10
b)
3.6
c)
8.4
d)
7.2
12.

While using encapsulation, which among the following is possible?

a)

Code modification can be additional overhead

b)

Data member’s data type can be changed without changing any other code

c)

Data member’s type can’t be changed, or whole code have to be changed

d)

Member functions can be used to change the data type of data members

13.
Which keyword can be used for coming out of recursion?
a)
Break
b)
Exit
c)
Return
d)
Continue
14.

Which of the following operation is illegal in structures?

a)

Typecasting of structure

b)

Pointer to a variable of the same structure

c)

Dynamic allocation of memory for structure

d)

All of the mentioned

15.

Which of the following mode argument is used to truncate?

a)

a

b)

f

c)

w

d)

t

16.

As per C language standard, which of the followings is/are not keyword(s)? Pick the best statement.

Auto

make

main

sizeof

elseif

a)

sizeof elseif make

b)

auto make

c)

None

d)

make main elseif

17.
Which of the following statement is correct for switch controlling expression?
a)
(B) Both int and char can be used in “switch” control expression.
b)
(C) All types i.e. int, char and float can be used in “switch” control expression.
c)
(D) “switch” control expression can be empty as well.
d)
(A) Only int can be used in “switch” control expression.
18.
Which of the following is a Python tuple?
a)
(1, 2, 3)
b)
{1,2,3}
c)
[1,2,3]
d)
[]
19.

What will be the output of the following Python code?


t=(1,2,4,3)

t[1:-1]

a)

(3,4)

b)

(2,4,3)

c)

(2, 4)

d)

None of these

20.
A pointer is a memory address. Suppose the pointer variable has p address 1000, and that p is declared to have type int*, and an int is 4 bytes long. What address is represented by expression p + 2?
a)
1002
b)
1008
c)
1004
d)
1000
21.
Which one of the following is a loop construct that will always be executed atleast once?
a)
do while
b)
for
c)
while
d)
switch
22.
In the statement "cout << "Amity Coding Club" << endl;", endl is a ___.
a)
Extractor
b)
Manipulator
c)
Terminator
d)
Inserter
23.

Which one is the correct description for the variable tree declared below?


int ** tree;

a)

tree is a point to an integer

b)

tree is a pointer to a pointer to an integer

c)

tree is a pointer to a pointer to a pointer to an integer

d)

tree is an array of integer

24.
int num[10] = {3, 3, 3}; <br />Which of the following statement is correct?
a)
num[9] is the last element of the array num
b)
The value of num[3] is 3
c)
The value of num[8] is 3
d)
None of these
25.
Arguments passed to a function in C language are called ___ arguments.
a)
Definite Arguments
b)
Actual Arguments
c)
Formal Arguments
d)
None of these
26.

What is the return value of getc()?

a)

The next character from the stream is not referred by file pointer

b)

<br />EOF for end of file or error

c)

Nothing

d)

None of the mentioned

27.
Explicit type conversion is known as
a)
Casting
b)
Conversion
c)
Separation
d)
None of these
28.
What are the types of data allowed inside a structure.?
a)
int, float, double, long double
b)
char, enum, union
c)
pointers and Same structure type members
d)
All the above
29.
what is the answer of 5%12?
a)
0
b)
5
c)
0.41
d)
2
30.
The data structure required to check whether an expression contains a balanced parenthesis is?
a)
Queue
b)
Array
c)
Stack
d)
Tree
31.
Suppose listExample is [3, 4, 5, 20, 5, 25, 1, 3], what is list1 after listExample.pop(1)?
a)
[3, 4, 5, 20, 5, 25, 1, 3]
b)
[1, 3, 3, 4, 5, 5, 20, 25]
c)
[3, 5, 20, 5, 25, 1, 3]
d)
[1, 3, 4, 5, 20, 5, 25]
32.
>>>"Welcome to Quiz".split()
a)
[“Welcome”, “to”, “Quiz”]
b)
(“Welcome”, “to”, “Quiz”)
c)
{“Welcome”, “to”, “Quiz”}
d)
“Welcome”, “to”, “Quiz”
33.
Who invented Java language?
a)
Dennis Ritchie
b)
James Gosling
c)
java Gosling
d)
C++
34.
Which programming language restricts the use of multiple inheritance?
a)
C++
b)
Python
c)
java
d)
None of these
35.
Which of the following is the use of function in python?
a)
Functions are reusable pieces of programs
b)
Functions don’t provide better modularity for your application
c)
you can’t also create your own functions
d)
All of the mentioned