Programming Concepts and Logics | Check Your Level | MCQ April 3, 2025April 17, 2024 by jaminrai Programming Concepts & Logics This MCQ helps to check levels of:your understanding on programming languagesunderadatnd about compiler, interpreter and Assemblerdifferent High level languagesdifferent types of errors in programmingcontrol structureProgram design toolstypes of dataI/O function, operator and many more 1 / 76 How long the following loop runs? for(x=1;x=3;x++) One time Forever Three times Never 2 / 76 Which is the right way to declare constant in C? int const var = 10; All of these int const var=10; const int var = 10; 3 / 76 Which of the following is format specification for printing string in printf() %c %s %d %f 4 / 76 A C string element is always stored in? None of these options Sequential memory location Alternate memory location Random access location 5 / 76 Which loop executes at least once while do while if For 6 / 76 How much memory should require holding long integer data in Computer? 2 4 1 8 7 / 76 Which of the following symbol is not a valid character set? < @ > # 8 / 76 Which of the following character is used to terminate an instruction in C Program? Comma Colon Period Semicolon 9 / 76 Which of the following symbol is not a valid keyword auto break else if short 10 / 76 A string constant in C is terminated by "" 'O' '