programming languages Online Quiz - 54
Description: programming languages Online Quiz - 54 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
What will happen? int main(int argc, char*argv) { char ptr = NULL; free(ptr); return 0; }
Given: 31. // some code here 32. try { 33. // some code here 34. } catch (SomeException se) { 35. // some code here 36. } finally { 37. // some code here 38. } Under which three circumstances will the code on line 37 be executed? (Choose three.)
The code used for denoting unsigned decimal integer in scanf is :
What gets printed? int i = 3; if (!i) i++; i++; if (i==3) i+=2; i+=2; printf("%d\n", i);
What is the command to display a file in reverse
How can preserve timestamps of a file while copying
How to clear the console?
Which is not a browser?