You are on page 1of 6

COMPUTING 

PROJECT
Designed by: Hassan Tariq, Umer Nadeem, Mirsab and Aman Rauf
What is User Interface and Types of User Interfaces
User interface is basically the graphical layout of an application. In simpler words we
can say it allows a user to interact with an application. It includes different GUI
controls such as buttons, images, text and all the other elements a user interacts
with. 
Good interface is also a clear and consistent interface that helps prevents users to
make errors. It is also simple to use and is responsive which means it gives some
kind of feedback.
Bad interface is the opposite of good interface. It is hard to use with clumsy layouts
and is also unresponsive. It has illegible font styles with lack of proper navigations.
Basic GUI Controls
Button: It is used for mainly to generate a click event.
Label: This is used to display some information.
Radio Button: It is used to make the user pick one option.
Check Box: It is similar to radio button but can pick more than one option.
Date Time Picker: As the name states it's use to pick the date and time.
Text Box: It is used to take textual input from the user.
What is a Variable
A variable is nothing but a name given to a storage area. In simpler words we can
say a variable is a data container in the memory of computers.
There are two types of variables one is private and other is public.
Public variables are variables which are accessible to the whole program.
Private variables are variables which are only accessible to a certain part of the
program.
Functions
Function is a type of procedure that returns a value that is passed on the main
procedure to finish execution. A function is similar to a subroutines expect that
function returns a value while subroutines does not. In simpler words a function
commonly carries out some calculations and reports the result to the caller.
subroutines perform a task but do not report anything to the calling program.
Types of functions:
Public: A public function can be accessed from the whole project.
Private: A private function is only applied to a certain part of the project.
Argument: It is a parameter that can pass a value back to the function.
Thank You for your
time

You might also like