Answer:
True
Explanation:
Mass burn technology is a type of waste-to-energy technology commonly used in the mass-burn system, where unprocessed municipal solid waste is burned in a large incinerator with a boiler, to generate heat used in the production of electricity.
YAll don’t tell my cousin I’m hacking her school resources because I got a 0 in a test and she got a 100
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language
Aesthetic elements are the components that are added to the design to be considered pleasing to the eye.
<h3>What are aesthetic elements?</h3>
They are those characteristics of an object that deal with the outward appearance or beauty of an object, that is, they are those elements that make it valuable, appreciable, relevant or transcendent.
To do this, the qualities must be in the design of the object but must also be perceived by the consumer, the aesthetic being what we like to perceive in objects.
Therefore, we can conclude that aesthetic elements are the components that are added to the design to be considered pleasing to the eye.
Learn more about aesthetic elements here: brainly.com/question/24568271