<span>To use an online resource, it should be relevant to the topic. It should be credible, coming from an expert on the topic. Finally, it should be valid, coming from a source that is based in truth or fact.</span>
Answer:
1 will be stored in result
Explanation:
Given
The lines of code
Required
Determine the value stored in result
The value stored in result is determine by the condition (x<3 && y ==6)
In the first line, the value of x is 2 and the value of y is 6
So: x<3 is true because x = 2 and 2 is less than 3
y == 6 is also true because y = 6 and 6 is equal to 6
So, the condition (x<3 && y ==6) is true and true will be saved in variable result
Because result is a Boolean variable which can only take true or false value
1 represents true
0 represents false
<em>So, 1 will be stored in result</em>
Answer:D
Explanation: they do all of these
Answer:
1.trees_destroyed_per_hectare = 456/2.47
2. input(no_of_hectares)
3. no_of_trees_destroyed =no_of_hectares * trees_destroyed_per_hectare
4. print(no_of_trees_destroyed)
Explanation:
1.trees_destroyed_per_hectare = 456/2.47 //conversion of tress destroyed per acres to hectare
2. input(no_of_hectares) // get input from user in hectares that how many hectares are destroyed
3. no_of_trees_destroyed =no_of_hectares * trees_destroyed_per_hectare // total number of trees destroyed by fire on given day and given area
4. print(no_of_trees_destroyed)
I need the options to help you out, thanks. :)