The operating system is the fundamental controller of all system resources
Operating system popularity is one major reason why hackers attack
Window is a big target because it powers the vast majority of the world’s desktop computers and laptops.
To steal personal and protected health information
To steal user credit card numbers and other financial data
To harm the system or disrupt business operations of any organization
To gain competitive edge over opponents
To spoil the reputation of an organization
If you want answer to question 19, put a Thanks and comment that you want answer to question 19
Answer:
A
Explanation:
The answer is A because, to be novice at something that means one is new to and is inexperienced at said activity.
Answer:
true
Explanation:
it's TRUE the correct answer is true
Answer:
The answer to this question is given below in the explanation section. The correct answer is A.
Explanation:
The correct answer to this question is:
They restrict access depending on job role.
because the company creates different workspaces for particular departments. Each department allows access to its employee to work and use the assigned resources. Other people from other departments can't use their computers due to security reasons.
However, the following options are not correct.
They connect a company's website with its internal wiki.
They allow a company to organize information. (information is maintained inside in the workspace)
They provide a platform for collaboration.
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>