<< Chapter < Page Chapter >> Page >
Questions, exercises, problems, etc. that support this chapter in the "Programming Fundamentals - A Modular Structured Approach using C++" collection/textbook.

Learning objectives

With 100% accuracy during a: memory building activity, exercises, lab assignment, problems, or timed quiz/exam; the student is expected to:

  1. Define the terms on the definitions as listed in the modules associated with this chapter.
  2. Identify which selection control structures are two-way selection and which are multiway selection.
  3. Understand, define and/or explain case, switch and nested if then else.
  4. Be able to write pseudo code or flowcharting for the case control structure.
  5. Be able to write C++ source code for a case structure using equality and listed values (switch with break to act like a case structure).
  6. Be able to write C++ source code for a case structure using ranges of values or floating-point values (nested if then else to act like a case structure).
  7. When feasible, be able to convert C++ source code from switch acting like a case to nested if then else and vice versa.

Memory building activities

Link to: MBA 12

Exercises

    Evaluate the following logical boolean expressions:

  1. 25>39 || 15>36
  2. 19>26 || 13<17
  3. 14<7&&6<= 6
  4. 4>3&&17>= 7
  5. ! true
  6. ! (13 == 7)
  7. 9 != 7&&! 1
  8. 6<&&8

    Answers:

  1. 0
  2. 1
  3. 0
  4. 1
  5. 0
  6. 1
  7. 0
  8. Error, there needs to be an operand between the operators<and&&.
Got questions? Get instant answers now!

Miscellaneous items

Link to: Manipulation of Data Part 3

Lab assignment

Creating a folder or sub-folder for chapter 12 files

Depending on your compiler/IDE, you should decide where to download and store source code files for processing. Prudence dictates that you create these folders as needed prior to downloading source code files. A suggested sub-folder for the Bloodshed Dev-C++ 5 compiler/IDE might be named:

  • Chapter_12 within the folder named: Cpp_Source_Code_Files

If you have not done so, please create the folder(s) and/or sub-folder(s) as appropriate.

Download the lab file(s)

Download and store the following file(s) to your storage device in the appropriate folder(s). You may need to right click on the link and select "Save Target As" in order to download the file.

Download from Connexions: Lab_12a.cpp

Detailed lab instructions

Read and follow the directions below carefully, and perform the steps in the order listed.

  • Compile and run the Lab_12a.cpp source code file. Understand how it works.
  • Copy the source code file Lab_12a.cpp naming it: Lab_12b.cpp
  • Convert the nested if then else to a switch with breaks.
  • Build (compile and run) your program.
  • After you have successfully written this program, if you are taking this course for college credit, follow the instructions from your professor/instructor for submitting it for grading.

Problems

Problem 12a – instructions

Flowchart the following pseudocode:

Pseudocode

Case of shoe_size 4 to 6 Display "Small."7 to 9 Display "Medium." 10 + Display "Large."Endcase

Got questions? Get instant answers now!

Problem 12b – instructions

The "Flip-Flops" is a unique shoe store that only sells flip-flops. Adult shoe sizes less than 4 are handled in the children’s department, thus we don’t need to concern ourselves with sizes less than 4. Half shoe sizes are to be rounded down, thus the prompt to the user that happens before this case structure will have addressed that issue. The variable shoe_size will be an integer value between 4 and 1,000,000,000 (one billion).

Write C++ source code for the following pseudocode:

Pseudocode

Case of shoe_size 4 to 6 Display "Small."7 to 9 Display "Medium." 10 + Display "Large."Endcase

Got questions? Get instant answers now!

Problem 12c – instructions

Write C++ source code for the following pseudocode:

Pseudocode

If age equal to 24 Display a message "You’re the same age as Melinda."Else If age equal to 27Display a message "You’re the same age as Ruth." ElseIf age equal to 34 Display a message "You’re the same age as Ben."Else Display a message "You’re age is un-important."Endif EndifEndif

Got questions? Get instant answers now!

Questions & Answers

what is phylogeny
Odigie Reply
evolutionary history and relationship of an organism or group of organisms
AI-Robot
ok
Deng
what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Programming fundamentals - a modular structured approach using c++. OpenStax CNX. Jan 10, 2013 Download for free at http://cnx.org/content/col10621/1.22
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Programming fundamentals - a modular structured approach using c++' conversation and receive update notifications?

Ask