Answer:
HTML
Explanation:
HTML stands for <em>"Hypertext Markup Language." </em>It allows the creation of electronic documents which use <em>semantics</em> to indicate a particular text. The different HTML elements are being separated by<em> "angle brackets" </em>in order to make up a tag. These tags are not visible, but they make it possible for the browser's page to be interpreted. 
 
        
                    
             
        
        
        
Answer:
#include <iostream>
using namespace std;
int main()
{
    int userInput = 0;
    do {
        cout << "Enter a number (<100):" << endl;
        cin >> userInput; 
    }
    while(userInput >= 100); 
    cout << "Your number < 100 is: " << userInput << endl;
    return 0;
}
Explanation:
Inside the <em>do part</em>, ask user to enter a number and get that number.
In the <em>while</em>, check if the number is greater than or equal to 100. It is going to keep asking to enter a number until a number that is smaller than 100 is entered.
Print out the number that is smaller than 100.
 
        
                    
             
        
        
        
Answer:
Business information management professionals also perform duties of <u>management</u> information systems professionals
Explanation:
A career in business information requires a diploma or degree in business information management or business administration as well as being required to carry out the tasks of a management information systems (MIS) professional of which the knowledge required on data communications and computers can be obtained by completion of a certification or degree in MIS or an associate degree in information technology. In addition, a strategic management certification can further improve a career in business information management.