Answer:
num1 = int(input("Numerator: "))
num2 = int(input("Denominator: "))
if num1 < 1 or num2<1:
print("Input must be greater than 1")
else:
print("Quotient: "+str(num1//num2))
print("Remainder: "+str(num1%num2))
Explanation
The next two lines prompts the user for two numbers
<em>num1 = int(input("Numerator: "))</em>
<em>num2 = int(input("Denominator: "))</em>
The following if statement checks if one or both of the inputs is not positive
<em>if num1 < 1 or num2<1:</em>
<em> print("Input must be greater than 1")-> If yes, the print statement is executed</em>
If otherwise, the quotient and remainder is printed
<em>else:</em>
<em> print("Quotient: "+str(num1//num2))</em>
<em> print("Remainder: "+str(num1%num2))</em>
<em />
Human centered technology often recommends best practices to computer designers and manufacturers, ...............
Human-Computer Interaction is a study that particularly focuses more on the design of computer technology and the interaction between humans and computers. Since the 1980s when HCI surfaced, it has become a crucial tool in popularizing the idea that the interaction between a user and a computer should resemble a human-to-human, open-ended dialogue. When HCI is done well, a human-centered approach powers the creation of products that resonates more deeply with a certain audience. This will ultimately drive engagement and growth.
Answer:
The answer to this question is given below in the explanation section.
Explanation:
This question is about to tell the best and suitable terms for the given descriptions in the question.
As we know that a computer program is based on sets of instructions. The CPU carries out the processing using the fetch decode and execute cycle.
It is responsible for implementing a sequence of instructions called a computer program that takes input, processes them, and outputs the result based on processing.
A CPU mainly has three components such as control unit, Arithmetic logic unit, and register.
The control unit controls all parts of the computer system. It manages the four basic operations of the Fetch Execute Cycle such as Fetch, Decode, Executes, and Storage.
So the correct terms of this question are:
Fetch: Gets next instruction
Decode: interprets the instruction
Execute: Carries out instruction.
Store: Save results of instruction.
Answer: (A) Look at engagement rate for targeting and focus on the methods with the highest view through rate
Explanation:
TrueView video enables to post ads in social sites however it is paid by the sponsor only if the ad is viewed fully or in some cases it is viewed only upto 30s of the total size of the video.
So in order to have a larger viewer engagement it is necessary for it to focus on the methods which would garner it highest views.
So option A is correct.
Option B and c are not correct these options would not cater to the needs of the viewer.