Flag this Question Question 15 pts (TCO D) A repeating flow of logic with no end is a(n) nonterminated condition. infinite loop. variable. decision symbol. Question 25 pts (TCOs AC) What is a software package that provides an editor compiler and other programming tools? GUI CGI GDE IDE Question 35 pts (TCO D) The following pseudocode is an example of what kind of structure? If firstNumber is bigger than secondNumber then print firstNumber Else print secondNumber Sequence Decision Loop Nested Flag this Question Question 45 pts (TCO G) What are groups of fields that go together for some logical reason? Tables Databases Columns Records Flag this Question Question 520 pts (TCOs A and B) Match each statement with an item below. Flowchart Hardware Machine Language Software Flag this Question Question 610 pts (TCOs A and C) How is a decision represented in a flowchart? HTML EditorKeyboard Shortcuts 12pt Paragraph p Flag this Question Question 720 pts (TCOs B and C) What is involved in putting a program into production? HTML EditorKeyboard Shortcuts 12pt Paragraph p Flag this Question Question 820 pts (TCOs A and B) How can you improve the efficiency of a nested condition? HTML EditorKeyboard Shortcuts 12pt Paragraph p Flag this Question Question 920 pts (TCO D) Rewrite the following as a While loop: do pay bills while more bills remain to be paid Flag this Question Question 1020 pts (TCO B) Discuss why it is important to use meaningful names for identifiers. Question 1120 pts (TCO D) What are the tasks performed by the “For count = 0 to 3” statement? Question 1230 pts (TCOs A and B) Discuss why it is important to maintain good programming habits. Flag this Question Question 1330 pts (TCOs B-D) Create a pseudocode using if instruction containing a compound condition that will satisfy the following: Enrolled students of a particular college are described with some categories. If the categories indicate the student is a senior citizen or the student works for the college display “This student is entitled to get a tuition discount.” If the categories indicate the student is international display “This student has different tuition structure.” In all other cases display “This student is not entitled to get a tuition discount.” Note: The above text is not in a pseudocode format. You need to use the IF ELSE ENDIF clause in a pseudocode format with appropriate relational and logical operators. Question 1430 pts (TCO F) How do you find a particular value in an array? Provide an example. Question 1530 pts (TCO D) Why is it best to use only three programming structures? Question 1630 pts (TCOs C-F) List the names of subroutines of the hierarchy chart and then write complete pseudocode for the following problem. You will not have to create a data dictionary for this exercise. Problem: Students get a discount on the tuition paid. The discount is based on a student’s code and the registered number of course credits. A student with a code “M” for a military job and registered for more than four credits is eligible for 5% discount on the tuition amount. A student with a code “C” for a corporate employee and registered for more than six credits is eligible for 4% discount on the tuition amount. Produce the pseudocode logic for an algorithm that will compute the tuition’ discount for each student. The information is given as follows: – The output will consist of a screen display showing the student’s name code and discount received. – The input will consist of the file with records containing the student’s name code and tuition amount. – The processing will compute the discount received by each student. If the student’s code is other than “M” or “C” there should be no discount on the tuition amount. Note: Your solution should contain a mainline and at least three subroutines. HTML EditorKeyboard Shortcuts 12pt Paragraph p Quiz saved at 4:52pm Submit Quiz