Answer:
single equal sign
Explanation:
The if statement is used for check the condition.
syntax:
if(condition)
{
statement;
}
let discuss the option one by one for find the answer:
Option a: greater than sign
this assignment operator '>' is valid. it is used to create the condition like n>0, p>4.
Option b: double equal sign
this assignment operator '==' is valid. it is used to check the equal condition.
like 2 == 2.
Option c: single equal sign
this assignment operator '=' is not valid. it is used for assign the value to variable not for checking like a=2, in this 2 assign to a but it not apply the condition.
Option d: Boolean value
we can provide the Boolean value as well if Boolean is TRUE, if condition true otherwise false.
Therefore, the option c is correct option.
Answer: The daguerreotype was a unique image, not capable of making multiple copies. then dried, placed under a negative, and exposed to light, producing a photographic print. dyeline process used today.
Explanation:
Language: JavaScript
Answer:
let num = [10,20,30];
average(num);
function average(num) {
let sum = 0;
for(let i in num) {
sum += num[i];
}
return console.log(sum/num.length);
}
The Writing Process- Drafting and Editing. Writing is a process that involves several distinct steps: prewriting, drafting, revising, editing, and publishing. It is important for a writer to work through each of the steps in order to ensure that he has produced a polished, complete piece.
I’m not sure about USD but Canadian dollars are greater, one dollar CAD is equal to $0.79 US. So $10 CAD is equal to $7.90 US.