
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
Modify the chaos program so that it accepts two inputs and then prints a table with two columns
Like the photo

Transcribed Image Text:input
0.25
0.26
0.731250
0.750360
0.766441
0.730547
0.698135
0.767707
0.821896
0.695499
0.570894
0.825942
0.955399
0.560671
0.166187
0.960644
0.540418
0.147447
0.968629
0.490255
0.118509
0.974630
DII
F5
F1
F2
F4
F6
@
3.
4.
6.
%24
%23
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 3 steps

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
- Write a program in python that reads a list of words. Then, the program outputs those words and their frequencies. Ex: If the input is: hey hi Mark hi mark the output is: hey 1 hi 2 Mark 1 hi 2 mark 1arrow_forwardWrite a Python program that takes 7 inputs and appends them to a list (aGrades). Randomize the scores. The final exam will be the last item in the list. Calculate the number of exams as the length of the list minus one; assign examCount to len(aGrades)-1. Here we will introduce the function sum() to the class. The Total Points will be equal to the sum of the list minus the final exam. Assign Total Points to sum(aGrades)- aGrades[lastitemIndex]. Compute the Test Average to be equal to the Total Points divided by the length of the list minus one. Assign Test Average to Total Points / examCount The final average will be equal to 60% of the test average plus 40% of the Final Exam. Assign Final Average to Test Average *.6 + Final Exam * .4 Display the grades list, test average and the final average on separate lines. Upload the code, and the word doc explaining each line of code and their variables. . Use of the append methodarrow_forwardWrite a Python program that reads a string as an input from the user where multiple numbers are separated by spaces. Then, make a list of numbers from the input string without using the split() function and print the list. Finally, remove all the occurences of **even numbers** from the same input list and print the modified list. ========================================================================= **Sample Input:** 7 12 4 55 96 2 11 61 33 42 **Sample Output:** [7, 55, 11, 61, 33] **Hint:** use string.split() to get a list: [7, 12, 4, 55, 96, 2, 11, 61, 33, 42]\Then work on this list.\You can use either a loop or list comprehension to get ther final list. #assign the output list to variable "list_out" def task3(str_in): # YOUR CODE HERE return list_outarrow_forward
- Write a java program using a for loop to print out all integers divisible by 5 between 20 and 200 (including both, i.e. 20, 25, 30, ...200) and their cubic value. Make sure the corresponded integer and cubic value are in the same line, but different integer values are in separate lines.arrow_forwardwrite a java program to find the minimum number of rotations required to get the same string.arrow_forwardWrite pseudocode for a program that outputs numbers in reverse order from 10 down to 0.arrow_forward
- Write a program with loops to solve each of the following (comment each block of code): Compute the sum of all odd numbers between a and b (inclusive), where a and b are inputs. Prompt the user for a and b. Display the sum. Read a sequence of integer inputs and print the smallest and largest of the inputs. Prompt for a line of input as a string and display the string, with all vowels replaced by an underscore.arrow_forwardWrite a C program that will take a string and another number as input. Shift all the characters of the string by that numerical value. The string will consist of only small letters. Look at the explanation for more clarification. Sample Input: smiley 5 Sample Output: xrnqjd Explanation: Here, the first character was s and it has been shifted by 5 units, that is, s+5 = x, thus we got the character ‘x’ in the output. Similarly all the character by shifting the characters by 5 units. Take a closer look at the last character. The character was ‘y’ but after shifting it by 5 units we got ‘d’. That is because we traversed the letters in a circular fashion. After ‘y’ comes ‘z’ then ‘a’ then ‘b’ then ‘c’ and then finally ‘d’. Thus, ‘y’+5 will be ‘d’ in our program. Be careful about this case.arrow_forwardTask 14 An anagram is a play on words created by rearranging the letters of the original word to make a new word or phrase. So we can say two words are anagrams if they contain all of the same letters, but in a different order, Write a python program that takes two strings from the user and tells if they are anagram or not. Sample Input 1: dusty study Sample Output 1: They are anagram ======== Sample Input 2: dustyyy study Sample Output 2: They are not anagramarrow_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