Question:the music is the soul who says this
Answer: Arthur Schopenhauer
Explanation: he says music is the language of feeling and of passion
question answered by
(jacemorris04)
Answer:
Keywords are words or phrases that describe content. They can be used as metadata to describe images, text documents, database records, and Web pages. ... Keywords are used on the Web in two different ways: 1) as search terms for search engines, and 2) words that identify the content of the website.
When you write a program that will run in a GUI environment as opposed to a
command-line environment, some syntax is different.
Explanation:
- GUI (Graphical User Interface) which is the computer user interface uses graphical images to activate and run the applications.
- Command line interface is a interface that is in a text format, which can accept commands for a task.
- So, to program both interface, we need high level program skills with good understanding in programming languages like C++, C etc and algorithms.
- Here, the GUI syntax differs from the command line interface.
Answer:
Explanation:
To write a C program for the above problem:
#include <stdio.h>
int main()
{
// we define the variable to get the annual income
float AnIncome;
// to get the annual income from the user
printf("Enter your annual income here: ");
scanf("%f", &Anincome);
// This is the function to test the annual income
float printIt(x){
//we test the amount inputted now
if (x>= 90000){
printf("Congratulations on your income\n"); // This is the congratulatory message
}
if (x<=0){
// This statement is included to avoid putting zero as annual income
printf("Annual Income cannot be zero or less than zero\n");
}
else{
printf("You WILL make $90,000, if you keep going.\n");
}
}
printIt(AnIncome);
return 0;
}
Attached is the image for a flow chat for the program