The answer is: <span>Source of the Event</span>
<u>Answer:</u>
<em>Black and white</em>:
It has only two values namely black or white. The white colour in the image will be represented as “white” and other colour part will be displayed as black.
<em>Grey-scale: </em>
Again the white part does not have a change, the black and other coloured items will be displayed in grey.
<em>Coloured image: </em>
It would display the actual colour of the image. The number of colours and shades depends on the original image from where actually it has been shooted and it also depends on the quality of the camera.
Answer:
if(i>1)
{
Console.WriteLine(i*i);
Console.WriteLine(i*i*i);
}
Explanation:
This is written in C#, and it's probably not as clean as it could be. I'm not sure what language you wanted it in, so I just picked the one I'm most familiar with.
Answer:
# Solve the quadratic equation ax**2 + bx + c = 0
# import complex math module
import cmath
a = 1
b = 5
c = 6
# calculate the discriminant
d = (b**2) - (4*a*c)
# find two solutions
sol1 = (-b-cmath.sqrt(d))/(2*a)
sol2 = (-b+cmath.sqrt(d))/(2*a)
print('The solution are {0} and {1}'.format(sol1,sol2))
Hope This Helps!!!