-
-
-
-
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
-
-
-
-
-
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
-
-
What is the function of the modulus operator in most languages ?
a) Sets a system environmental value to either base 10, base 8 or base 16 b) Returns the remainder after dividing one number by another c) Returns the first argument raised to the second argument power d) Prints out the actual code written to standard output rather than executing the code
-
-
-
-
Languages Interview Questions
Sub Category
Questions
Answers
Last Updated
Ans