Answer:
Thirteen Hundredths
b. filtering messages through past experiences
c. minimizing external and psychological noise
d. making sense out of words and messages
Write a program that prompts the user to input two numbers—a numerator and a divisor. Your program should then divide the numerator by the divisor, and display the quotient and remainder without decimals.
Explanation:
The code below is written in python :
a=int(input("Enter the first number: "))
b=int(input("Enter the second number: "))
quotient=a//b
remainder=a%b
print("Quotient is:",quotient)
print("Remainder is:",remainder)
1. User must enter the first and second number .
2. The quotient is obtained using true division (// operator).
3. The modulus operator gives the remainder when a is divided by b.
The multiple choices provided for this question are
A. wireless network router
B. x-box 360 game controller
C. virus scanner
D. flat-panel monitor
The answer is (C) virus scanner
Hardware, in Information Technology, is the physical aspect of computers, telecommunications, and other devices. It is any physical component that contains a circuit board or other electronics. An example is the screen on which you are using to read this, which brings us to option D
Software, by contrast, is a collection of instructions that enable the user interact with computer hardware. A Virus scanner is an example of a software program. A Virus scanner can also be known as anti-virus software. An anti-virus software scans and identifies viruses in a computer device.
Answer:
It is not A!
Explanation:
Answer:
false my big brain fellows