answersLogoWhite

0

A GUI, or graphical user interface, is a very important component of a program. It makes the program easy to work with for the user so that they don't have to deal directly with coding.

User Avatar

Wiki User

10y ago

Still curious? Ask our experts.

Chat with our AI personalities

RossRoss
Every question is just a happy little opportunity.
Chat with Ross
ViviVivi
Your ride-or-die bestie who's seen you through every high and low.
Chat with Vivi
MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine

Add your answer:

Earn +20 pts
Q: What is function of GUI?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Basic Math

What makes GUI tools to easier to work with when compared to non GUI tools in visual basic?

GUI use full quality of vedio card and make the programming languages easy to draw perfect images and pictures on desktop.


What is the difference between GUI and cli?

GUI is a Graphical User Interface, which is for making "Windowed" Applications. The CLI is a Command-Line Interface, which is a text prompt in which you can enter specific commands to be executed.


What is a function statement?

A function statement is a block where the function is declared and defined.


What is the difference between function and recursive function?

I will explain in the easiest way the difference between the function and recursive function in C language. Simple Answer is argument of the function is differ but in the recursive function it is same:) Explanation: Function int function(int,int)// function declaration main() { int n; ...... ...... n=function(a,b); } int function(int c,int d) { ...... ...... ...... } recursive Function: int recursive(int,int)// recursive Function declaration main() { int n; ..... ..... ..... ..... n=recursive(a,b); } int recursive(int a,int b) { ..... .... .... .... } Carefully see, In the recursive Function the function arguments are same.


How do you write a function with a variable number of input elements in PHP?

When defining your function, do not put any arguments in the definition (e.g. function myFuntion()). Inside the function, you can use func_num_args() and func_get_arg($number) to get the function's arguments.