Answer:
:)))))))))))))))))))))))))))))))))))))))) thanks
Answer:
Graphical User Interface (GUI)
Explanation:
Graphical User Interface clicking on various icons to perform a certain functionality. GUI is a form of user interface that allows users to interact with electronic devices through graphical icons and audio indicator such as primary notation, instead of text-based user interfaces or command line interface where you would have to type to run the program rather than just click it.
Explanation:
There are various basic computer programming languages and one of them is the C language, the base of many computer lanuages.
The code of finding factorial is written below;
CODE
#include<stdio.h>
int main (void)
{
int i,
int factorial =1,
int input;
printf("Enter a number for finding its factorial: ");
scanf("%d",&input);
if (input == 0)
factorial = 0
eles
for ( i =1; I < = input ;i++)
factorial = factorial*i;
printf("Factorial of given %d is: %d",input,factorial);
return 0;
}
Answer:
"Cloud computing" is the correct answer .
Explanation:
Cloud computing is defined as it provided the resources of the system like data storage etc on the demanding purpose. In cloud computing, it provided the resources without knowing the management. Social media is one of the examples of cloud computing.
- Cloud computing is a model in the computer system that stores the bulk data provided the services to the user on demands.
- Cloud computing acts as a shared pool of virtual resources on the internet.
Answer:
We create a block div with an id="block" and we make the css code
Explanation:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>bloque</title>
<link href="bloque.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--we create the div with the id="block" and a text "hello world"-->
<div id="block"> hello world </div>
</body>
</html>
/* CSS Document */
/* we create the CSS file, then with the same id="block" we're programming in the CSS code*/
#block{
background-color: #ECDEC9;
padding: 20px;
float: left;
font-size: 50px;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Verdana", "sans-serif";
}