Podcast
Questions and Answers
Which of the following is true about C programming language?
Which of the following is true about C programming language?
- C has 26 keywords
- do while is the same as DO WHILE in C (correct)
- C is not case sensitive
- Keywords can be used as variable or function names
What is a common rule to be followed in all C programs?
What is a common rule to be followed in all C programs?
- Never use a formal syntax
- End every line with a semicolon (correct)
- Use keywords as variable names
- Declare variables within a function
Which of the following statements about C libraries is correct?
Which of the following statements about C libraries is correct?
- Some compilers allow functions to be added to the standard library (correct)
- Separate libraries need to be created in all compilers
- All compilers have the same standard library of functions
- Programmers cannot add their own functions to the library
What action needs to be performed before running a C program?
What action needs to be performed before running a C program?
What is an algorithm in programming?
What is an algorithm in programming?
Why is it important for C programs to follow the correct program structure?
Why is it important for C programs to follow the correct program structure?
What area was C initially used for?
What area was C initially used for?
Which language was the UNIX operating system developed using?
Which language was the UNIX operating system developed using?
What is the ability of C to section off and hide information and instructions necessary to perform a specific task called?
What is the ability of C to section off and hide information and instructions necessary to perform a specific task called?
Which term refers to the compartmentalization of code and data in C?
Which term refers to the compartmentalization of code and data in C?
What type of programs are usually called system programs?
What type of programs are usually called system programs?
What is the purpose of pseudocode in algorithm writing?
What is the purpose of pseudocode in algorithm writing?
In C programming, which construct is used to handle multiple criteria using AND and OR operators?
In C programming, which construct is used to handle multiple criteria using AND and OR operators?
What is the role of variables in C programming?
What is the role of variables in C programming?
Which of the following is a correct example of an identifier name?
Which of the following is a correct example of an identifier name?
What are constants in C programming?
What are constants in C programming?
Which type of construct in C programming allows for branching based on multiple conditions?
Which type of construct in C programming allows for branching based on multiple conditions?
What does the DISPLAY keyword indicate in pseudocode?
What does the DISPLAY keyword indicate in pseudocode?
'Classified as an MVS' is displayed when which criteria are met?
'Classified as an MVS' is displayed when which criteria are met?
'Number is even' is displayed when which condition is true?
'Number is even' is displayed when which condition is true?
'Enter 2 numbers' is a part of which type of construct in C programming?
'Enter 2 numbers' is a part of which type of construct in C programming?