New OOPS Interview Questions :: ALLInterview.com http://www.allinterview.com New OOPS Interview Questions en-us WILL I GET A guaranteed JOB AFTER DOING bsc()IT) and GNIIT from an http://www.allinterview.com/showanswers/77549.html There is no guaranteed job available. Infact GNIIT gives you only job assistance. Only and Only if you perform well you would be placed. It doesnot matter whether it is GNIIT from NIIT or ACCP from Aptech. why we call c++ is object oriented lanaguage http://www.allinterview.com/showanswers/77353.html if a language (supports)follows ObjectOrientedProgramming concepts we can say it is a Object Oriented Programming. Object Oriented Programing Concepts are: 1.class 2.object 3.Data Abstraction 4.Encapsulation 5.Polymorphism 6.Inheritnace what is virtual function in c++ http://www.allinterview.com/showanswers/76477.html virtual funtion in cpp is define as globle acess in the variable. WHAT IS ABSTRUCT DATA TYPE ? PLEASE EXPLAIN IT. http://www.allinterview.com/showanswers/75963.html A unique datatype, that is defined by the progrmer.It may refer to an object class in OOP or to a special data type in traditional,non-OOP languages. ADT is a specification of a set of data and the set of operations that can be performed on WHAT IS THE DIFFERENCE BETWEEN ABSTRUCTION AND ENCAPSULATION? PLEAS http://www.allinterview.com/showanswers/75962.html ABSTRUCTION: Process of providing the neccesary properties & operations of an object is called as abstuction Example take car the car user only know things reqired. he don't no the internal functionality of the car b'coz it How is data security provided in Object Oriented languages? ? http://www.allinterview.com/showanswers/75838.html using class Write a program to demonstrate the use of 'Composition' in C http://www.allinterview.com/showanswers/75726.html wht is major diff b/w c and c++? http://www.allinterview.com/showanswers/74868.html c is procedural oriented language and C++ is a object oriented language. In C++ we can create object and its properties where as in C functions are used. How to deploy web appliction in web logic ? http://www.allinterview.com/showanswers/74778.html How to handle exception in c++, For example in a functions i am assig http://www.allinterview.com/showanswers/74577.html What are the advantanges of modularity http://www.allinterview.com/showanswers/74019.html Modularity means to divide a program into smaller units into modules as we do in c to make functions. It help us to write a large program, easily to handle a complex problem by dividing into modules. it is also helpful to give a good and easy l what is multithreading in c++ , what is difference between multithrea http://www.allinterview.com/showanswers/73988.html Multithreading in c++??? As far as i know, c++ does not provide any language level support for multithreading. If it is to be implemented using c++, then it cannot be done without the support of the underlying operating system which makes thin what is difference b/w object based and object oriented programming http://www.allinterview.com/showanswers/73169.html Object based programming language supports all the features of OOP except Inheritence What is the differances between a abstract calss and interface http://www.allinterview.com/showanswers/72723.html An abstract class holds both method prototpypes and method definitions also...But it is not in the case of interface..It can contain only protypes.. It should be defined only where it is implemented... how can we design a magic square in c++?or suggest me the basic idea http://www.allinterview.com/showanswers/72693.html Detail about the magic square http://en.wikipedia.org/wiki/Magic_square. To design a matrix sqaure, consider a 3X3 matrix. n = 3; * Fill the matrix with 0 or X. Start from the middle of the first row ( i = 0, j = n/2) +--+--+--+ |X_|1_|X