...
October 18, 2023

Programming

Question 431 Of the following, which is NOT a logical error? A Using the ‘=’, instead of ‘==’ to determine if two values are equal B […]
October 18, 2023

Programming

Question 423 Consider the following pseudo-code fragment, where a and b are integer variables that have been initialized: /* Pre-conditions: (a>1∧ a<b) */ /* Assume that […]
October 18, 2023

Programming

Question 84 Consider the following C program: void abc(char*s) { if(s[0]==’\0’)return; abc(s+1); abc(s+1); printf(“%c”,s[0]); } main() { abc(“123”) } (a) What will be the output of […]
October 18, 2023

Programming

Question 43 Consider the following function: int unknown(int n) { int i, j, k = 0; for (i = n/2; i <= n; i++) for (j […]
error: Alert: Content selection is disabled!!