Answer:
Lock it in a safe is the best way to secure a laptop to a desk in a work space.
Explanation:
Since the end user feels that a laptop can be stolen or taken by others is a safe way to keep hire or her laptop in a safe place.
Bolt it:- it is not possible, because there is no option available
Lock it is safe:- this is idle or best solution is safe his or her laptop
Use an alarm :- the person who steals the laptop will be more intelligent and he or she knows how to disable the alarm system.
Use cable lock;- it is easy to remove it.
Well I suppose it would depend on what you have on your hard drive. If you have background applications that are using the computers memory without your knowledge, a clear drive would result in your performance improving. So I would say in general, clearing your drives would indeed make your computer faster.
Answer:
It is easy .8 bits.You have to note this
Answer:
listNumbers = [34,56,23,56,78,89,98,45,34,33,25,26,67,78]
listString = [ ]
for i in range(14):
if listNumbers[i]%2!=0 and listNumbers[i]%5==0:
listString.append("five odd")
elif listNumbers[i]%5==0 and listNumbers[i]%2==0:
listString.append("five even")
elif listNumbers[i]%2==0:
listString.append("even")
elif listNumbers[i]%2!=0:
listString.append("odd")
print(listNumbers)
print(listString)
Explanation:
In python programming language;
- Create two lists
- The first is a list of numbers and initialize it with random values: listNumbers = [34,56,23,56,78,89,98,45,34,33,25,26,67,78]
- The second list is empty and will hold the string values listString = [ ]
- Use a for loop to iterate over all the elementts in the list of numbers
- Use the modulo operator (%) to chech for multiples of particular numbers as stipulated by the question
- Use combination of if/elif statements for each condition
- Use the .append method to add the elements into the list of strings
- finially output both lists
See attached code and output
<h2><u>Given</u> :-</h2>
Create a HTML code for writing a web page for your school time-table.
<h2><u>Answer</u> :-</h2>
<html>
<head>
<title> Time Table </title>
</head>
<hrcolor = "red">
<hrcolor = "blue">
<body>
<table><tr = "7"><md = "7"><Period 1_></table>
</body>
</html>

Answered by - ItzMaster