Showing posts with label INTERGRAPH. Show all posts

INTERGRAPH aptitude

1.main()

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

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

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

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

4. 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.

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

6. DRAW VENN DIAGRAM RELATING RHOMBUS, QUADRILATERAL & POLYGON

7. 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 USINESSMAN 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.

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

9. 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 )

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

11. find(int x,int y)
{ return ((x<y)?0:(x-y)):}
call 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

12. 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} 

13.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

14. 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 *

15. printf("%f", 9/5);
prints 
(a) 1.8,
(b) 1.0,
(c) 2.0,
(d) none

previous INTERGRAPH aptitude questions

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 initialized 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

9. in a group of 5 persons a,b,c,d,e one of the person is advocate, one is doctor, one businesses 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 advocate is c's brother and both play same game . the doctor and e play cricket.

10.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 least one side. how many cubes have colors on two sides.

11. anlogy: cell: tissue::atom:?

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

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

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

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

16.  6 face of a cube are painted in a manner ,no 2 adjacent face have same colour. three colors 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 question will be asked .

17. Max number of nodes in a binary tree with height 3 is 20 : Ans: False

18. 10,20,30,40,50,60 : give the order when put in a queue and in a stack

Ans : Queue : 10,20,30,40,50,60

stack : 60,50,40,30,20,10

19. Debugging is the process of finding

Ans : logical and runtime errors

20. trace the error:

void main(){

int &a;

/* some other stuff here */

}
Ans: syntax error
 

why intergraph?????

as usually you will find this question in INTERGRAPH interview too...................
your answer must contain the following key words
  • good working environment
  • scope for innovation and research
  • leader in engineering and geospatial software management
  • if u r an ECE student add this line..........INTERGRAPH has cutting edge technology in communications sector,working with upgraded tech. is always my passion.....
   some more material about life@INTERGRAPH

Enthusiastic and energetic engineering and technology professionals at Intergraph Consulting enjoy work immensely and help to deliver the desired services to the customers and take Intergraph to new heights of business excellence.

Intergraph Consulting aims at being a learning organization and provides opportunity to its employees to hone their technical and personal development skills. The robust and well-defined Rewards and Recognition program motivates the employees by recognizing exemplary performance by individuals and teams that contribute to the overall objectives of the Company and the stated mission.

A competitive compensation structure, financial and technical assistance for pursuing higher education, crèche facilities, flexi timings, medical insurance for self and family are some of the facilities and benefits that are extended to the employees at Intergraph.

Intergraph Consulting encourages fun at work. By organizing events like Sports competitions, Festival celebrations, Movie Day outs, picnics, parties, employee meetings, participation in various events like Company day etc. it ensures that high levels of motivation and employee enrichment are sustained 


introduction to INTERGRAPH



Intergraph is the leading global provider of engineering and geospatial software that enables customers to visualize complex data.

Businesses and governments in more than 60 countries rely on
Intergraph’s industry-specific software to organize vast amounts of
data into understandable visual representations and actionable
intelligence. Intergraph’s software and services empower customers
to build and operate more efficient plants and ships, create intelligent
maps, and protect critical infrastructure and millions of people around
the world.

Intergraph operates through two divisions: Process, Power & Marine
(PP&M) and Security, Government & Infrastructure (SG&I). Intergraph
PP&M provides enterprise engineering software for the design, construction, and operation of plants, ships, and offshore facilities.
Intergraph SG&I provides geospatially powered solutions to the defense and
intelligence, public safety and security, government, transportation,
photogrammetry, utilities, and communications industries

Intergraph is a recognized leader specializing in
infrastructure management solutions for utilities
and integration of engineering and operations
with asset management, delivering productivity
savings of up to 50 percent.
The Intergraph communications infrastructure management
solution not only provides significant advantages
to operators and engineers, but can also
become an integral part of the enterprise IT
system through the following features:
truly open –
INTERGRAPH solution stores all geometry,
the communications network facility model,
business rules validation, and transaction
management in Oracle, an open, standard
6relational database.
high-performance
 Intergraph takes
advantage of innovative memory management
and a dynamic display cache (DDC) for rapid
data access and display. Intergraph developed
DDC technology to meet public safety 9-1-1
response requirements worldwide. Hundreds
of customers around the globe deploy the
DDC technology where location displays must
be presented to the user within one second
from the time a call is received.
scalable –
 You can scale our solution to support large databases and a large number of
users distributed throughout your organization.
configuation and commercial off-theshelf-based – This parameter-driven (not
API-driven) solution will allow you to take
advantage of product and technology
enhancements more readily.
With more than 400 utility customers worldwide
and more than 40 years of experience in the
utilites industry, Intergraph is the single source for
infrastucture management solutions.
Pinterest Blogger Template