Cams always us to see things that happen when we are not there
Verbal language because somebody's verbal words are more receptive then ones written word
C) data preparation.
Is the process of ensuring the accuracy of data and their conversion from raw form into classified forms appropriate for analysus
Answer:
if(y==0)
{
x=100;
}
Explanation:
The above written if statement is for assigning 100 to x when the value of y is equal to 0.To check the value of the y I have used equal operator == which returns true when the value on it's left side is equal to the value to it's right else it returns false and for assigning the value to y I have used assignment operator =.
First it will be checked that the value y is equal to 0.If the then it return true means the if statement will execute.Inside if statement 100 is assigned to x.