Change is what is left over
ex. the cashier tells you "here is your leftover change sir/ma'am "<span />
Answer:her objetive is to impress the public with the poster.
Explanation:
The poster have to be about the music. It is very important for the singer or the festival.
The objetive is going on with the festival, with the music and with the concert’s style.
It’s a personal design. But it have to be original for every design.
Rescaling or if that didn’t help use quicker
The information that a program requires in order to accomplish its objective is called input.
<h3>What is a program?</h3>
A program is a set of instructions by which the computer performs various tasks. The program is a sequence of instructions that are followed by the computer to run. An example is Microsoft Word.
A computer program comes under software. The sequence code of a program that is readable by humans is called source code. The program is run by information that is called input.
Thus, the data that a program needs in order to achieve its goal is referred to as input.
To learn more about the program, refer to the below link:
brainly.com/question/14368396
#SPJ4
Answer:
The answer to this question is "nested".
Explanation:
The answer to this question is nested because, In programming languages, there is a concept of nested if-else statement. In nested if-else statement placing if statement inside another IF Statement that is known as nested If in C Programming.
Example of nested if can be given as
#include <stdio.h>
int main()
{
int a,b,c;
printf("Enter 3 number\n");
scanf("%d",&a);
scanf("%d",&b);
scanf("%d",&c);
if(a>b)
{
if(a>c)
{
printf("A is greater: %d",a);
}
}
else
{
if(b>c)
{
printf("B is greater: %d",b);
}
else
{
printf("C is greater: %d",c);
}
}
return 0;
}
output:
Enter 3 number
4
7
9
c is greater: 9