You are on page 1of 4

Answer the following questions based on the data given below:

The table below shows the tax incidents and TDS calculations. Mrs Vinay Shrivastava works for AMS Inc. and is paid Rs 2,40,000 p.a out
of which she saves Rs 60,000 in tax-saving instruments u/s 88.

Q10. What will be the TDS amount per month for a person earning Rs 170000 as take-home salary and Rs
30000 as allowance for car and house rent?

25000

2833.33

34000

Cannot say

Section 4 - MCQ

Section Summary
● No. of Questions: 10
● Duration: 10 min

Additional Instructions:
None

Q1. Determine the charge stored on either plate of capacitor (6 x 10 power -6 Farad) when connected across a 16 volt battery

48 x 10 power -6 C

96 x 10 power -6

108 x 10 power -6
data insufficient

Q2. Find the number of electrons transferred between two points kept at a potential difference of 15 V. If 60 J of work is done.

1.25 x 10 power 19

2.5 x 10 power 19

2.5 x 10 power 16

1.25 x 10 power 9

Q3. A wrecking ball of mass 850 kg hangs from a crane by a cable of length 15 m. If this wrecking ball is released from an angle of 35
degrees, what will be its kinetic energy when it swings through the lowest point of the arc?

11 kilojoules

22.6 kilojoules

15.8 kilojoules

data insufficient

Q4. A 40 Kg boy running at a velocity of 3 m/s to the right, jumps onto a trolley at rest of mass 80 Kg. What is the speed of the trolley
and the boy after the boy has jumped in?

2 m/s

3 m/s

1 m/s

0.5 m/s

Q5. A wheel accelerates uniformly from rest to 2000 r.p.m. in 20 seconds. What is its angular acceleration?

8.475 rad/s2

10.475 rad/s2

12.475 rad/s2

14.475 rad/s2
Q6. A horizontal bar 1.5 metres long and of small cross-section rotates about vertical axis through one end. It accelerates uniformly
from 1200 r.p.m. to 1500 r.p.m. in an interval of 5 seconds. What is the linear velocity at the end of the interval ?

235.5 m/s

245.5 m/s

260 m/s

205.5 m/s

Q7. From a 60 m high platform a 0.5 kg stone is thrown straight down towards the ground with an initial velocity of 5 m/s. What is its
speed 20 m above the ground?

16.67 m/s

25.44 m/s

28.44 m/s

data insufficient

Q8. When two resistances connected in series and parallel their equivalent resistances are 45 Ω and 10 Ω respectively. Find the
individual resistances.

22 and 23 ohms

10 and 35 ohms

15 and 30 ohms

20 and 25 ohms

Q9. Resistance of a wire of radius 0.01 cm is 15 ohms. If the resistivity of the wire is 60 x 10 power (-8) Ohm meter, find the length of
the wire.

86.4 cm

94.2 cm

101.6 cm

62.8 cm

Q10. The current passing through a resistor in a circuit is 0.02 A when the voltage across the same resistor is 10 V. What current
passes through this resistor when the voltage across it is 7.5 V?
0.025A

0.035A

0.015A

1.5A

Section 5 - Programming MCQ

Section Summary
● No. of Questions: 15
● Duration: 20 min

Additional Instructions:
None

Q1. What is the output of the following C program?


1 #include <stdio.h>
2 #include <stdlib.h>
3
4 int main()
5 {
6 int a, b=0;
7 static int c [10]={3, 5, 7, 21};
8 for (a=0; a<10;++a)
9 if ((c[a]%2)==0)
10 b+=c[a];
11 printf ("%d", b);
12 return 0;
13 }

21

36

Q2. What is the output of the following program?


1 #include<stdio.h>
2 int main( )
3 {
4 int arr[2][ ] = { 12, 34, 23, 45, 56, 45 };
5 printf("%d", arr); //assume array starts at address 1050
6 }

1050

You might also like