Logo 
Search:

Interview FAQs

Submit Interview FAQ
Home » Interview FAQsRSS Feeds
SQL
Comments: 1

From which two sources can you generate SQL scripts?

You can generate SQL scripts from database tables and the data dictionary.
Posted By:Shruti Sharma      Posted On: Dec 21

C++ Programming
Comments: 1

Identify all the members of the following class xyz:

Identify all the members of the following class xyz:

class xyz
{
int x,y;
public:
xyz();
void calc(int a, int b);
void output_calc(void);
};

Options

a) Data members x and y
b) Data members x and y, Constructor, and member functions c...
Posted By:Brand Fischer      Posted On: Jun 16

C++ Programming
Comments: 1

Define a namespace called ‘samplespace’, which includes a member variable,namely ‘p’

Let us define a namespace called ‘samplespace’, which includes a member variable, namely ‘p’. How will you access this member variable from outside the namespace?

I. using namespace samplespace;
II. using samplespace :: p;
III. samplespace.p;
...
Posted By:Shruti Sharma      Posted On: Dec 15

Visual C++
Comments: 0

How to clrscr() function working in Visual C++

In order to make clrscr() function of Turbo C, to works in Visual C++ add following namespace.

#include


And instead of using clrscr() function make use of system("cls"); method.


int main( void )
{
system("cls");
return 0;
} ...
Posted By:Vivek Patel      Posted On: Oct 16

Visual C++
Comments: 0

How to make cout and cin working in Visual C++

In order to have cout and cin works you need to add following libraries and namespace.

#include
#include
using namespace std;
Posted By:Vivek Patel      Posted On: Oct 16

MS Office
Comments: 1

Why does excel display number signs(###) in a cell?

A #### error value occurs when the cell contains a number, date, or time that is wider than the cell or when the cell contains a date and/or time formula that produces a negative result.
Posted By:Shruti Sharma      Posted On: Jan 20

1  2  3  4  5  6  7  8  9  10