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 exists in C++?
The other name for external variables in C++ is
Can a copy constructor accept an object of the same class as parameter, instead of reference of the object?
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 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 int main() { int num,a=5; num=-a--; printf("%d %d",num,a); }
Is python a loosely typed language.?
Which of the following is an invalid data type in python ?
How many number of structures are there in python ?