Sei sulla pagina 1di 10

CISCO PLACEMENT PAPER AT IITK (Analytical & Technical)

Rated : +2 , -0

CISCO PLACEMENT PAPER AT IITK

CISCO: ANALYTICAL In a puzzle solving problem puzzle A was solved by 67, B by 46 and C by 40 candidates. 28 solved both A and B, 8 solved both B and C, 26 both A and C. 2 solved all three. 1) How many solved A but not B and C? 4 9 12 11

2) How many B but not A and C 8 18 28 39

3) 100 examinees appear for 2 tests. 76 passed in eng and 74 in science. 60 passed both. How many failed in both subjects? 4 6 8 10

4) 450 play tennis, 240 billiard and 180 golf. 120 play both tennis and golf. 150both tennis and billiard. If none of them play both billiards and golf, and/or all the three games, find the number of members in the club. 200 360 480 600

5) A fair attended by 400 people, 140 attended cultural, 370 visited food stalls. How many visited both cultural and food stalls? 110 180 230 460 In an art gallery, 12 paintings A, B, C, D, E, F?L are to be displayed in 12 different slots. The slots are on either side of a long corridor with 6 slots on each side. Slot 1 is opposite slot 7, 2 is opposite to 8 and so on. The arrangement of paintings is such that K is in the same row as D, D is opposite to H which is exactly between E and F. C is opposite to I which is exactly in between B and F. A is in slot 1. A is diagonally opposite to B, which is opposite to J.

6) which is in slot 6? A G J

7) which is in between I and H? A F I L

8) how many arrangements are possible?

9)which is in slot 12? A B L K. Directions for qs. 10-14. 1 if the question can be answered by statement 1 alone. 2 if question by statement by 2 alone. 3 if question can be answered by both statements, but not with the help of either of them independently. 4, if can not be answered at all.

10) R lends some money to P at compound interest(compounded yearly). How much interest does he receive in the third year? 1 Rate of interest = 10% 2 Interest in 4th year - Interest in 3rd year = Rs 1805. 1 2 3 4

11) A begger is counting his collection for the day. He has only 50 paise and Re 1 coins. Does he have more of 50 paise coins? 1 His total collection for the day is Rs 30. 2. The value of all Re 1 coins is less than the value of all 50 paise coins. 1 2 3 4

12) there are 21 children. 9 are boys and 12 are girls. If one of the children is randomly selected, what is the probability that the child is a boy who is not a student? 1 of the boys, 4 are students. 2 of the girls 5 are students. 1 2 3 4

13) Are triangles LMN and XYZ are congruent? 1 LMN and XYZ have equal bases and equal heights. 2 Both triangles are isosceles. 1 2 3 4

14) Does line A pass through origin of the co ordinate plane? 1. A passes through (2,0) 2. a is perpendicular to the Y axis. 1 2 3 4

15) A box contains some red, black and green balls. No. of red balls are 4/5 of black balls. No. of green balls is ? the no of black balls. There are 470 balls. How many are black? 184 200 316 354

Directions for qs. 16-20 In a certain code, the symbol for 0 is * and that for 1 is $. Numbers greater than 1 are to be written only by using the two symbols given above. The value of symbol for 1 doubles everytime it shifts one place to the left (eg. 4 is written as $**; 3 as $$ )

16) 460 $*$$*$*$$ $$$**$$** $*$****** $******$

17) 17 x 2 / 16 x 4 / 5 x 2 + 6 / 10 $** $$ $$* $***

18) value of LCM (12, 14, 18) $******* $*$***** $$$***** $$$$$$**

19) Average of ($**, $*$, $**$) * $ $$* $*$

20) Value of (33 + 43 + 32) / 52 $** $$$ $$$$*** $$$$$*$*$ Directions for qs. 21-25 A big cube is divided into smaller cubes. The middle cubes on all the four edges of the top layer are divided into eight smaller cubes each. The entire is then painted black.

21) How many smaller cubes are painted black on more than 3 faces? 0 4 8 12

22) How many smaller cubes are painted black on only 3 faces? 0 4 8 12

23) How many smaller cubes are painted black on only 2 faces? 4 8 12 16

24) how many smaller cubes are painted on only 1 face? 18 20 22 24

25) how many smaller cubes are not painted black at all? 1 3 6 9.

TECHNICAL 40 qs are there in technical, questions on diodes were there, such as PIV of center tapped. Band gap of Silicon, what type of bonding in semiconductors and related to these. Just be familiar with the BTech Gate Basics.There was a section on eletromagnetics and electrdynamics. 10 very basic questions were there. This is for electrical part.

