1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
weqwewe [10]
4 years ago
13

Read two numbers from user input. Then, print the sum of those numbers. Hint -- Copy/paste the following code, then just type co

de where the questions marks are to finish the code. num1 = int(input()) num2 = ? print(num1 + ?) Note: Our system automatically runs your program several times, trying different input values each time to ensure your program works for any values. Notes on how to solve this. See How to Use zyBooks for info on how our automated program grader works
Computers and Technology
2 answers:
Luba_88 [7]4 years ago
6 0

Answer:

num1 = int(input("Enter the first number "))

num2 = int(input("Enter the first number "))

print(num1 + num2)

Explanation:

Using Python programming language.

The input function is used to prompt a user to enter the first and sencond numbers

These are saved in the variables num1 and num2 respectively.

Using the print function, the sum of num1 and num2 are evaluated and printed

arlik [135]4 years ago
6 0

Answer:

The solution code is written in Python 3:

  1. num1 = int(input("Enter first number: "))  
  2. num2 = int(input("Enter second number: "))
  3. print(num1 + num2)

Explanation:

Firstly, we use input function to prompt user input first and second number (Line 1 -2). We can include the prompt message as the argument of input function. Besides, we also convert the input to integer type using int() function. By default all the input are string.

At last, use print function to display the result of num 1 + num2 (Line 3)

You might be interested in
The range of Cell that go across the spread sheet and are identified by numbers is called​
Zanzabum

Cells are identified by the Cell Name (or Reference, which is found by combining the Column Letter with the Row Number. For example the cell in Column "C" in Row "3" would be cell C3. Cells may contain Labels, Numbers, Formulas or Functions. Cell Name: By default, the name of a cell is the cell reference.

Hope this helps

7 0
2 years ago
Help!!! Photography class!! ASP
katovenus [111]

Answer:

D.

Explanation:

Typically represented by a capital A (or sometimes Av, short for Aperture Value) on the camera mode dial, aperture priority allows the photographer to dial in this specific exposure setting—the ƒ-stop—and asks the camera to calculate the correct corresponding shutter speed in the instant before the shutter is released.

8 0
3 years ago
You are a database administrator. Chantelle comes to you asking for help on how to access all the data in one row of the databas
Novosadov [1.4K]
I believe the answers would be A and B. Because you have to fulfill  Chantelle's wishes and you have to access their data. Which I am guessing would require a database backup.  

I hope this helps. 
7 0
3 years ago
What is an electronic ledger that tracks mathematical data
anyanavicka [17]
Computer or calculater.hope this helps
7 0
3 years ago
C) Explain GIGO briefly.​
hodyreva [135]

Answer:

Is is also a computer science acronym that implies bad input will result in bad output. Requiring valid input also helps programs avoid errors that can cause crashes and other erratic behavior.

IT'S FORMULA IS GIGO: GARBAGE IN GARBAGE OUT...

HOPE IT'S HELPFUL FOR U!!

AND PLZ MARK ME AS BRAINLIEST IF U LIKE THIS ANSWER!!!!

4 0
3 years ago
Other questions:
  • Is this picture the CPU, RAM, CD, or Operating System
    15·1 answer
  • How useful do you find the creation of folders in your computer?
    8·2 answers
  • Lean production systems are sometimes referred to as pull systems because demand from customers activates the production actions
    5·1 answer
  • When creating a new user in linux, after entering the name, the username box:?
    9·1 answer
  • What is the top folder of the file tree called
    5·2 answers
  • You are managing a global news website which has a very high traffic. To improve the performance, you redesigned the application
    10·1 answer
  • You are the owner of a computer component manufacturing company. Your manufacturing plant has 10 different machines that can be
    6·1 answer
  • How do you turn on the Track Changes feature in a word-processing document?
    12·1 answer
  • Samuel loves playing the violin, but he feels embarrassed after a classmate posts a video on a social networking site making fun
    6·2 answers
  • Question 1 of 10 Chase lives in Oregon but works for a company that is located in Florida. What business trend is this an exampl
    11·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!