Answer: AutoComplete only works when there is text.
<span>Artificial Intelligence is a huge field. </span>
Answer:
a firewall is a network security system that monitors and controls incoming and outgoing network traffic based on predetermined security rules
The most prominent
Company name that's most important
Answer:
- #include <iostream>
- using namespace std;
- int main() {
- int number =5;
- if (number>=0&& number <=100){
- cout<<"passed.\n";
- }
- else{
- cout<<"failed.\n";
- }
- return 0;
- }
Explanation:
There where multiple errors in the code given in the questions
Line 1: Missing <iostream>
Line 5: The comparison operator was wrong correction is highlighted
Line 12 Missing closing brace for the main function
All the errors have been fixed and the code above compiles