Contemporary pc operating systems and application software use a Graphical User Interface (GUI), which extensively uses icons, buttons, bars, and boxes to perform tasks.
What is a GUI?
A system of interactive visual components for computer software is known as a GUI (Graphical User Interface).
Compared to MS-DOS and the shell of Unix-like operating systems, a GUI is more user-friendly than a text-based command-line interface.
Objects like icons, cursors and buttons are included in a GUI. Sometimes these elements are enhanced with visual effects like transparency and sounds.
Learn more about Graphical User Interface here: brainly.com/question/14758410
#SPJ4
Answer:
D. Modeling
Explanation:
<em>Modeling</em>: It is a graphical representation, of a concept or system, technique used by software developer to analyze, test, and modify that system or concept.
C, using a firewall make sures no viruses enter your device while setting up the vpn
Answer:
AGGHHHHHHHHHHHHHHHHHHHGHGHHHHHH
Explanation:
Answer:
D. int* ptr;
Explanation:
int *ptr; it is pointer used to hold address of another integer variable.In the options provided we have int ptr that is an integer variable of name ptr.
*int ptr; is wrong this will give error because first we have to write the data type.
int ptr*; is an integer varaible with name ptr*.
int* ptr; is a pointer which can hold the address of another integer varaible.