Answer:
The statement to this question can be given as:
Statement:
void printLarger(int sales1, int sales2)//function declaration.
{
//function body
}
Explanation:
Function is a group of organized code that is used to perform some specific task.
Syntax:
return-type functionname(parameters1,....parameter n)
{
//function body.
}
In the above function definition we define a function that is "printLarger". This function accepts two integer parameters that is "sales1 and sales2" and does not return any value because we use return-type void.
<span>
In quantities of data,
"kilo" = 2^10 = 1,024
"mega" = 2^20 = 1,048,576,
"giga" = 2^30 = 1,073,741,824 .
<span> <span /></span></span>
<span>1 gig = 1,024 megs<span><span /></span></span>
Answer:
#program in Python
#variables
given="John"
middle="Fitzgerald"
family="Kennedy"
#find first character of each variable and ptint
print("{}.{}.{}".format(given[0],middle[0],family[0]))
Explanation:
Declare and initialize variables "given" with "John","middle" with "Fitzgerald" and "family" wit "Kennedy".Print the first character of each variables separated by a "." in between of each character.
Output:
J.F.K
Answer:
See attached pictures.
Explanation:
See attached picture for code with explanation.
Answer:
Suppose you want to access brainly.com. You type that into your favorite browser and hit enter. Your computer does not know how to get to brainly.com. This is the DNS comes in. The DNS looks for brainly.com and maps it to an IP address (eg. 104.17.74.91). Your computer can easily find 104.17.74.91 in order to connect you to questions and answers on a variety of topics.