Answer:
GUI stands for graphical user interface. The function of the GUI is almost like when your right click on your computer and click inspect and it pulls up your computers coding, and codes. That is what GUI basically is it shows a visual presentation of all available functions of a software. operating system like ( Windows 7, Windows XP) or program.
Explanation:
Hope this helped : )
Answer:
Evaporation
Explanation:
Evaporation is when water gets transferred from an object to the sun by thermal energy which is produced by the Sun. Evaporation can also be caused when heat causes water vapour to come, and it gets evapprated by the Sun and thermal energy. Each particle moves at once, so when this technology gets incurred on the Sun, it becomes an example.
Answer:
I did this in C# & Java
Explanation:
C#:
public static void Main(string[] args)
{
int input = Convert.ToInt32(Console.ReadLine());
Multiply(input);
}
public static int Multiply(int input)
{
int ans = 0;
for(int i =1; i<=10; i++)
{
ans = i*input;
Console.WriteLine(i + "*" + input + "=" + ans);
}
return ans;
}
Java:
public static void main(String[] args)
{
Scanner myObj = new Scanner(System.in);
int input = Integer.parseInt(myObj.nextLine());
Multiply(input);
}
public static int Multiply(int input)
{
int ans = 0;
for(int i =1; i<=10; i++)
{
ans = i*input;
System.out.println(i + "*" + input + "=" + ans);
}
return ans;
}
Answer:
C. Object Oriented
Explanation:
In Object Oriented approach to development of information systems, processes and data are handled independently and could be tested as separate modules before the actual development begin.
Hope this helps!