Answer:
<em>D</em><em>e</em><em>s</em><em>k</em><em>t</em><em>o</em><em>p</em>
Explain:
<em>Desktop refers to the main screen of the computer. It is the first screen you see after logging in. The desktop’s appearance can vary widely because it is highly customizable, but generally desktops will feature a large image, icons, and a taskbar(covered later on this page).</em>
Answer:
a) 2∪p/lb (l+b)dH
b) po exp( 4∪x/l)
Explanation:
please check the attachment for proper explanation and proper sign notations thanks.
Answer:
//The program prompts user to input three integers and it displays them, adds and gets their average
//begin
public class Test
{
public static void Main()
{
//input intergers
int[] score = new int[3];
int avg,rem,sum = 0;
for(int i=0;i<3;i++)
{
Console.WriteLine("Enter an integer score ");
score[i] = Convert.ToInt32(Console.ReadLine());
sum = sum + score[i];
}
avg = sum/3;
rem = sum%3;
Console.WriteLine("The average of "+score[0]+","+score[1]+","+score[2]+" is "+avg +" with a remainder of "+rem);
}
}