programming languages Online Quiz - 37
Description: programming languages Online Quiz - 37 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What will be output if you will Execute following c code?
We need to have a structure day of type date which has the following values. date day = {17,2,2011}; Will the following Structured Declaration Correct?
Which of the following will occur when trying to validate the below code Segment?
If char catname[15]; , which of the following is valid?
The other name for external variables in C++ is
Class that reads and writes to an array in memory is
Can a copy constructor accept an object of the same class as parameter, instead of reference of the object?
What is the value of x when the below code segment is executed?
What happens when the following code segment is Validated?
What the following program is executed?
Using pointers to call a function is called as
The member functions of a class can be defined outside the Class using
Which of the following will occur when trying to validate the below code Segment? #define #define // GetSquareOfx function-prototype has the following defn // int GetSquareOfx(int) ; Int main() { int x =5 ; Cout << GetSquareOfx() ; return x ; }
What will be output if you will execute following c code? #include #include void main() { int a[]={0,1,2,3,4,5,6,7,8,9,10}; int i=0,num; num=a[++i+a[++i]]+a[++i]; printf("%d",num); }