CS201 QUIZ NO 1 SOLVED 100% VERIFIED BY ADMIN (MID TERM SYLLABUS)
Q1: __________ Returns true if c is a letter and false otherwise.
Q2: What will be the correct syntax of declaration of the following statement?
"ptr is a pointer to const int"
Q3: What will be the size of following array? int arr[29];
Q4: Individual characters in a string stored in an array can be accessed directly using array __________.
Q5: char **argv can be read as __________.
Q6: By default, the starting index of an array in C++ is __________ .
Q7: The ASCII code of null character is __________.
Q8: To manipulate n-dimensional array __________ nested loops are required.
Q9: dereferencing operator is represented by __________.
Q10: Given a two dimensional array of integers, what would be the correct way of assigning the value 6 to the element at third row and fourth column?