Answer:
1: c
2: c
Explanation:
The higher-level the language, the more it resembles human language.
In Python, the print() statement outputs text.
The equipment that processes data in order to create information is called the hardware.
Answer:
Option A i.e., software package.
Explanation:
Prewritten, available on the market the software packages, which not necessitate a company's desire to actually compose its software for certain functionalities, will be applied to as software packages.
A software package is essentially a finite number of programs or software components that function together so that they achieve different tasks and objectives.
Answer:
The answer to this question is given below in the explanation section.
Explanation:
This program is written in C++.
#include <iostream>
using namespace std;
int main()
{
string word;// variable for taking user input
int cond;// to set condition true if user preses the stop and exit from loop
cout<<"Enter word: \n";
cin>>word;
do// start while loop
{
if(word=="stop" || word =="STOP" || word == "Stop")// if user enter word stop, then program exit
{
cond=0;
}
else//otherwise loop continue
{
cout<<" You Entered "+ word +"\n";
cout<<"Enter word: \n";
cin>>word;
cond=1;
}
}
while(cond == 1);// if user don't enter word "stop" loop run continuesly.
cout<<"Program exit";
return 0;
}
Answer:
do what the directions say and you should be able to figure out the answer if not contact me through brainly
Explanation: