C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 215 216 – 1 None of these 215 – 1 216 215 216 – 1 None of these 215 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} Garbage Value 5 6 None of these 0 Garbage Value 5 6 None of these 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Conditional operator Division operator Unary-operator Comma operator Assignment operator Conditional operator Division operator Unary-operator Comma operator Assignment operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 16 -1 20 19 17 16 -1 20 19 17 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 2 20 50 Theoratically no limit. The only practical limits are memory size and compilers. 8 2 20 50 Theoratically no limit. The only practical limits are memory size and compilers. 8 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} Error c A 65 Error c A 65 ANSWER DOWNLOAD EXAMIANS APP