MCQOPTIONS
Bookmark
Saved Bookmarks
→
Python
→
Shallow Copy Deep Copy in Python
→
x is now 50..
1.
x is now 50
A.
x is now 2
B.
x is now 100
C.
None of the mentioned
Answer» D.
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
Arrange in the sequence of decisions in manufacturing enterprises : (A) Making of forecasts(B) Determination of key factors(C) Consideration of alternative combination of forecasts(D) Preparation of budgets(E) Combination of factorsChoose the correct answer from the options given below:
In a rising consumer income scenario, the preferred decision choice of business firms for low income elastic products will be ______.
Critical path indicates which one of the following?
char* myfunc(char *ptr){ptr+=3;return(ptr);}void main(){char *x, *y;x = "EXAMVEDA";y = myfunc(x);printf("y=%s", y);}What will be printed when the sample code above is executed?
What will be printed when this program is executed?int f(int x){if(x <= 4)return x;return f(--x);}void main(){printf("%d ", f(7));}
What will be the output of the following program code?main(){static int var = 5;printf("%d ", var--);if(var)main();}
Pick the correct statements.I.The body of a function should have only one return statement.II.The body of a function may have many return statements.III. A function can return only one value to the calling environment.IV. If return statement is omitted, then the function does its job but returns no value to the calling environment.
Determine output:main(){int i = 5;printf("%d%d%d%d%d", i++, i--, ++i, --i, i);}
What is the result of compiling and running this code?main(){char string[] = "Hello World";display(string);}void display(char *string){printf("%s", string);}
What will happen after compiling and running following code?main(){printf("%p", main);}
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply