programming languages Online Quiz - 35
Description: programming languages Online Quiz - 35 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which of the following are storage qualifiers in C++ ?
Which of the following exists in C++?
A template can be instantiated by
The member functions of a class can be defined outside the Class using
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 happens when the following program is validated? void main() { void ptr = (void) malloc(sizeof(void)); ptr++ ; }
Is the following statement valid. double price = 7,450.98;
We need to have a structure day of type date which has the following values. Date day = {17,2,2011}; Will the following Structure declaration Correct? struct date { int mm ; int dd ; date year ; }day;
Using pointers to call a function is called as
What will be the output of the following code? #include<stdio.h> #include<conio.h> void main() { char c=-'a'; printf("%d",c); }
The insertion of the code of a called function at the point where The function gets called is achieved by
What will be the output of the following code segment? #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); }
What will be the output of following code segment? #include #include void main() { char c=-'a'; printf("%d",c); }
What will be the output of following code segment? #include int main() { int num,a=5; num=-a--; printf("%d %d",num,a); }
Is python a loosely typed language.?
Is python an object oriented language.?
Which of the following is an invalid data type in python ?
How many number of structures are there in python ?