At which city the 10th South Asia Economic Summit (SAES) was held in November 2017?
View Answer Report Error Discuss
Who is the custodian of indian constitution?
The president is the nominal custodian of the Indian constitution but the ideal custodian is the supreme court of India.
The first completely 64-bit compatible version of Android -
Android 5.0 Lollipop is the first completely 64-bit compatible version of Android.
The discovery of neutron became very late because
_________ provide expansion capability for a computer system
What is the output of this C code?
#include <stdio.h> void m() { printf("hi"); } void main() { m(); }
Which of the statements given below are correct?
1. The author of the novel 'Dodgers' is Don Winslow.2. The author of the novel 'Forty Thieves' is Bill Beverly.3. The author of the novel 'The Corrections' is Thomas Perry.
The output of the code below is
#include <stdio.h> int *m() { int *p = 5; return p; } void main() { int *k = m(); printf("%d", k); }