Question

In: Computer Science

(True or False) The following is an infinite loop. int main() { bool flag = false;...

(True or False) The following is an infinite loop.

int main()
{
bool flag = false;
int num = 0;
while(!flag);
{
cin >> num;
if(num == -1) {
flag = true;
}
}
return 0;
}

Solutions

Expert Solution

NOTE:If you are stuck somewhere feel free to ask in the comments but do not give negative rating to the question as it affects my answering rights.....I will try to help you out

ans=True

It is definately an infinite loop since the initial value of flag is equal to false,

Now the condition in the while loop states that is the flag is not true which means if flag=false then, iterate

Now some may say that the syntax is wrong since you have a semicolon after the condition in while loop.

When it is not the case we can use such syntax which simply means we dont have the body of the while loop but iterate till the condition becomes false

I know kind of weird but true. It makes no sense to use while loop when there is no body of the loop .But that is what we have in c++

Hence it will iterate till flag becomes true which is never hence infinite iterations.

Also you may think that

{

cin >> num;

if(num == -1) {

flag = true;

} THIS SURELY CORRESPONDS TO THE BODY OF THE LOOP. IT IS NOT!!!

IT IS JUST A BLOCK OF SCOPE SINCE WE ALREADY CONCLUDED THE WHILE LOOP BY PUTTING A SEMICOLON


Related Solutions

Considering the following algorithm: bool thread1 = false; bool thread2 = false; thread1 { While (true)...
Considering the following algorithm: bool thread1 = false; bool thread2 = false; thread1 { While (true) {        while(thread2 == true);           thread1 = true;                  /* start of critical section */          …   ...     /* end of critical section */       thread1 = false                  …   }    }   thread2 { While (true) {        while(thread1 == true);           thread2 = true;                  /* start of critical section */          …          /* end of critical section */       thread2 = false                  …   }    }   Does this...
#include <iostream> #include "lib.hpp" using namespace std; int main() {    // declare the bool bool...
#include <iostream> #include "lib.hpp" using namespace std; int main() {    // declare the bool bool a = true; bool b= true;    //Print the Conjunction function cout<<"\n\nConjunction Truth Table -"<<endl; cout<< "\nP\tQ\t(P∧Q)" <<endl; cout<< a <<"\t"<< b <<"\t"<< conjunction(a,b) <<endl; cout<< a <<"\t"<< !b <<"\t"<< conjunction(a,!b) <<endl; cout<< !a <<"\t"<< b <<"\t"<< conjunction(!a,b) <<endl; cout<< !a <<"\t"<< !b <<"\t"<< conjunction(!a,!b)<<endl;    //Print the Disjunction function cout<<"\n\nDisjunction Truth Table -"<<endl; cout<< "\nP\tQ\t(PVQ)" <<endl; cout<< a <<"\t"<< b <<"\t"<< disjunction(a,b) <<endl;...
#include <iostream> #include "lib.hpp" using namespace std; int main() {    // declare the bool bool...
#include <iostream> #include "lib.hpp" using namespace std; int main() {    // declare the bool bool a = true; bool b= true;    //Print the Conjunction function cout<<"\n\nConjunction Truth Table -"<<endl; cout<< "\nP\tQ\t(P∧Q)" <<endl; cout<< a <<"\t"<< b <<"\t"<< conjunction(a,b) <<endl; cout<< a <<"\t"<< !b <<"\t"<< conjunction(a,!b) <<endl; cout<< !a <<"\t"<< b <<"\t"<< conjunction(!a,b) <<endl; cout<< !a <<"\t"<< !b <<"\t"<< conjunction(!a,!b)<<endl;    //Print the Disjunction function cout<<"\n\nDisjunction Truth Table -"<<endl; cout<< "\nP\tQ\t(PVQ)" <<endl; cout<< a <<"\t"<< b <<"\t"<< disjunction(a,b) <<endl;...
The following is an infinite loop: for (int i = 0; i < 10; i++); System.out.println(i...
The following is an infinite loop: for (int i = 0; i < 10; i++); System.out.println(i + 4); TRUE OR FALSE?
True or False) The following code will output "I was true". bool isGreater(string s1, string s2)...
True or False) The following code will output "I was true". bool isGreater(string s1, string s2) { if(s1 > s2) { return true; } return false; } int main() { if(isGreater("before","back")) { cout << "I was true"; } else { cout << "I was false"; } return 0; }
I need pesodocode of this code. void claimProcess() { int id; bool found = false; system("cls");...
I need pesodocode of this code. void claimProcess() { int id; bool found = false; system("cls"); printf("Enter patient ID for which you want to claim insurrence: "); scanf("%d", & id); int i; for (i = 0; i < patientCount; i++) { if (patients[i].id == id) { found = true; break; } } if (found == false) { printf("subscriber not found\n"); return; } int numOfDaysHospitalized, suppliesCost, surgicalFee, otherCharges; bool ICU; printf("How many days were you haspitalized: "); scanf("%d", & numOfDaysHospitalized); int...
my code is not printing the output #include <stdio.h> #include<stdbool.h> int main(){ // variable declarations   bool...
my code is not printing the output #include <stdio.h> #include<stdbool.h> int main(){ // variable declarations   bool binary[12] = {false,false, false, false,false,false,false,false,false,false,false, false};   int powerTwo[12] = {2048.1028,576, 256, 128, 64, 32, 16, 8 , 4, 2, 1};   int oneZero[9]= {0,0,0,0,0,0,0,0,0};   int tempVal = 0;   double decimal = 0;   int i = 0;   int j = 0;   // Intialization   printf("Starting the CPSC 1011 Decimal to Binary Converter!\n");   printf("Please enter a positive whole number (or EOF to quit): \n");   scanf("%lf", &decimal);   printf("%lf", decimal);...
True or False: It's easy to loop through an array using a for loop in C++...
True or False: It's easy to loop through an array using a for loop in C++ because you can use the .size() function to get the total number of spaces in the array True or False: It's easy to loop through a vector using a for loop in C++ because you can use the .size() function to get the total number of spaces in the vector
C++ Questions: 1. True/False: an int uses 4 bytes in memory on all systems. 2. True/False:...
C++ Questions: 1. True/False: an int uses 4 bytes in memory on all systems. 2. True/False: a double typically offers better precision than a float. 3. True/False: The following two statements are equivalent assuming isPair is a variable of type bool: if (isPair) if (isPair == true) 4. Provide a value we could put in the blank so that the value of x will be 20 after the code snippet. int x = _____; x *= 4; 5. Provide a...
Development is described in three domains. Group of answer choices True False Flag this Question Question...
Development is described in three domains. Group of answer choices True False Flag this Question Question 23 pts The definition of child development is the change in the child that occurs over time. Changes follow an orderly pattern that moves towards greater complexity and enhances survival. Group of answer choices True False Flag this Question Question 33 pts Albert Bandura believed behaviors are inherently attained. Group of answer choices True False Flag this Question Question 43 pts Learning disabilities are...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT