Podcast
Questions and Answers
What structured programming technique uses graphical representation to show the steps to solve a problem?
What structured programming technique uses graphical representation to show the steps to solve a problem?
Flowchart
In C++, how do you write a single-line comment?
In C++, how do you write a single-line comment?
//Comment
When can a function prototype be omitted in C++?
When can a function prototype be omitted in C++?
When a function is defined before it is first invoked.
Which method is not commonly used to solve problems in computer science?
Which method is not commonly used to solve problems in computer science?
What is the correct syntax to declare and initialize an array called 'students' with specific names in C++?
What is the correct syntax to declare and initialize an array called 'students' with specific names in C++?
How would you declare an integer array 'arr' with 15 elements in C++?
How would you declare an integer array 'arr' with 15 elements in C++?
Explain the concept of 'top-down design' in programming.
Explain the concept of 'top-down design' in programming.
What does the term 'pseudocode' refer to in programming?
What does the term 'pseudocode' refer to in programming?
Flashcards
String
String
A data type in C++ that represents a sequence of characters. It is used to store and manipulate text strings.
Flowchart
Flowchart
A structured programming technique that uses diagrams to visually represent the steps involved in solving a programming problem. It helps visualize the flow of logic and control.
Multiline Comment
Multiline Comment
A comment in C++ that extends over multiple lines. It starts with /* and ends with */.
Function Prototype
Function Prototype
Signup and view all the flashcards
Top-down Design
Top-down Design
Signup and view all the flashcards
Array
Array
Signup and view all the flashcards
Single-line Comment
Single-line Comment
Signup and view all the flashcards
Difference Reduction
Difference Reduction
Signup and view all the flashcards
Study Notes
Exam Instructions
- The exam is 2 hours long
- The paper has 6 pages and 2 sections
- Section A is multiple-choice
- Section B is programming questions
- Answer all questions
- Total marks: 60
Section A - Multiple Choice Questions (15 marks)
- Question 1: Structured programming technique graphically representing program steps is a flowchart.
- Question 2: Correct C++ single-line comment syntax is
//Comment
. - Question 3: A function prototype can be omitted when the function is defined before it's called.
- Question 4: Difference reduction is not a common problem-solving method in computer science.
- Question 5: Correct declaration of a string array "students" initialized with values is
string students[4] = {"Richard", "Elizabeth", "Jordan", "Jose"};
- Question 6: The correct code to iterate through an integer array
arr
with 15 elements and display each element isint arr[15]; for (int i = 0; i < 15; i++) { cout << arr[i] << " "; }
Section B - Programming Questions (45 marks)
- Question 1:
- Member functions for reading and writing data to/from a file at a specific position
- Short example code snippets for each are needed
- Question 1 (continued): Data from a file named
students.txt
(first name, last name, and grade) is used to calculate the average grade and find the student with the highest grade. - Question 2:
- Three unique features of a constructor function
- Explanation of private, public, and protected access modifiers.
- Function declarations for an overloaded function
getSum()
that takes 2,3 or 4 integers as parameters. (Don't write the entire program, only declarations).
- Question 3:
- C++ code to create a
Person
struct, assign values to its members (citizenship and age), and display them. - Class declaration and definition code for an
Aeroplane
class (based on the UML diagram). - Instantiate two objects: one with the default constructor and the other with the parameterized constructor.
- Display the
Aeroplane
details (usingdisplayAeroplane
function)
- C++ code to create a
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.