
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question

Transcribed Image Text:**Week 3: PA Calculations & Unique Numbers**
- **Input Series:**
- Please enter an integer value: 100
- Please enter an integer value: 23
- Please enter an integer value: 123
- Please enter an integer value: 123
- Please enter an integer value: 456
- Please enter an integer value: 546
- Please enter an integer value: 456
- Please enter an integer value: 100
- Please enter an integer value: 32
- Please enter an integer value: 23
- **Analysis of Integers:**
- The count of integers entered is: 10
- The sum of integers entered is: 1982
- The average of integers entered is: 198.2
- **Analysis of Unique Integers:**
- The count of unique integers entered is: 6
- The sum of unique integers entered is: 1280
- The average of unique integers entered is: 213.3
Expert Solution

arrow_forward
Step 1: Algorithm
Step 1 : START
Step 2 : implement the function createList to input the numbers
Step 3 : with help of try, except and finally conditions print count, sum, average, unique count, unique sum, unique average
Step 4 : STOP
Step by stepSolved in 4 steps with 2 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- Debug thisarrow_forwardThe ________ function returns no value. a) malloc() b) realloc() c) free() d) calloc()arrow_forwardIn Visual Studio using Console App (.NET Core) (4) In Visual Studio, create and test a console application that does the following: (1) Create a variable of the Integer data type, named marks; (2) Create a variable of the String data type, named grade; (3) Use the built-in function Console.ReadLine() to get the user's input for marks as follows (it is assumed that the user always inputs integers when testing this program): Console.WriteLine("Input the marks:") marks CType(Console.ReadLine(), Integer) (4) Convert marks into grade as follows using an If-Then-Elself statement: marks 90-100 85-89 80-84 77-79 73-76 70-72 67-69 63-66 60-62 50-59 0-49 grade A+ A A- B+ B B- C+ с C- D F (5) Display the value of grade in the console window using the following statement: Console.WriteLine("The grade is "& grade) Hint: The If-Then-Elself statement is a lengthy one and is similar to the following: If ((marks >=90) And (marks = 85) And (marks =0) And (marks<-49) Then grade "F" Elsearrow_forward
- Program Purpose - Professional Athletes often hire other professionals to help take care of matters for them. We will group them in four categories: Lawyers, Personal Assistants, Agents, and Trainers. They all get paid a percentage of the athlete's total yearly salary. Lawyers - 10%, Personal Assistants - 3%, Agents - 7%, and Trainers - 5% . Prompt the user to enter the athlete's salary for the year (ensure that the entered value is positive). The user should then enter the name and category of each of the hired professionals. The athlete should be able to hire as many professionals in each category as he/she wants, even if it is more than he/she can afford. Based on the category, calculate the amount that each professional should be paid. After all data has been entered, print the names of each professional hired, how much each is being paid, the total amount the athlete paid, and how much the athlete has left.arrow_forwardThe C++ keyword used to declare a character is _____. Group of answer choices chars char character string ------------------ Which of the following is an Assignment? a.) int x;b.) x = 5;c.) y = x + 2; Group of answer choices a b c a and b b and c All of the above None of the abovearrow_forward__ComputeSumOfDigits that prompts the user to type an integer and computes the sum of the digits of that integer.arrow_forward
- 22. Convert the following code to a Ternary Operator code. if (resident_age >= 18) System.out.println(“Can vote”)else System.out.println(“Cannot vote”)arrow_forwardQ5/A- create a QBasic program that will determine the price of traveler ticket based on customer s age. The program must able to input the customer's age then set the conditions so the price is determined as follows: age 0-5 age 6-20 price-1 50001D(Iraqi dinar) price 25000LD(Iraqi dinar) price-40 000ID(Iraqi dinar) age >21 B-Indicate what is acceptable and what is not acceptable from the following Q-Basic sentences with a reason (Choose 5 only) 1. KB5 2. Schools 3. AB$3 4. Print 5. LETX YS 6. "$565" Q6/A-By using (Qbasic or MS Excel) write a program to compute X 1+2+3+ +100 X-1x2+2x4+3x6++100x200 B- Answer the following question: (Choose Sonly) 1. Explain how to add a transition effect to the PowerPoint file.? 2. Add worksheet in Ms-Excel? 3. Add the watermark in your name to your Word document? 4. List and explain the most popular computer storage units? 5. What is the difference between the Save and the Save as commands? 6. List methods for inserting New Slide in the Ms. Power point?arrow_forwardPlease debug this 3arrow_forward
- QUESTION 21 Write a C# console application named DivisionApp that accepts two integers from the user. The first number is the dividend, and the second number is the divisor. If the divisor is equal to zero, display an error message "The divisior can NOT be zerof"; otherwise, display the quotient as a float-point value with one decimal place. For example, if the user enters 10 and 3, display the message "10 divided by 3 is 3.3". Attach File Browse Local Files Browse Content Collectionarrow_forward1. Retail Price CalculatorWrite an application that accepts from the user the wholesale cost of an item and its markup percentage. (For example, if an item’s wholesale cost is $5 and its retail price is $10, then the markup is 100%.)The program should contain a function named CalculateRetail that receives the wholesale cost and markup percentage as arguments, and returns the retail price of the item. The application’s form should look something like the one shown in Figure 6-22.arrow_forwardcolor: one of the following strings: 'red', 'blue', 'silver', 'white', 'black'year: year of manufacturing. A number between 1990 and 2018company: one of the following strings: 'Honda', 'Toyota', 'Ford', 'Chevrolet'model: one of the following strings: 'sedan', 'hatchback', 'SUV'Give a logical expression that evaluates to a True or False for a set of cars. e.g. Expression for "Red SUV cars" is (color == "red" and model == "SUV") Give an expression for "Ford sedan cars that are red or blue and were manufactured after 2000"arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education