C & C++ Course Exam 0 C & C++ Course Exam 1 / 50 1) Identify wrong C Keywords below. નીચેના ખોટા C કીવર્ડ્સ ઓળખો. 2 / 50 2) Types of Integers are.? પૂર્ણાંકોના પ્રકાર છે.? 3 / 50 3) Find a correct C Keyword below. નીચે સાચો C કીવર્ડ શોધો 4 / 50 4) What is the 16-bit compiler allowable range for integer constants? પૂર્ણાંક સ્થિરાંકો માટે 16-બીટ કમ્પાઇલર માન્ય શ્રેણી શું છે? 5 / 50 5) What is the output of C Program.? સી પ્રોગ્રામનું આઉટપુટ શું છે.? int main() { int k, j; for(k=1, j=10; k <= 5; k++) { printf("%d ", (k+j)); } return 0; } 6 / 50 6) High level language is a .? ઉચ્ચ કક્ષાની ભાષા એ છે.? 7 / 50 7) C is _______ type of programming language.? C એ _______ પ્રકારની પ્રોગ્રામિંગ ભાષા છે.? 8 / 50 8) What are C ASCII character ranges.? C ASCII અક્ષર શ્રેણીઓ શું છે.? 9 / 50 9) C language was invented to develop which Operating System.? કઈ ઓપરેટિંગ સિસ્ટમ વિકસાવવા માટે સી ભાષાની શોધ કરવામાં આવી હતી. 10 / 50 10) Far pointer can access _____ દૂર નિર્દેશક _____ ઍક્સેસ કરી શકે છે 11 / 50 11) What are the new features of C11 or ISO IEC 9899 2011 standard.? C11 અથવા ISO IEC 9899 2011 સ્ટાન્ડર્ડની નવી વિશેષતાઓ શું છે.? 12 / 50 12) An array Index starts with.? એરે ઇન્ડેક્સ આનાથી શરૂ થાય છે.? 13 / 50 13) Types of Real numbers in C are.? C માં વાસ્તવિક સંખ્યાઓના પ્રકાર છે.? 14 / 50 14) What is the output of C program with switch statement or block.? સ્વીચ સ્ટેટમેન્ટ અથવા બ્લોક સાથે સી પ્રોગ્રામનું આઉટપુટ શું છે.? int main() { int a; switch(a); { printf("DEER "); } printf("LION"); } 15 / 50 15) A pointer pointing to a memory location of the variable even after deletion of the variavle is known as _____ વેરીએબલ કાઢી નાખ્યા પછી પણ વેરીએબલના મેમરી સ્થાન તરફ નિર્દેશ કરતું પોઈન્ટર _____ તરીકે ઓળખાય છે 16 / 50 16) Which program outputs "Hello World.." .? કયો પ્રોગ્રામ "હેલો વર્લ્ડ.." આઉટપુટ કરે છે.? 17 / 50 17) A C variable name can start with a ____ C ચલ નામ ____ થી શરૂ થઈ શકે છે 18 / 50 18) Which one is not a reserve keyword in C Language? સી ભાષામાં કયો એક અનામત કીવર્ડ નથી 19 / 50 19) C is a which level language.? C એ કયા સ્તરની ભાષા છે.? 20 / 50 20) Who is known as the father of C Language ? સી ભાષાના પિતા તરીકે કોને ઓળખવામાં આવે છે? 21 / 50 21) A function which calls itself is called a ___ function. ફંક્શન જે પોતાને કૉલ કરે છે તેને ___ ફંક્શન કહેવાય છે. 22 / 50 22) Find a Floating Point constant. ફ્લોટિંગ પોઈન્ટ સતત શોધો. 23 / 50 23) An uninitialized pointer in C is called ___ C માં અપ્રારંભિક નિર્દેશકને ___ કહેવાય છે 24 / 50 24) What is the present C Language Standard.? વર્તમાન સી ભાષાનું ધોરણ શું છે.? 25 / 50 25) What are the types of Constants in C Language.? C લેંગ્વેજમાં કોન્સ્ટન્ટના પ્રકારો શું છે.? 26 / 50 26) Name the loop that executes at least once. લૂપને નામ આપો જે ઓછામાં ઓછા એક વખત એક્ઝિક્યુટ કરે છે. 27 / 50 27) C language was invented in the year.? સી ભાષાની શોધ વર્ષમાં થઈ હતી.? 28 / 50 28) c language was invented in which laboratories.? સી ભાષાની શોધ કઈ પ્રયોગશાળાઓમાં થઈ હતી? 29 / 50 29) C Language was developed in the year ____ સી ભાષાનો વિકાસ ____ વર્ષમાં થયો હતો 30 / 50 30) Choose correct C while loop syntax. લૂપ સિન્ટેક્સ વખતે યોગ્ય C પસંદ કરો. 31 / 50 31) C Language is a successor to which language.? સી ભાષા કઈ ભાષાની અનુગામી છે.? 32 / 50 32) What is the output of C Program.? int main() { int a=25; while(a <= 27) { printf("%d ", a); a++; } return 0; } સી પ્રોગ્રામનું આઉટપુટ શું છે.? 33 / 50 33) Low level language is .? નિમ્ન કક્ષાની ભાષા છે.? 34 / 50 34) Identify wrong C Keywords below. નીચેના ખોટા C કીવર્ડ્સ ઓળખો. 35 / 50 35) Find a correct C Keyword. નીચે સાચો C કીવર્ડ શોધો. 36 / 50 36) C language is used in the development of .? C ભાષાનો ઉપયોગ વિકાસમાં થાય છે.? 37 / 50 37) What is a C Storage Class.? સી સ્ટોરેજ ક્લાસ શું છે.? 38 / 50 38) A pointer that is pointing to NOTHING is called ____ એક નિર્દેશક જે કંઈપણ તરફ નિર્દેશ કરે છે તેને ____ કહેવાય છે 39 / 50 39) What is an Array in C language.? સી ભાષામાં એરે શું છે.? 40 / 50 40) What are the Types of Arrays.? એરેના પ્રકારો શું છે.? 41 / 50 41) A C program is a combination of.? A C પ્રોગ્રામનું સંયોજન છે.? 42 / 50 42) Which loop is faster in C Language, for, while or Do While.? સી લેંગ્વેજમાં કયો લૂપ ઝડપી છે, માટે, જ્યારે કે ડુ જ્યારે.? 43 / 50 43) Expand or Abbreviate ASCII with regard to C Language. C ભાષાના સંદર્ભમાં ASCII ને વિસ્તૃત અથવા સંક્ષિપ્ત કરો. 44 / 50 44) What is the output of C Program.? int main() { while(true) { printf("RABBIT"); break; } return 0; } સી પ્રોગ્રામનું આઉટપુટ શું છે.? 45 / 50 45) Size of a Turbo C C++ compiler is.? ટર્બો સી સી++ કમ્પાઇલરનું કદ છે.? 46 / 50 46) Identify wrong C Keywords below. નીચેના ખોટા C કીવર્ડ્સ ઓળખો. 47 / 50 47) What is the way to suddenly come out of or Quit any Loop in C Language.? સી લેંગ્વેજમાં કોઈ પણ લૂપમાંથી અચાનક બહાર આવવાનો અથવા છોડવાનો રસ્તો શું છે.? 48 / 50 48) signed and unsigned representation is available for.? માટે સહી કરેલ અને સહી વગરનું પ્રતિનિધિત્વ ઉપલબ્ધ છે.? 49 / 50 49) Find an integer constant. પૂર્ણાંક સ્થિરાંક શોધો. 50 / 50 50) Choose a right C Statement. યોગ્ય સી સ્ટેટમેન્ટ પસંદ કરો. Your score isThe average score is 0% LinkedIn Facebook VKontakte 0% Restart quiz