Bus de datos:Bus de dirección:Bus de control.
Answer:
A. there is no need to consider the elements of writing in the
underlined portion of a passage.
Explanation:
The options are:
A. there is no need to consider the elements of writing in the
underlined portion of a passage.
B. reread the sentence using your selected answer.
C. determine the best answer.
D. read and consider all of the answer choices before choosing the
one that best responds to the question.
All the options are correct given above except for the first option. The first option is not correct as it is not the right idea to not consider the elements of writing in the underlined portion of a passage. We just cannot neglect this. And hence, the correct option is A.
Answer:
The program in Python is as follows:
num1 = int(input())
num2 = int(input())
if num1 >=0 and num2 >= 0:
print(num1+num2)
elif num1 <0 and num2 < 0:
print(num1*num2)
else:
if num1>=0:
print(num1**2)
else:
print(num2**2)
Explanation:
This gets input for both numbers
num1 = int(input())
num2 = int(input())
If both are positive, the sum is calculated and printed
<em>if num1 >=0 and num2 >= 0:</em>
<em> print(num1+num2)</em>
If both are negative, the products is calculated and printed
<em>elif num1 <0 and num2 < 0:</em>
<em> print(num1*num2)</em>
If only one of them is positive
else:
Calculate and print the square of num1 if positive
<em> if num1>=0:</em>
<em> print(num1**2)</em>
Calculate and print the square of num2 if positive
<em> else:</em>
<em> print(num2**2)</em>