PSCS-11-08-2020

 MCQ :


1. 100 years(a)

2. 1:25th times of the princpal (b)

3.2200(b)

4. none of these(d)

5. 912 (b)

6.3600,2000(b)

7. 26500 (d)

8. 1320 (c)

9. data insufficient(d)

10. -4.32

11. rs 140(a).

12. Rs 20(a)

13. 24 (a)

14.1320(d)

15 Rs. 4000, Rs. 2000(a)

16. 14 years 2 months (c

17. Rs. 20000 (b)

18. 4%(a)

19.12114.25(a)

20. 0.007

PSCS 10-08-2020

 1. c) Rs 1 lack

2.D) 4151

3.D 336

4.A) 4Kg

5.A) 3 and 5

6.C) 100

7.A) 243

8.C) 5

9.C)37.5

10.c) 10:9

11. 12 yrs(c)

12.144(a)

13. 3:4 (d)

14. 2:5(b)

15.none of these(d)

16.165 (c)

17.13:7

18. A= 2 kg b= 14 kg

19.1950(d)

20.228(d)


PSCS-08-08-2020

 MCQ:

  

1 uncle(d)

2. wife(b)

3.sister(b)

4.brother(a)

5.uncle(a)

6.cousin(a)

7.sister in law(c)

8.cousin(b)

9.father(d)

10.either son or daugther (c)

11.aunt(d)

12. father in law(d)

13.daughter(c)

14.grand father(c)

15.sister(a)

16.mother(a)

17.sister(c)

18.cousin(a)

19.sister(c)

20.none of these(c)

PSCS-07-08-2020

 MCQ : 


1.Cannot be determined (d)
2.Rs 9.16 per kg (b)

3. 2.5 kg(c)

4.50%(a)

5.1175(c)

6.rs.112.5(b)

7.46(a)

8.1,00,000 (d)

9.-8%(c)

10.32%(c)

11.3000(b)

12.5670(a)

13.23.07%(b)

14.9 1/11%(b)

15.32*100/68(a)

16.66.66%(c)

17.rs 66 (a)

18.20% (a)

19.2700(a)

20.2756.25(a)


PSCS 05-08-2020

1. 1984
2. 0.04819
3. 42.182
4.120
5.1680
6. 17155
7. 0.519
8.2.268
9.0.21
10.7.3659
11. 15.64
12.1329.55
13.-859
14.-82
15.-63.7
16.83.6
17.377.77
18.0.065
19.174.35
20.2349

Program:
y=int(input())
if(y%100)%4==0:
    print("{0}: YES".format(y))
else:
    print("{0}: NO".format(y))


PROGRAM:
p=2000
t=5
r=5
print((p*t*r)/100)

PSCS - 04-08-2020

MCQ:
1. 458(d)
2. 10hrs 2 min(c)
3. 50 degree(d)
4. 89 deg (d)
5. 13 min 48s min lost
6.12 deg
7. 8 AM on sunday(b)
8.150(a)
9.197 1/2∘(a)
10. 5.47 pm(a)
11. 120/11 min past 8 (b)
12. 56(b)
13.2(a)
14. 1 : 40 : 48 (b)
15. 6.40 AM(d)
16. 7.54pm(b)
17. 1.51 pm on thursday (a)
18. 47.5 degree (a)
19. 75(d)
20. monday 6th septmenber(d)

PSCS 03-08-2020

1.G(A)
2.E,H,G (C)
3.F (a)
4.3(C)
5.Both are male(D)
6. K (C)

7.RV (A)
8.P (D)
9.U (D)
10. T (D)
11.QW (c)

12. RV(a)
13.To immedate right of w 
14,Q is to the immediate left of W (c)
15. p(b)

16.second to right
17.two
18.H(a)
19.l(a)
20.M(d)

PROGRAM:
# You are using Python
class complex:
    def init(self,img,rel):
        self.img=img
        self.rel=rel

    def add(self,a):
        i=self.img+a.img
        r=self.rel+a.rel
        print("(%d+%dj)"%(r,i))
r1=int(input())
i1=int(input())

r2=int(input())
i2=int(input())

c1=complex(i1,r1)
c2=complex(i2,r2)
c1+c2

PROGRAM:
// You are using GCC
#include<stdio.h>

int main()
{
    int n,i,j;
    scanf("%d",&n);
    
    for(i=1;i<=n;i++)
    {
        for(j=1;j<=i;j++)
        {
            printf("%d ",j);
        }
        printf("\n");
    }
}