Answer:
=B5/10
=E10
Explanation:
The above two formulas are the correct options. Remember for a valid formula in Excel, we must have the = sign first, and this should be followed by a valid formula. Saying that C5 should be E10 by writing =E10 at C5 is a formula certainly. And storing B5/10 at C5, through =B5/10 is also a valid formula. Hence, two formula out of four, and as mentioned above are the correct ones.
Answer: All of the above
Explanation: As the technology is getting improved and advanced time to time, it will put a huge impact on various sections of organization.
The advancement in the IT infrastructures will be seen by the improvement in the software,networks, data centers, hardware etc and their functioning.This will lead increase the focus of the technology towards the IT infrastructure.
Security is the feature that requires to be developed throughout the time as hacker and attackers come up with various attacks and other malicious activity to steal the confidential data and information .Thus security constantly needs to be improved and focused which will continue to happen in 21st century.
Business of organizations are becoming online and this will tend the organizations to become more indulged online business or e-business in future as it provides more benefits and vast coverage .Thus, all the options are correct.
You can just look up "python ide online" on google and paste this code:
n = -1
count = 0
while n < 0:
n = int(input("We're checking to see if a number is prime or not! Enter a positive number: "))
if n % 2 == 0:
if n == 2:
print("{} is a prime number".format(n))
else:
print("{} is not a prime number".format(n))
else:
for x in range(n, 1, -1):
if n % x == 0:
count += 1
if count > 1 or n == 1:
print("{} is not a prime number".format(n))
else:
print("{} is a prime number".format(n))
I've written some code that checks to see if a number entered by the user is a prime number or not.
Sorry, but I'm not too good with pseudocode plans and all that. I hope this helps.