
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
(python)
6. Write the python code to create a list of 10 different random numbers.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 2 steps with 1 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
- (THIS IS FOR MINDTAP ON CENGAGE, PLEASE USE THAT. ALTERNATIVE IS DEVC++5.11 BUT HIGHLY RECOMMENDED THAT YOU USE MINDTAP) Instructions Write a C++ program that declares an array alpha of 50 components of type double. Initialize the array so that the first 25 components are equal to the square of the index variable (the position that element will occupy), and the last 25 components are equal to three times the index variable. Output the array so that 10 elements per line are printed. (For the number at index 5, the value would be 25, which is 5 squared. The 25th index would hold a value of 75, which is 3 * 25.) An example of the program output is shown below:arrow_forward[C Program] 2. Cubes and Squares by CodeChum Admin You can also make a list of numbers, ey? Let's go and have some fun in tweaking the values of each element, but let's give it some twist to add on some fun to the code. Let's have a go at it! Instructions: An array containing 40 integer elements is already provided for you in the code editor below. Using loops and conditions, print out the cube of the array element if it is a positive number, and print out the square of the number if it is negative. Each result must be printed out separately by each line. Output The squares and cubes of the elements in the array. 4 1 1 8 27 . . . ------------ #include<stdio.h> int main(void) { int nums[40] = { -2, 1, 1, 2, 3, 9, 10, -3, 100, 2, 4, -5, 1, 10, -100, 5, 2, 3, -1, 1, -3, -4, -5, -6, -7, 9, 9, 9, 9, 9, 1, 2, 3, 4, 5, 100, 100, 100, 100, 100 }; return 0; }arrow_forward(python) Please locate and identify at least 10 problems in the following code. Explain how to fix them or why they are an error. Use the line numbers in your answers. 1. import random2. n = 203. to_be_guessed = str(n * random.random()) + 14. guess == 05. whileLoop guess != to_be_guessed:6. guess = int(input("New number: '))7. if guess > 08. if guess > to_be_guessed:9. print(Number too large")10. elseif guess < to_be_guessed:11. print("Number too small")12. else:13. print("Sorry that you're giving up!"14. break:15. notWhile:16. print("Congratulations. You made it!")arrow_forward
- (25 points) Assume you were given a sequence of exactly 5 quiz grades at runtime through sys.argv[] array. Write a program called final1.py that calculates the average quiz grade after dropping the lowest one. Here is what I would type in command prompt as an example: 1) python final1.py 80 80 45 70 70 2) python final1.py 75 55 90 100 95 3) python final1.py 0 0 80 80 80 The output for the examples above is: 1) Dropped 45, Average quiz grade = 75.0 2) Dropped 55, Average quiz grade = 90.0 3) Dropped 0, Average quiz grade = 60.0arrow_forward(Python) Write code that does the following: opens the number_list.txt file, reads all of the numbers from the file (1 to 100) and displays them, then closes the file.arrow_forward(Element-Wise array Multiplication) Create a 3-by-3 array containing the even integers from 2 through 18. Create a second 3-by-3 array containing the integers from 9 down to 1, then multiply the first array by the second. Using Python. Please keep it simple.arrow_forward
- Please code in python Kiki is making “Happy National Pizza Day” (February 9th) cards for all of her friends. She’s a bit disappointed with the cards not looking special enough, so she decides to add glitter to them to make them look more special. However, she’s short on glitter, so she decides to add glitter selectively. She uses a box with N*N divided sections to store her cards. Each section is huge and each card is small, so she can put multiple cards in a given section and they will never overlap. We model the way that she organizes the cards and adds glitter using two commands: Command 1: 1 x y: add a card to the box in section (x, y). Command n: 2 x1 y1 x2 y2: Add one unit of glitter to each of the cards in the sections from (x1, y2) to (x2, y2). Help Kiki determine the total number of units of glitter that she placed on the cards. Input The first line will contain N (1 <= N <= 500) and C (1 <= C <= 500 ), the square size of the card storage box…arrow_forwardPython (this is not graded this is practice work that is not graded) write and test a function which takes two dates (month, day) list arguments.When the function is called with the two arguments, it returns the number of days betweenthose two dates. Print the returned value. It is assumed that the first date occurs first. Forinstance, if the users calls the function with FUNCTION([12, 10], [12, 20]) as arguments, thereturned value is 10 days. However, if FUNCTION([12, 20], [12, 10]) is called, the returnedvalue is -10 days.Assume February has 28 days.Test data: [10, 30], [5, 20] [1, 30], [5, 25] [5, 25], [1, 30] [1, 1], [12, 31]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