Answer:
// program in Python to check perfect number
#function to find number is perfect or not
def is_Perfect_Number(n):
#total variable
tot = 1
i = 2
#sum of all divisor of number
while i*i<=n:
if n%i==0:
tot = tot + i + n/i
if tot == n and n != 1:
return 1
i = i+1
return 0
#read until user enter a perfect number
while True:
#read integer
num = int(input("Input an integer: "))
#call the function
if(is_Perfect_Number(num)):
print(num,"is perfect number")
#if perfect number break
break
else:
print(num,"is not a perfect number")
#ask again
print("try again.")
Explanation:
Read number from user and then call the function is_Perfect_Number() with parameter "num".This will find the sum of all divisor of number.If sum is equal to number then it will return 1 else return 0.If the number is not perfect then it will again ask to enter a number until user enter a perfect number.
Output:
Input an integer: 24
24 is not a perfect number
try again.
Input an integer: 28
28 is perfect number
Answer:
Simple, really
Explanation:
3Rd one is pretty easy, all you have to do is read closely.
Answer:
Answers in explanation. Try to ask one question at a time, it is easier for people to answer single questions and you will get answers faster.
Explanation:
15. A
16. D
17. B + C
18. A+B+D
19. B+C+D
**20. is NOT Planned personal leave for documentation developers and proof readers. The other 4 answers are correct
21. Presentation notes + Outline
22.B
23.D (im not entirely sure about this one)
Answer:
TRUE
Explanation:
A rootkit is a collection of computer software, typically malicious, that is designed to grant an unauthorized user access to a computer or certain programs. Once a rootkit is installed, it is easy to mask its presence, so an attacker can maintain privileged access while remaining undetected.
Rootkit detection is difficult because a rootkit maybe able to subvert the software that is intended to find it.
Rootkits work by using a process called modification (the changing of user account permissions and security).
Rootkits are not malware themselves, but rather a process used to deploy malware on a target.
Therefore, it is TRUE that a rootkit is software and file folders that are hidden from view and permit viruses, spyware, and malware to be installed on a PC without the knowledge or consent of a user.
Answer:
Policy manual
Explanation:
A written document that is designed by the company to decide the rules and regulations for the employee to guide them about attendance and evaluation to achieve the desired goals is called Policy manual.
A handbook is provided to the employee at the time of joining of Job. All the policies related to employee such as dress code, attendance policy and evaluation policy. All the rules and regulations related to office are also present in this document.
The purpose of this document is to inform the new employees about guidelines of the company.