C Programming
Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }}

None of These
GOOD BAD
Compiler Error
GOOD

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

All of these
Makes the debugging task easier.
Helps to avoid repeated programming across programs.
Helps to avoid repeating a set of statements many times.
Enhances the logical clarity of the program.

ANSWER DOWNLOAD EXAMIANS APP