Description: programming languages Online Quiz - 35 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
How many number of structures are there in python ?
Which of the following is an invalid data type in python ?
Is python an object oriented language.?
Is python a loosely typed language.?
What will be the output of following code segment? #include int main() { int num,a=5; num=-a--; printf("%d %d",num,a); }
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 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); }
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? #include<stdio.h> #include<conio.h> void main() { char c=-'a'; printf("%d",c); }
Using pointers to call a function is called as
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;
Is the following statement valid. double price = 7,450.98;
What happens when the following program is validated? void main() { void ptr = (void) malloc(sizeof(void)); ptr++ ; }
Can a copy constructor accept an object of the same class as parameter, instead of reference of the object?
Class that reads and writes to an array in memory is
The other name for external variables in C++ is
The member functions of a class can be defined outside the Class using
A template can be instantiated by
Which of the following exists in C++?
Which of the following are storage qualifiers in C++ ?