
W18: Final Exam (BECC0302)
Quiz by Bryan N. Manalaotao
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
50 questions
Show answers
- Q1What is an algorithm?A formal programming languageA flowchart symbolA graphical representation of operationsA step-by-step procedure20s
- Q2Which of the following accurately describes pseudocode?An informal way of writing programming code in EnglishA flowchart symbolA formal programming languageA graphical representation of operations20s
- Q3What is the purpose of a flowchart?To declare algorithmsTo write formal programming codeTo represent a sequence of operations graphicallyTo initialize variables20s
- Q4What does an oval or rounded rectangle represent in a flowchart?Initialization blockDecision blockConnector blockTerminal block20s
- Q5How are flowlines represented in a flowchart?By rectanglesBy directed linesBy circlesBy diamonds20s
- Q6What is the purpose of a decision block in a flowchart?To indicate the start and end of a module or programTo represent a logical decisionTo initialize variablesTo connect sections of a flowchart20s
- Q7What does a hexagon represent in a flowchart?Decision blockConnector blockTerminal blockInitialization block20s
- Q8Which symbol in a flowchart indicates general input and output operations?OvalRectangleParallelogramDiamond20s
- Q9What does a connector block represent in a flowchart?Input/output operationDecision-making processConnection point between flowchart sectionsInitialization of variables20s
- Q10What is a common property/guideline of a flowchart?Containment of programming languageNeatness and clarity for the userIntersection of flowlinesMultiple start and ending points20s
- Q11Which flowchart symbol has exactly two exits?Decision blockTerminal blockProcess blockInput/output block20s
- Q12What does a parallelogram represent in a flowchart?Decision blockInitialization blockTerminal blockInput/Output block20s
- Q13What should flowcharts avoid to enhance readability?Blocks containing programming languageInclusion of programming languageIntersection of flowlinesNot clear organization20s
- Q14What is a function in C++?A loop structureA data typeA code declarationA group of statements performing a task30s
- Q15Which function is mandatory in every C++ program?main()execute()start()begin()30s