Complete Question:
Which of the following about computers is NOT true?
Group of answer choices.
A. Computing devices translate digital to analog information in order to process the information.
B. Computing devices are electronic.
C. The CPU processes commands.
D. The memory uses binary numbers
Answer:
A. Computing devices translate digital to analog information in order to process the information.
Explanation:
Computing is the process of using computer hardware and software to manage, process and transmit data in order to complete a goal-oriented task.
The true statements about computers are;
I. Computing devices are electronic: the components and parts which makes up a computer system are mainly powered by a power supply unit and motherboard that typically comprises of electronic components such as capacitors, resistors, diodes etc.
II. The CPU processes commands: the central processing unit (CPU) is responsible for converting or transforming the data from an input device into a usable format and sent to the output device.
III. The memory uses binary numbers: computer only understand ones and zeros.
A <u>schema </u>describes the structure, content, and access controls of a physical data store or database.
<h3>What is the kind of database that stores data in a different physical location?</h3>
Distributed databases are that are distributed across several physical locations. In distributed databases, the data are placed where they are used most often, but the whole database is available to each licensed user.
<h3>What is the structure of database management system?</h3>
The database system is separated into three components: Query Processor, Storage Manager, and Disk Storage.
To learn more about Distributed databases, refer
brainly.com/question/28236247
#SPJ4
Complete Question is ,
a. relation
b. DBMS
c. schema
d. attribute
Answer:
A cell grows to its full size, The cell copies its DNA
have a great weekends, hopefully it was the right answer!
Answer:
In Python:
N = int(input("Positive integer: "))
if N > 0:
flag = False
for i in range(1,N+1):
if i * i == N:
flag = True
break
print(str(flag))
else:
print("Positive integer only")
Explanation:
N = int(input("Positive integer: "))
If the number is positive
if N > 0:
This initializes a boolean variable to false
flag = False
This iterates from 1 to the input integer
for i in range(1,N+1):
This checks if th number is a square of some integer
if i * i == N:
If yes, flag is set to true
flag = True
The loop is exited
break
This prints either true or false, depending on the result of the loop
print(str(flag))
If otherwise, that the number is not positive
<em>else:</em>
<em> print("Positive integer only")</em>