
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
thumb_up100%

Transcribed Image Text:1. Create a C program that prompts the user to input a number and prints its corresponding multiplication equivalent in a multiplication
table. Use nested for loop only.
Sample Output:
I CAUsers\delNDesktop\c\prelim\multiplicaitontable.exe
Input upto the table number starting from 1: 10
Multiplication table from 1 to 10
1x1 = 1, 2x1 = 2, 3x1 = 3, 4x1 - 4, 5x1 - 5, 6x1 = 6, 7x1 = 7, 8x1 = 8, 9x1 = 9, 10x1 = 10
1x2 = 2, 2x2 = 4, 3x2 - 6, 4x2 = 8, 5x2 = 10, 6x2 = 12, 7x2 = 14, 8x2 = 16, 9x2 = 18, 10x2 = 20
1x3
3, 2x3 = 6, 3x3 = 9, 4x3 = 12, 5x3 = 15, 6x3 = 18, 7x3 = 21, 8x3 = 24, 9x3 = 27, 10x3 = 30
1x4 = 4, 2x4 = 8, 3x4 = 12, 4x4 = 16, 5x4 = 20, 6x4 = 24, 7x4 = 28, 8x4 = 32, 9x4 = 36, 10x4 = 40
1x5 = 5, 2x5 = 10, 3x5 = 15, 4x5 = 20, 5x5 = 25, 6x5 = 30, 7x5 = 35, 8x5 = 40, 9x5 = 45, 10x5 = 50
1x6 = 6, 2x6 = 12, 3x6 = 18, 4x6 = 24, 5x6 = 30, 6x6 = 36, 7x6 = 42, 8x6 = 48, 9x6 = 54, 1ex6 = 60
1x7 = 7, 2x7 = 14, 3x7 = 21, 4x7 = 28, 5x7 = 35, 6x7 = 42, 7x7 = 49, 8x7 = 56, 9x7 = 63, 10x7 = 70
1x8 = 8, 2x8 = 16, 3x8
1x9 - 9, 2x9 - 18, 3x9 - 27, 4x9 - 36, 5x9 - 45, 6x9 - 54, 7x9 - 63, 8x9 - 72, 9x9 - 81, 10x9 - 90
1x10 - 10, 2x10 - 20, 3x10 - 30, 4x10 - 40, 5x10 - 50, 6x10 - 60, 7x10 - 70, 8x10 - 80, 9x10 - 90, 10x1e - 100
24, 4x8 = 32, 5x8 = 40, 6x8
48, 7x8
56, 8x8 = 64, 9x8 = 72, 10x8 = 80
%3D
2. Write a program that prints the following patterns separately, one below the other. Use for loops to generate the patterns. All asterisks
(*) should be printed by a single printf statement of the form printf( "%s", "**); (this causes the asterisks to print side by side). [Hint: The last
two patterns require that each line begins with an appropriate number of blanks.)
(A)
(C)
******tr
(B)
(D)
******
******* *
****** **
***
********
*******
***
****
冷時 ☆
******
****
*****
******
******
*****
******
*****
*****
合
*******
時
****
*******
******t*
***
********
********
********
*********
********k **
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 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
- Write a do-while loop that continues to prompt a user to enter a number less than 100, until the entered number is actually less than 100. End each prompt with a newline. Ex: For the user input 123, 395, 25, the expected output is: Enter a number (<100): Enter a number (<100): Enter a number (<100): Your number < 100 is: 25 #include <iostream>using namespace std; int main() {int userInput; /* Your solution goes here */ cout << "Your number < 100 is: " << userInput << endl; return 0;} Please help me with this problem using c++.arrow_forwardI need help writing pseudocode and making a flow chart for a program in python: # Function to calculate the factorial of a numberdef factorial(n):if n == 0:return 1else:return n * factorial(n - 1)# Hardcoded inputsnum = 5numbers = [1, 2, 3, 4, 5]# Calculate factorial of a numberresult = factorial(num)print("Factorial of", num, "is:", result)# Use if statements to check even and odd numbersfor number in numbers:if number % 2 == 0:print(number, "is even")else:print(number, "is odd")# Use loops and arrays to find the sum of numberstotal = 0for number in numbers:total += numberprint("Sum of numbers:", total)arrow_forwardIN PYTHON PLEASE! PROVIDE THE FINAL CODEarrow_forward
- In java please. thank you!arrow_forwardusing iostream domain and for looparrow_forwardAn experienced Python programmer in your company wants your assistance calculating the sum of integer multipliers of 12 between 0 and up to 100 (including both ends). As an example: while j < 100: Use the following starter code and complete the while loop: Starter code: j-0 sum12 0 ### Place your code below the print (¹) print('Total sum12 is:', sum12) ### Place your code above this ### Expected output: j: 0 sum12: 0 j: 12 sum12: 12 j: 24 sum12: 36 j: 36 sum12: 72 j: 48 sum12: 120 j: 60 sum12: 180 j: 72 sum12: 252 0 x 12+0=0 1x 12+0=12 2 × 12 + 12 = 36 3 x 12+36 72 j: 84 sum12: 336 j: 96 sum12: 432 ⠀ 6 x 12+180 252 7 x 12+252 = 336 8 x 12 +336 432 Total sum12 is: 432arrow_forward
- Write a for loop that calculates the total of the following series of numbers: 1/30 + 2/29 + 3/28 + ... = 30/1 Submit the source code.arrow_forwardComputer Science The script below demonstrates a very basic loop structure. Indicate the value of R1 after 5 iterations of the loop. (Given the very first line of code, you can assume R1 starts out as 0x00)arrow_forwardc code needs to ask user for a number sfasddasfasarrow_forward
- In python language please Input a sentence from the user and compute the following: Eg: Dont give up Find the ASCII value for each character of each word and calculate the sum. //hint use ord() & chr() function are used to find corresponding ASCII & char values in python. //*if you get any value ranges from 1 to 32 then replace with $ symbol //char[1-32]--->S Dont give up ASCII(D)=68 ASCII (0)=111 ASCII(n)=110 ASCII(t)=116 sum=68+111+110+116=405. The set are (40, 04), (45,54), (05,50). The biggest values in a set is(40, 54, 50). char(40)=( char(54)=6 char(50)=2 ASCII(g)=103 ASCII()=105 ASCII(v)=118 ASCII(e)=101 sum=103+105+118+101-427, The set are(42.24), (47,74),(27,72), The biggest values in a set is (42.74,72) char(42)=* char(74)=) char(72)=H ASCII(u)=117 ASCII (p)=112 sum=117+112=229, The set are (22.22). (29.92). (29.92), The biggest values in a set is(22.92.92) char(22)=$(Replaced with S)arrow_forwardii)Detail the four abstraction layers that make up TCP/IP. ii) Provide a scenario in which two computers share a video file via an unencrypted ftp connection using a weak TCP three-way handshake.arrow_forwardPlease help me fixing my code. I don't know what is wrong with this code it is now giving me error saying "break: Outside loop." Please can you help me with this in Python (IDLE) and fix it # Program make a simple calculatorfrom itertools import permutations,combinationsimport statistics# This function adds two numbersdef add(x, y):return x + y # This function subtracts two numbersdef subtract(x, y):return x - y # This function multiplies two numbersdef multiply(x, y):return x * y # This function divides two numbersdef divide(x, y):return x / y def permutationfun(arr,length):perm = permutations(arr, length)return permdef combinationfun(arr,length):comb=combinations(arr,length)return combdef stats(marks):lengths = [x for x in marks.values()]n = len(lengths)get_sum = sum(lengths)mean = get_sum / nlengths.sort()if n % 2 == 0:median1 = lengths[n//2]median2 = lengths[n//2 - 1]median = (median1 + median2)/2else:median = lengths[n//2]data = Counter(lengths)get_mode = dict(data)mode = [k for…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