Answer:
c
Explanation:
It preloads the apps and softwares that you use most into thr memory so that they can boot up faster.But it consumes more ram.
<span>The picture that graphically represents the items you use in windows is called a/an icon.</span>
Answer:
The program to this question as follows:
Program:
def lettersOnly(s): #defining method lettersOnly
val="" #defining string variable that return value
for i in s: #defining loop to calculate value
if(i.isalpha()): #check condition that value is string
val=val+ i #add value
return val #return value
print(lettersOnly("data3base_ro1c3k5s")) #call method and print value
Output:
databaserocks
Explanation:
In the above python code, a method lettersOnly is declared that accepts a string variable "s" in its parameter. Inside the method, a string variable "val", and loop is declared, in which the "val" variable holds method return value.
- In the loop and if block is used that uses "isalpha" string method, which checks the check alphabetic character in the given value. if this is true it will calculate all value in "val" variable and return its value.
- At the last, the print method is used, which calls the lettersOnly method and prints its return value.
Answer:
The baseline review
Explanation:
Solution:
The baseline review: this can be defined as the gap analysis or the beginning environmental review (IER). it is an assess study to get information about an organisation's present activities and associated environmental impacts, impacts and legal requirements.
This review issues an overview of the quality and weaknesses of an organisation’s environmental execution and opportunities for improvement.
<span>To assign a conditional value, use the IFF function. It is an abbreviation for Immediate If. It is a function </span>on spreadsheets that returns the second or third parameter based on the evaluation of the first parameter. <span>You use </span>IIf<span> to determine if another expression is true or false. If the expression is true,
</span>IIf<span> returns one value; if it is false, </span>IIf<span> returns another.</span>