Questions 1 - 8 of 8
Close
Flag this interview question as inappropriate Inappropriate
See Answer
C++ is an object-oriented programming language created by Bjarne Stroustrup. C++ maintains almost all aspects of the C language, while simplifying memory management and adding several features - including a new datatype known as a class (you will learn more about these later) - to allow object-oriented programming. C++ maintains the features of C which allowed for low-level memory access but also gives the programmer new tools to simplify memory management.
Create Date
:
Sunday, April 27, 2008
Tags
:
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer
256. The tinyint datatype has a range of 0-255.
Create Date
:
Wednesday, April 02, 2008
Tags
:
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer

The Validation should be done as per client requirements.
Validate the fields with datatype and Length of the data.

Create Date
:
Monday, March 10, 2008
Tags
:
Asked At
:
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer
Report Service manager in built Reporting Feature Available in 2005.
Major change is the integration of sql server 2005 with the .NET framework.
online indexing only in sql 2005.
CLR Integration with sql server 2005.
xml datatype in sql 2005.
More faster than sql 2000.
Create Date
:
Sunday, March 09, 2008
Asked At
:
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer
By using blob datatype in mysql we can store the binary data in table.
Create Date
:
Sunday, March 09, 2008
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer
To Change Name of Column:
      Sy: Alter Table <Table Name> Change <Old ColumnName> <NewColumnName>;
To Change DataType of Column:
       Sy: Alter Table <Table Name> Modify <ColumnName> <DataType>;
Create Date
:
Sunday, March 09, 2008
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer

This is a very interesting and interviewers favourite for C
both are memory allocation functions

malloc is system call

calloc is c library call

when malloced the memory is uninitialised

when calloced the memory is initialised to all 0's

For malloc we specify the number of bytes
for calloc we specify  the number * datatype.

Create Date
:
Monday, January 14, 2008
Tags
:
None