
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
Concept explainers
Question
Exercise 1: Oreo cookies
- calculate how much one Oreo cookie is concerning : calories , sodium , carbohydrate , fat
- create a user input that asks how much cookies you ate
- calculate how much calories , etc. you consumed
- warn the user that if he / she surpasses 2000kcal he / she should stop eating these darn delicious cookies
- use variables!
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps

Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question
Write Python code that does the following:
- calculate how much one Oreo cookie is concerning: calories, sodium, carbohydrate, fat
- create a user input that asks how much cookies you ate
- calculate how much calories, etc. you consumed
- warn the user that if he/she surpasses 2000kcal he/she should stop eating these darn delicious cookies
- use variables!

Transcribed Image Text:Nutrition Facts
Serving Size 3 cookies
Amount Per Serving
Calories 160
Calories from Fat 58
% Daily Value*
Total Fat 7g
11%
Saturated Fat 2g
10%
Trans Fat Og
Cholesterol Omg
0%
Sodium 190mg
8%
Potassium Omg
0%
Total Carbohydrate 25g
Dietary Fiber 1g
Sugars 14g
Protein 2g
8%
4%
4%
Vitamin A 0%
Vitamin C 0%
Calcium 0%
Iron 10%
* Percent Daily Values are based on a 2,000 calorie diet. Your
daily values may be higher or lower depending on your calorie
needs.
Solution
by Bartleby Expert
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question
Write Python code that does the following:
- calculate how much one Oreo cookie is concerning: calories, sodium, carbohydrate, fat
- create a user input that asks how much cookies you ate
- calculate how much calories, etc. you consumed
- warn the user that if he/she surpasses 2000kcal he/she should stop eating these darn delicious cookies
- use variables!

Transcribed Image Text:Nutrition Facts
Serving Size 3 cookies
Amount Per Serving
Calories 160
Calories from Fat 58
% Daily Value*
Total Fat 7g
11%
Saturated Fat 2g
10%
Trans Fat Og
Cholesterol Omg
0%
Sodium 190mg
8%
Potassium Omg
0%
Total Carbohydrate 25g
Dietary Fiber 1g
Sugars 14g
Protein 2g
8%
4%
4%
Vitamin A 0%
Vitamin C 0%
Calcium 0%
Iron 10%
* Percent Daily Values are based on a 2,000 calorie diet. Your
daily values may be higher or lower depending on your calorie
needs.
Solution
by Bartleby Expert
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
- plz write it pseudocodearrow_forward1. Complete an algorithm, code and compile the following program. Save the program as mathTutor.py. Math Tutor You will be creating a math tutor program that can be used for young children to practice their math skills. The program will be driven by the following menu: See Rules Practice Math Exit If the user chooses (1) from the menu, the following rules will be displayed: This program will help you practice your math skills. First, you will choose Addition, Subtraction or Multiplication. Next, you will choose a level. Level 1 will give you problems with single digits and Level 2 will use two-digit numbers. Then, you will choose how many math problems you would like to complete. After you have completed all your problems, you will be given a score. You can play as many times as you want. Have fun!! If the user chooses (2) from the menu: First, prompt from the following math operation menu: Addition Subtraction Multiplication Next, prompt from the following level menu:…arrow_forwardObjective: Must create an interactive program (in C language) in which the computer generates a random number between 1 and 15. The user is presented with a guessing game and must enter their guess as to which number the computer is "thinking of" (the randomly generated number between 1 and 15). The user is limited to five guesses. If the user guesses the correct number within the five guess limit, they win. If the user does not guess correctly within the five guess limit, they lose the game. Following each user input, the output must say "your guess of _ was too low. try again" or "your guess of _ was too high. try again" or "you guessed it!" Instructions: The program must make use of passing by value and reference, if-else, defined constants, and use of the random number generator/seeding. The seed function srand() should only be called once in main. The point is to demonstrate use of multiple functions (those aforementioned) even though this could be accomplished with a much…arrow_forward
- Module main() // Local variables Declare Real width, length, area // Get the rectangle's width and length. getRectangleSides(width, length) // Get the rectangle's area. Set area = calcArea(width, length) // Display the area. Display "The rectangle's area is ", areaEnd Module// The getRectangleSides module prompts the user for// a rectangle's width and length. The values are// stored in the reference parameters.Module getRectangleSides(Real Ref width, Real Ref length) // Get the rectangle's width. Display "Enter the rectangle's width." Input width // Get the rectangle's length. Display "Enter the rectangle's length." Input lengthEnd Module// The calcArea function accepts a rectangle's// width and length as arguments, and returns// the rectangle's area.Function Real calcArea(Real width, Real length) Return width * lengthEnd Function flowchart pleasearrow_forwardPython programming language Write code that does the following: calculate how much one Oreo cookie is concerning: calories, sodium, carbohydrate, fat create a user input that asks how much cookies you ate calculate how much calories, etc. you consumed warn the user that if he/she surpasses 2000kcal he/she should stop eating these darn delicious cookies use variables!arrow_forwardPhython assignment Exercise 1: Oreo cookies Check out the nutritional values of an Oreo cookie (Koppelingen naar een externe site.). Write code that does the following: calculate how much one Oreo cookie is concerning: calories, sodium, carbohydrate, fat create a user input that asks how much cookies you ate calculate how much calories, etc. you consumed warn the user that if he/she surpasses 2000kcal he/she should stop eating these darn delicious cookies use variables!arrow_forward
arrow_back_ios
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