Answer:
orientation settings
Explanation:
so u can now more about whta u doing
Answer:
#include<iostream>//library inclusion
using namespace std;
int main()
{
int userInput;
do//start of do while loop
{
cout << "Enter a number less than a 100" << endl;
cin >> userInput;
if (userInput < 100) //condition
{
cout << "YOu entered less than a hundred: " << userInput << endl;
}
else
{
cout << "your number is greater than 100" << endl;
}
} while (userInput > 100);//condition for do while
return 0;//termination of int main
}
Explanation:
The program has been commented for you. The do-while loop enters the first loop regardless of the condition. Then after the first iteration, it checks for the condition. If the condition is being met, it will iterate through, again. Otherwise it will break out of the loop and land on the "return 0;" line. Which also happens to be the termination of the program in this case. The if-else condition is used for the user to see when prompted.
D)It did not change the curriculum because Scopes lost the case.
This type of anxiety that is so intense that causes the various fears is called; Panic disorder with agoraphobia
<h3>What is an anxiety disorder?</h3>
An anxiety disorder is defined as a type of mental health condition that makes you respond to certain things and situations with lot of fear.
Now, there are different types of anxiety disorders such as Generalized Anxiety Disorder, Obsessive-Compulsive Disorder, Panic Disorder, Post-Traumatic Stress Disorder (PTSD) e.t.c.
However the one being described in the question is called Panic disorder with agoraphobia
Read more about anxiety disorders at; brainly.com/question/9831289