Hardware:
-physical parts of a computer that cause processing of data
-can be connected (physically) & can touch
- Hardware wares out during/over time
-Hardware failure is random
Software:
-A set of construction that tells a computer exactly what to do
-software is logical in nature
- dose not have an increasing failure rate
Similarities
- Behavior; Users interact with the products in various ways
- Products produce outputs and given inputs
-they have functional (user facing) and non functional (non user facing) requirements
-They are both complex (any representation of product specifications lead to a main structure)
Differences
- Software is easier to change then hardware
- Software testing is done by specialized quality assurance (QA) engineers, while hardware is done by engineers who are creating the product
-Hardware must be designed and tested to work over a range of time and environmental conditions, which is not the case for software
- Hardware designs are constrained by the need to incorporate standard parts
(Hope this helps?)
Answer:
import random
numbers = []
even = 0
odd = 0
for i in range(100):
numbers.append(random.randint(1, 200))
for i in range(100):
if numbers[i] % 2 == 0:
even += 1
else:
odd += 1
print("Even:", even)
print("Odd:", odd)
Explanation:
Gg ez.
No speak a Spanish ............
Answer:
C.<em> improve data quality and reduce redundancies, reduce increased and staggering storage management costs</em>
<em></em>
Explanation:
Excess data retention can lead to retention of redundant and irrelevant data, which can reduce data handling and processing efficiency, while at the same time increasing the cost of data storage and management. This can be curbed be reducing data to the right size by using data governance techniques like data cleansing and de-duplication
Answer:
<u>Syntax of function in the Python Programming Language.</u>
def function_name():
'''body of the function or code'''
#calling of the function
function_name()
Note: In Python Programming Language, Indentation is sensitive if you not focus on the indentation then, you program occurs an indentation error.
Explanation:
In Python Programming language, we can use the "def" keyword to define a function then we write the name of the function and then use parentheses for the argument list. "#" is used for the single-line comment and " ''' ''' " is used for the multiple line comment.
A function is the part or module of the program which provides users the feature of reusability of that code anywhere only by calling them.