Showing posts with label intergraph. Show all posts
Showing posts with label intergraph. Show all posts

Sunday, June 8, 2008

paper 3

1.there are 6 (p,q,r,s...) people.each one play one game
---tennis,football,hockey,cricket etc
clues given like:shortest one plays hokey
largest person plays ..tennis
P,Q ARE NEITHER LARGEST NOR SHORTEST
R PLAYS FOOTBALL
s is between t &r in height
question: who plays which game
who is taaller than whom


2.a cube has colors blue,red ,yellow each on two opposite sides.cube is
divided into "32 small cubes and 4 large cubes".
question:how many cubes (on 36 cubes) have blue at leat one side.
how many cubes have colors on two sides.
3.anlogy: cell: tissue::atom:?

4.aa person sold two articles for 80 /- each.with 20% profit on one
article and 20% loss on another article, what is the loss / prifit he
will gain on both.

5.five cities. city1 is west to city3.city4 is east to city 5._____etc.
which is farthest on west side.

6.one question on: -=+,*=-,/=* etc
then 10/5*45=?

7.on ,C, paper is easy.mostly on pointers,3 question on structures,5 on
fundamentals,
8.ex:define max 10

main()
{int a,b;
int *p,*q;
a=10;b=19;
p=&(a+b);
q=&max

paper 2

ANALYTICAL :

1. COMPLETE THE DIAGRAM :

2. DRAW VENN DIAGRAM RELATING RHOMBUS, QUADRILATERAL & POLYGON

3. IN A GROUP OF 5 PERSONS A,B,C,D,E ONE OF THE PERSON IS ADVOGATE,
ONE IS DOCTOR, ONE BUSINESSS MAN, ONE SHOP KEEPER AND ONE IS PROFESSOR.
THREE OF THEM A,C,AND PROFESSOR PREFER PLAYING CRICKET TO FOOT BALL AND
TWO
OF THEM B AND BUSINESSMAN PREFER PLAYING FOOT BALL TO CRICKET. THE SHOP
KEEPER AND B AND A ARE FRIENDS BUT TWO OF THESE
PREFER PLAYING FOOT BALL TO CRICKET. THE ADVOGATE IS C'S BROTHER AND
BOTH PLAY SAME GAME . THE DOCTOR AND E PLAY CRICKET.

(a) WHO IS ADVOGATE ?
A, B, C, D
(b) WHO IS SHOP KEEPER ?
A, B, C, D
(C) WHICH OF THE FOLLOWING GROUP INCLUDE PERSONS WHO LIKE PLAYING
CRICKET
BUT DOESN'T INCLUDE PROFESSOR ?
AB,BC,CD, NONE
(d) WHO IS DOCTOR ?
A,B,C,D.

{ SAME MODEL PROBLEM WAS ASKED IN QUES PAPER BUT PROFESSIONS WILL BE
DIFFERENT
SUCH AS HORTICULTURIST ,PHYSICST,JOURNALIST,ADVOCATE AND OTHER ONE.
INSTEAD OF
FOOTBALL AND CRICKET THEY WILL GIVE TEA AND COFFEE }

4. THEY WILL GIVE SOME CONDITION'S AND ASKED TO FIND OUT FARTHEST CITY IN THE
WEST (EASY ONE )?



5. TRAVELLING SALES MAN PROBLEM .
SOME CONDITION WILL BE GIVEN WE HAVE TO FIND OUT THE ORDER OF STATION THE
SALES MAN MOVES
( THREE QUES'S )

6. +,-,*, /, WILL BE GIVEN DIFFERENT MEANING
EXAMPLE : TAKE + AS * AND SO ON .
THEY WILL GIVE EXPRESSION AND WE HAVE TO FIND THE VALUE OF THAT.

7. 3+5-2 =4
WHICH HAS TO BE INTERCHANGE TO GET THE RESULT ?

8. WE DON'T NO EXACT PROBLEM .
EX : 8A3B5C7D.....
A WIIL BE GIVEN + SIGN.
B WILL BE GIVEN - SIGN.
FIND THE VALUE OF EXPRESSION ?

9. FIND THE TOTAL NUMBER OF SQUARES IN 1/4 OF CHESS BOARD ?

10. 6 FACE OF A CUBE ARE PAINTED IN A MANNER ,NO 2 ADJACENT FACE HAVE SAME
COLOUR. THREE COLURS USED ARE RED BLUE GREEN. CUBE IS CUT IN TO 36 SMALLER
CUBE IN SUCH A MANNER THAT 32 CUBES ARE OF ONE SIZE AND REST OF THEM
BIGGER
SIZE AND EACH BIGGER SIDE HAVE NO RED SIDE. FOLLOWING THIS
THREE QUES WILL BE ASKED .
{ IN QUES PAPER COLORS WILL BE DIFFERENT }

11. TWO LADIES ,TWO MEN SIT IN NORTH EAST WEST SOUTH POSITION OF
RECTANCULAR
TABLE. USING CLUES IDENTIFY THEIR POSITION ?

12. CLOCK PROBLEM :
(ONE QUES )

13. ALL MEN ARE VERTEBRATE.
SOME MAMMALS ARE MEN.


CONCLUDE.

C SKILLS :

1. find(int x,int y)
{ return ((xcall find(a,find(a,b)) use to find
(a) maximum of a,b
(b) minimum of a,b
(c) positive difference of a,b
(d) sum of a,b

2. integer needs 2bytes , maximum value of an unsigned integer is
(a) { 2 power 16 } -1
(b) {2 power 15}-1
(c) {2 power16}
(d) {2 power 15}

3.y is of integer type then expression
3*(y-8)/9 and (y-8)/9*3 yields same value if
(a)must yields same value
(b)must yields different value
(c)may or may not yields same value
(d) none of the above

4. 5-2-3*5-2 will give 18 if
(a)- is left associative,* has precedence over -
(b) - is right associative,* has precedence over -
(c) - is right associative,- has precedence over *
(d)- is left associative,- has precedence over *

5. printf("%f", 9/5);
prints
(a) 1.8,
(b) 1.0,
(c) 2.0,
(d) none
.
6. if (a=7)
printf(" a is 7 ");
else
printf("a is not 7");
prints
(a) a is 7,


(b) a is not 7,
(c) nothing,
(d) garbage.

7. if (a>b)
if(b>c)
s1;
else s2;
s2 will be executed if
(a) a<= b,
(b) b>c,
(c) b<=c and a<=b,
(d) a>b and b<=c.

8. main()
{
inc(); ,inc(); , inc();
}
inc()
{ static int x;
printf("%d", ++x);
}
prints
(a) 012,
(b) 123,
(c) 3 consecutive unprectiable numbers
(d) 111.

9.preprocessing is done

(a) either before or at begining of compilation process
(b) after compilation before execution
(c) after loading
(d) none of the above.

10. printf("%d", sizeof(""));
prints
(a) error
(b)0
(c) garbage
(d) 1.

11.main()
{
int a=5,b=2;
printf("%d", a+++b);
}



(a) results in syntax,
(b) print 7,
(c) print 8,
(d) none,

12. process by which one bit patten in to another by bit wise operation is
(a) masking,
(b) pruning,
(c) biting,
(d) chopping,

13.value of automatic variable that is declared but not intialized
will be
(a) 0,
(b) -1,
(c) unpredictable,
(d) none,

14. int v=3, *pv=&v;
printf(" %d %d ", v,*pv);
output will be
(a) error
(b) 3 address of v,
(c) 3 3
(d) none.

15. declaration
enum cities{bethlehem,jericho,nazareth=1,jerusalem}
assian value 1 to
(a) bethlehem
(b) nazareth
(c)bethlehem & nazareth
(d)jericho & nazareth

16. #include
#include
void main()
{
char buffer[82]={80};
char *result;
printf( "input line of text, followed by carriage return :\n");
result = cgets(buffer);
printf("text=%s\n",result);
}
(a) printf("length=%d",buffer[1]);
(b) printf("length=%d",buffer[0])

paper 1

c skills :

1. 5-2-3*5-2 will give 18 if
(a)- is left associative,* has precedence over -
(b) - is right associative,* has precedence over -
(c) - is right associative,- has precedence over *
(d)- is left associative,- has precedence over *

2. printf("%f", 9/5);
prints
(a) 1.8,
(b) 1.0,
(c) 2.0,
(d) none
.
3. if (a=7)
printf(" a is 7 ");
else
printf("a is not 7");
prints
(a) a is 7,

(b) a is not 7,
(c) nothing,
(d) garbage.

4. if (a>b)
if(b>c)
s1;
else s2;
s2 will be executed if
(a) a<= b,
(b) b>c,
(c) b<=c and a<=b,
(d) a>b and b<=c.




5. printf("%d", sizeof(""));
prints
(a) error
(b)0
(c) garbage
(d) 1.



6. value of automatic variable that is declared but not intialized
will be
(a) 0,
(b) -1,
(c) unpredictable,
(d) none,

7. int v=3, *pv=&v;
printf(" %d %d ", v,*pv);
output will be
(a) error
(b) 3 address of v,
(c) 3 3
(d) none.

8. declaration
enum cities{bethlehem,jericho,nazareth=1,jerusalem}
assian value 1 to
(a) bethlehem
(b) nazareth
(c)bethlehem & nazareth
(d)jericho & nazareth



general

1. in a group of 5 persons a,b,c,d,e one of the person is advogate, one is doctor, one businesss man, one shop keeper and one is professor. three of them a,c,and professor prefer playing cricket to foot ball and
two of them b and businessman prefer playing foot ball to cricket. the shop keeper and b and a are friends but two of these prefer playing foot ball to cricket. the advogate is c's brother and both play same game . the doctor and e play cricket.


2.a cube has colors blue,red ,yellow each on two opposite sides.cube is
divided into "32 small cubes and 4 large cubes".
question:how many cubes (on 36 cubes) have blue at leat one side.
how many cubes have colors on two sides.
3.anlogy: cell: tissue::atom:?

4.aa person sold two articles for 80 /- each.with 20% profit on one
article and 20% loss on another article, what is the loss / prifit he
will gain on both.



5. we don't no exact problem .
ex : 8a3b5c7d.....
a wiil be given + sign.
b will be given - sign.
find the value of expression ?



6.five cities. city1 is west to city3.city4 is east to city 5._____etc.
which is farthest on west side.

7.one question on: -=+,*=-,/=* etc
then 10/5*45=?

8. 6 face of a cube are painted in a manner ,no 2 adjacent face have same colour. three colurs used are red blue green. cube is cut in to 36 smaller cube in such a manner that 32 cubes are of one size and rest of them bigger
size and each bigger side have no red side. following this
three ques will be asked . { in ques paper colors will be different }

INTERGRAPH Profile

INTERGRAPH Profile

Intergraph is the world leader in delivering software and services for the management and visual representation of complex information. Our commitment to the customers and markets we serve, history of innovation, and proven solutions span 35 years. Governments and businesses in over 60 countries around the world rely on our technology and services to support better and faster operational decisions.
Our products and services literally map the globe — they are used in communities around the world to make it a safer and more prosperous place. We ensure you have power, utilities, and communications networks. We protect your environment, designing and maintaining the most environmentally conscious and efficient plants, construction projects, ships, and offshore production facilities. We ensure your safety with systems that manage and deploy security, emergency, and military personnel. We protect our homelands and our freedom.
We are Intergraph and we are committed to making a difference in our world.

For more details visit www.intergraph.com


Intergraph is the world leader in delivering software and services for the management and visual representation of complex information. Our commitment to the customers and markets we serve, history of innovation, and proven solutions span 35 years. Governments and businesses in over 60 countries around the world rely on our technology and services to support better and faster operational decisions.
Our products and services literally map the globe — they are used in communities around the world to make it a safer and more prosperous place. We ensure you have power, utilities, and communications networks. We protect your environment, designing and maintaining the most environmentally conscious and efficient plants, construction projects, ships, and offshore production facilities. We ensure your safety with systems that manage and deploy security, emergency, and military personnel. We protect our homelands and our freedom.
We are Intergraph and we are committed to making a difference in our world.

For more details visit www.intergraph.com