FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

C++ Language INTERVIEW QUESTION & ANSWERS

Languages
61. What is meant by two dimensional array?
  A two dimensional array may be visualized as a table consisting of rows and columns. Each cell of the table will denote an array element.
Your Name Your Email-ID
Your Answer
 
62. What is meant by multi dimensional array?
  Multidimensional arrays are arrays with more than one dimension. An array may consist of any number of dimensions, of course, subject to the restrictions put by a compiler implementation within the scope of language specifications.
Your Name Your Email-ID
Your Answer
 
63. What are the types of built in data types?
 
    The built in data types available in C++ are :
  • Integral type
  • Floating type
  • Void
Your Name Your Email-ID
Your Answer
 
64. Define literals?
  Literals are often referred to as constants. A constant is an entity with a fixed value. Literals can be divided into characters, string, integer numbers and floating point numbers.
Your Name Your Email-ID
Your Answer
 
65. What are the types of literals in c++?
 
    C++ there are several types of literals :
  • Integer constants
  • Character constants
  • Floating Point constants
  • String constants
Your Name Your Email-ID
Your Answer