Answer:
Biodegradable means it SHOULD be safe for the environment. Meaning it can break down into natural elements. However, this is uncertain as some materials don't break down as easily, with a possibility of not having much of a difference as non-biodegradable materials. It all depends on the product, but if we're going by the label, then by definition it's environmentally safe.
Answer:
The correct answer for the given question is "Computer virus"
Explanation:
A computer virus is a software program that is installed automatically without user's knowledge and designed to duplicate itself .The main purpose of computer virus is to harm the computer system.
Some of the points regarding computer virus
1.The computer virus contain malicious software Which harm the computer system.
2.It damage the computer computer system in such away that sometimes users will unable to access some certain functionality of computer system.
Answer:
double decimal1, decimal2;
int whole;
Explanation:
Required
Declare 2 decimals and 1 int.
The syntax to declare a variable is:
<em>data-type variable-name;</em>
To declare decimal, we simply make use of double or float data types.
So, we have:
double decimal1, decimal2; ----> for the decimal variables
And
int whole; ---- for the whole number
Answer:
B) An Algorithm
Explanation:
An algorithm is defined as the step-by-step solution to a given problem that follows a logical sequence and which is also finite. In mathematics and computer science, the first step in solving a given problem is writing out the algorithm which will include steps for calculations, decisions, data processing, input/output etc. There are scientific ways of representing algorithms through the use of flowcharts, pseudocodes, data flow diagrams etc.