-
-
Which is not the characteristic of a view ?
a) Consumes Disk space for data b) Multiple tables c) Multiple rows d) UpdateableAnswered by Ragini Rani on 2005-05-13 08:59:28: a view does not consume disk space for data
-
Which group does Winrunner, Load Runner, SQA Suite fall under ?
a) Databases b) Automated Test Tools c) Operating Systems d) Rapid Application Development Tool
-
-
-
-
What is the output of the program?
main()
{
char a='123'
printf ("%c n",a);
return 0;
}
A. ASCII value of 121
B. 1
C. 3
D. none of these
-
-
-
-
-
Which one of the following statements allocates enough space to hold an array of 10 integers that are initialized to 0 ?
a) int *ptr = (int *) calloc(10,sizeof(int)); b) int *ptr = (int *) alloc( 10*sizeof(int)); c) int *ptr = (int *) malloc( 10*sizeof(int)); d) int *ptr = (int *)calloc(10*sizeof(int)); Answered by Ragini rani on 2005-05-13 09:01:56: a is the correct ans Calloc allocates space and initialized them to 0
-
-
-
-
-
-
-
RDBMS triggers are typically bound to a _____________and one or more _____________
a) Table, SQL statement types b) SQL statement type, user c) Column, rows d) User, tables
-
Which of the following best explains life cycle of Defect ?
a) Defect Found -> Defect Logged -> Defect Debugged -> Defect Closed -> Defect Rechecked b) Defect Found -> Defect Debugged -> Defect Reported -> Defect Rechecked -> Defect Closed c) Defect Debugged -> Defect Found -> Defect Closed -> Defect Reported -> Defect Rechecked d) Defect Found -> Defect Logged -> Defect Debugged -> Defect Rechecked ->...
Languages Interview Questions
Sub Category
Questions
Answers
Last Updated
Ans