C Programming An array elements are always stored in ________ memory locations. Sequential Sequential and Random None of these Random Sequential Sequential and Random None of these Random ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment:for(c=1, sum=0; c <= 10; c++){ scanf("%d", &x); if( x < 0 ) continue; sum += x;}What would be the value of sum for the input 1, -1, 2, -2, 3, -3, 4, -4, 5, -5 10 15 -5 1 30 10 15 -5 1 30 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strchr() strrchr() strstr() None of these strnset() strchr() strrchr() strstr() None of these strnset() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the correct output of the following program?#includevoid main(){ char str[] = "C EXAMINATION", rev[17]; int i = strlen(str), j=0; for( ; i>=0; rev[j++] = str[i--]) rev[j] = str[j] ; puts(rev);} Syntax error NOITANIMAXE C C No output at all. NOITANIMAXE Syntax error NOITANIMAXE C C No output at all. NOITANIMAXE ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } Syntax error 713 0713 0289 1289 Syntax error 713 0713 0289 1289 ANSWER DOWNLOAD EXAMIANS APP
C Programming In an expression involving || operator, evaluationI. Will be stopped if one of its components evaluates to falseII. Will be stopped if one of its components evaluates to trueIII. Takes place from right to leftIV. Takes place from left to right I and III II and IV I and II II and III III and IV I and III II and IV I and II II and III III and IV ANSWER DOWNLOAD EXAMIANS APP