Answer:
See explanation
Explanation:
Given
![ex = [5,3,0,1,2]](https://tex.z-dn.net/?f=ex%20%3D%20%5B5%2C3%2C0%2C1%2C2%5D)
Solving (a):
print(ex[0:2])
This prints the elements from 0 index to 2-1
In other words, it prints index 0 and 1
Hence, the output is [5, 3]
Solving (b):
ex.append(8) --> This adds 8 to the end of the list
print(ex) --> This prints the updated list: [5, 3, 0, 1, 2, 8]
Solving (c):
ex.remove(0) --> This removes 0 from the list
print(ex) --> This prints the updated list: [5, 3, 1, 2, 8]
Solving (d):
ex.pop() --> This removes the last ite, from the list
print(ex) --> This prints the updated list: [5, 3, 1, 2]
Answer:
D - 2
Explanation:
You can have two report charts per page. You can only add report charts from the enhanced page layout editor.
The mini console and the original page layout editor are not supported. On detail pages, users can refresh up to 100 report charts every 60 minutes. Your organization can refresh up to 3,000 report charts every 60 minutes
Answer:
Option (B) i.e., Certificate authority is the correct option to the following question.
Explanation:
The following option is correct because it an organization or company who validating the identification of that object that exists and it also verifies the information of the third party.
Option A is incorrect because it is the tool or software that protects the system from the outsiders or the malware.
Option b is incorrect because Online certificate is issued for any software or application or the certification in the field of study.
Answer:
Boot Sector virus is when a virus infects the Boot Sector of a hard disk. A Boot Sector is the initial files necessary to start an OS and other bootable programs. It is typically infected by these viruses when started with infected floppy disks, however the boot virus does not have to be successful to infect your computer. Once infected, the virus tries to infect every other disk.
Hope this helps!
num = int(input("Enter a number: "))
i = 2
while num > 1:
if num % i == 0:
num = num / i
print(i, end=" ")
i = 2
i += 1
I hope this helps!