Answer:
nrToCheck = int(input("How many numbers do you need to check? "))
nrEven = 0
nrOdd = 0
for i in range(nrToCheck):
number = int(input("Enter number: "))
if (number % 2):
nrOdd = nrOdd + 1
print("{} is an odd number".format(number))
else:
nrEven = nrEven + 1
print("{} is an even number".format(number))
print("You entered {} even number(s).".format(nrEven));
print("You entered {} odd number(s).".format(nrOdd));
Answer:
<em>2. Logic</em>
<em></em>
Explanation:
We all know that for the PC to come on, there must be a power input, this means that if the PC does not power on, then there is probably no power input into the PC. <em>It is only logical for Bob to check if the PC is properly connected first when the power-on lights did not come on</em>. People with no technical training should be able to apply this simple logic too.
Answer: dynamically modified model
Explanation:
Answer:
to determine customer needs for a software
application
to reduce over scheduling of project
resources
Explanation:
Requirement gathering and analysis involves a business analyst and the client. And this is done in various phases with the first phase involving the business analyst and the client. And the second phase of software requirement is also being covered, and that is done by a team of System analysts, business analyst, and technical writers are part of both the team. However, both the phases have nothing to do with the bugs, and hence the first and the third part is not the correct part. However, customer needs are noted down, and in the second phase when resource requirement other than technical requirement is studied, partly it is ensured that there is no over the scheduling of the project resources during the project. And hence the second and the fourth options are the correct options.
The types of issues that is seen are:
- Electrocution
- Fire
- Tripping over wires and others.
<h3>What is the physical safety about?</h3>
There are a lot of of physical safety issues that can come up from using ICT devices.
A fire outbreak can occur if there is an issue with the wiring of the computer system or when there is too much voltage supplied and this is therefore a type of physical safety issues in the computer room.
Note that Electrocution is said to be the death or bad injury that is known to be caused as a result of an electric shock from electric current that tends to pass through the body.
Hence, The types of issues that is seen are:
- Electrocution
- Fire
- Tripping over wires and others.
Learn more about Electrocution from
brainly.com/question/1810934
#SPJ1