Answer:
Comfortable
Explanation:
The most important criteria of a good tracing method is that it is comfortable. because, if you are not comfortable you cannot pay head to their work properly.You cannot made decision and you can also not to recognize your improvements during tracking.
Execute this assignment from Scratch in the following way
Explanation:
1.For each thread, first Scratch sets the 'active thread' to that thread. Then, it executes each block one by one in the stack for the active thread. It will execute the entire stack all in one go if it can.
2.The Hide block is a Looks block and a Stack block. If the block's sprite is shown, it will hide the sprite — if the sprite is already hidden, nothing happens. This block is one of the simplest and most commonly used Looks blocks.
3.Scratch is used in many different settings: schools, museums, libraries, community centers, and homes.
4.Mitch Resnik, the creator of the super-simple Scratch programming language and head of the Lifelong Kindergarten group at the MIT Media Lab, gave a TEDx talk about the value of coding and computer literacy in early education.
5.
1. C. you are reusing, because instead of throwing the couch away, you gave it to someone who will "reuse" it.
2. I'm not sure, but I would say B. recycling. Repurposing things that you have no use for limits how much waste there is and how much must be manufactured. This reduces pollution and limits the burden on the environment.
3. A. is the answer, it is pre-consumer waste because the waste is from the manufacturing process. The waste is not from the consumer(whoever buys the product) so not B. and I doubt it is C. or D.
4. A. is the answer. Burning waste produces greenhouse gasses. B. can't be true, because the gasses from the burning are not the raw material. C. and D. couldn't be the case because water was not present in the disposal.
5. is A. compost center because they only take green waste.
6. A. the orange peal is the only option that is biodegradable.
Answer:
Following are the statement in C++ language :
#include <iomanip> // header file
using namespace std; // namespace
int main() // main method
{
int x1,x2,x3,x4,x5; // variable declaration
cout<<" Enter the 5 sucessive integer:";
cin>>x1>>x2>>x3>>x4>> x5; // taking 5 input from user
cout<<right;
// prints each of its own line and form a right-justified
cout<<setw(5)<< x1 << "\n" << setw(5) << x2 << "\n" <<setw(5) << x3 << "\n" << setw(5) << x4 << "\n" << setw(5) << x5 << "\n";
return(0);
}
Output:
Enter the 5 sucessive integer: 45
23
445
6
8
45
23
445
6
8
Explanation:
Description of program is given below
- Declared a 5 integer value x1,x2,x3,x4,x5 respectively.
- Read the 5 integer value from user by using cin funtion.
- Finally Print these 5 value in its own line and form a right-justified by using setw() function on it