Вы находитесь на странице: 1из 7

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.

com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

TITLE: Honeywell Sample Technical Placement Paper Level1 (Bolded option is your answer) 1. Define polymorphism? A Polymorphism means one name, multiple forms. It allows us to have more than one function with the same name in a program. 2. What is a container class? A A container class is a class that is used to hold objects in memory or external storage. 3. What is Associative container? A Associative containers are designed to support direct access to elements using keys. 4. What is a template? A A template can be used to create a family of classes or function. 5. What is message passing? A Message passing involves specifying the name of the object, the name of the function and the information to be sent. 6. Define Constructors?

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

A Constructor is a member function with the same name as its class. 7. A constructor is a member function with the same name as its class. A A conversion constructor declared with the explicit keyword. 8. What is strstream? A stringstream provides an interface to manipulate strings as if they were input/output streams. 9. What do you mean by late binding? A Late binding refers to function calls that are not resolved until run time. 10. What is friend function? A Friend function is an ordinary function or a member of another class. 11. What are the types of constants in c? A Primary constants and Secondary constants 12. What is a pointer? A Pointers are variables which stores the address of another variable.
Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

13. what is an abstract base class? A An abstract class is a class that is designed to be specifically used as a base class. 14. What is a dynamic constructor? A Allocation of memory to objects at the time of their construction is known as dynamic constructor. 15. Can a Structure contain a Pointer to itself? A Yes such structures are called self-referential structures. 16. What is C++ A C++ is an extension of C, C++ is an object-oriented computer language used in the development of enterprise and commercial applications. 17. Define inheritance? A The mechanism of deriving a new class (derived) from an old class (base class) is called inheritance. 18. Define polymorphism? A Polymorphism means one name, multiple forms.

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

19. What is encapsulation? A The wrapping up of data and functions into a single unit (called class) is known as encapsulation. 20. What is the use of enumerated data type? A An enumerated data type is another user defined type which provides a way for attaching names to numbers thereby increasing comprehensibility of the code. 21. Define Constructors? A Constructor is a member function with the same name as its class. 22. What is a class? A A class is a collection of objects. 23. What is a scope resolution operator? A The scope resolution operator permits a program to reference an identifier in the global scope. 24. What is multiple inheritance? A A class can inherit properties from more than one class which is known as multiple inheritance.
Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

25. What is a conversion constructor? A A converting constructor is a single-parameter constructor that is declared without the function specifier explicit. 26. What is Associative container? A Associative containers are designed to support direct access to elements using keys. 27. what is assignment operator in c++? A Default assignment operator handles assigning one object to another of the same class. 28. What is the Java API? A The Java API is a large collection of ready-made software components that provide many useful capabilities. 29. What is the Java Virtual Machine (JVM)? A The Java Virtual Machine is software that can be ported onto various hardware-based platforms. 30. What is an instanceof operator? A Instanceof is an object reference operator and returns true if the object on the left-hand side is an instance of the glass given to the right hand side.
Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

31. What is Byte Code? A All Java programs are compiled into class files that contain bytecodes. 32. What if the main method is declared as private? A will give runtime error Main method not "public". 33. Define Dbms? A Database Management system consists of a collection of interrelated data and set of programs to access that data. 34. Define Normalisation? A A good understanding of the semantic of data helps the designer to built efficient design using the concept of normalization. 35. What is the purpose of Normalisation? A Minimize redundancy in data. 36. What is RAID? A It is a technology that provides increased storage functions and reliability through redundancy.

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

37. What is database replication? A Replication is the process of copying / moving data between databases on the same or different servers. 38. What is Sql server? A SQL server is commonly used as the backend system for websites and corporate CRMs and can support thousands of concurrent users. 39. What is OLTP? A Online Transaction Processing (OLTP) relational databases are optimal for managing changing data. 40. What is an iterator? A Iterators are like pointers. They are used to access the elements of containers thus providing a link between algorithms and containers.

Visit www.latestoffcampus.com for placement papers, interview tips & job updates. Toget freeupdates tomail http://groups.google.com/group/latestoffcampus/subscribeLive updates on Facebook @ www.facebook.com/LatestOffCampus

Вам также может понравиться