Latest CISCO Placement Paper (II)


Rated : +0 , -1

Latest CISCO Placement Paper :

Section B

1. Given the following statement enum day = { jan = 1 ,feb=4, april, may} What is the value of may? (a) 4 (b) 5 (c) 6 (d) 11 (e) None of the above

2. Find the output for the following C program main {int x, j, k; j=k=6; x=2; x=j*k; printf("%d", x); ans=36

3. Find the output for the following C program fn f(x) { if(x<=0) return; else f(x-1)+x; }

4. Find the output for the following C program i=20,k=0; for(j=1;j {k+=j<10?4:3; } printf("%d", k); Ans. k=4

5. Find the output for the following C program int i =10 main() {int i =20,n; for(n=0;n<=i;) {int i=10; i++; } printf("%d", i); Ans. i=20

6. Find the output for the following C program int x=5; y= x&y

7.Find the output for the following C program Y=10; if( Y++9 && Y++!=10 && Y++10) {printf("%d", Y); else printf("%d", Y); } Ans. 13

8. Find the output for the following C program

f=(xy)?x:y a) f points to max of x and y b) f points to min of x and y c)error Ans. (a)

9. What is the sizeof(long int) (a) 4 bytes (b) 2 bytes (c) compiler dependent (d) 8 bytes

10. Which of the function operator cannot be over loaded (a) <= (b) ?: (c) == (d) *

11. Find the output for the following C program main() {intx=2,y=6,z=6; x=y==z; printf(%d",x) }

Section C (Programming Skills) Answer the questions based on the following program STRUCT DOUBLELIST { DOUBLE CLINKED INT DET; LIST VOID STRUCT PREVIOUS; (BE GIVEN AND A PROCEDURE TO DELETE) STRUCT NEW; (AN ELEMENT WILL BE GIVEN) } DELETE(STRUCT NODE) {NODE-PREV-NEXT NODE-NEXT; NODE-NEXT-PREV NODE-PREV; IF(NODE==HEAD) NODE

} Q. In what case the prev was (a) All cases (b) It does not work for the last element (c) It does not for the first element (d) None of these

Answer the questions based on the following program VOID FUNCTION(INT KK) {KK+=20; } VOID FUNCTION (INT K) INT MM,N=&M KN = K KN+-=10; }

Q. What is the output of the following program main() { int var=25,varp; varp=&var; varp p = 10; fnc(varp) printf("%d%d,var,varp); } (a) 20,55 (b) 35,35 (c) 25,25 (d)55,55

Latest CISCO Placement Paper (III)


Rated : +1 , -0

Latest CISCO Placement Paper :

Section D 1. a=2, b=3, c=6

Find the value of c/(a+b)-(a+b)/c

2. What does the hexanumber E78 in radix 7. (a) 12455 (b) 14153 (c) 14256 (d) 13541 (e) 131112 Ans. (d)

3. 10 : 4 seconds :: ? : 6 minutes Ans. 900

4. Q is not equal to zero and k = (Q x n - s)/2.What is n? (a) (2 x k + s)/Q (b) (2 x s x k)/Q (c) (2 x k - s)/Q (d) (2 x k + s x Q)/Q (e) (k + s)/Q

5. From the following statements determing the order of ranking M has double the amount as D Y has 3 rupess more than half the amount of D Ans. Data insuffiecient

Questions 6 - 10 are to be answered on the following data A causes B or C, but not both F occurs only if B occurs D occurs if B or C occurs E occurs only if C occurs J occurs only if E or F occurs D causes G,H or both H occurs if E occurs G occurs if F occurs 6. If A occurs which of the following must occurs I. F and G II. E and H III. D

(a) I only (b) II only (c) III only (d) I,II, & III (e) I & II (or) II & III but not both Ans. (e)

7. If B occurs which must occur (a) D (b) D and G (c) G and H (d) F and G (e) J Ans. (a)

8. If J occurs which must have occured (a) E (b) either B or C (c) both E & F (d) B (e) both B & C Ans. (b)

9. Which may occurs as a result of cause not mentioned I. D II. A III. F (a) I only (b) II only (c) I & II (d) II & III (e) I,II & III Ans. (c) 10. E occurs which one cannot occurs (a) A (b) F (c) D

(d) C (e) J Ans. (b)

Potrebbero piacerti anche