Answer:
Executing is the correct answer of the following question.
Explanation:
The ALU conducts data calculations, and is part of the system cycle execution process.Information and software engineering is the mechanism by which a software or digital machine conducts a computer program's instructions.The system instructions trigger patterns of basic acts at the performing computer.
Computer programs may be enacted in a cluster phase lacking direct human or a recipient-type instructions in an interpreter's collaborative process.
Answer:
1) press the enter key
2) start typing the new paragraph
Explanation:
did it on edg
Hire more people to help type her documents, or make Batch invoices
Dns is a network of decentralized servers that translate urls (uniform resource locators) into ip address ---- True
<h3>
DNS Stands for :</h3>
DNS, or Domain Name System, translates human-readable domain names (such as www.amazon.com) into machine-readable IP addresses.
<h3>What is the IP address of your DNS server?</h3>
The Domain Name System (DNS) is the name database where Internet domain names are found and translated into IP (Internet Protocol) addresses. The Domain Name System maps the name that users use to look up her website to the IP address that computers use to look up that her website.
<h3>Is DNS the same as IP address?</h3>
Web browsers use Internet Protocol (IP) addresses to interact. DNS translates domain names into IP addresses and allows browsers to load Internet resources. Every device connected to the Internet has a unique IP address that other computers use to find the device.
Learn more about DNS :
brainly.com/question/17952402
#SPJ4
<h2>

</h2>
#include<iostream>
using namespace std;
int main ()
{
float basic, gross, da, hra;
cout<<"Enter basic salary of an employee:";
cin>>basic;
if (basic <25000)
{
da = basic *80/100;
hra = basic *20/100;
}
else if (basic >=25000 & & basic<40000)
{
da = basic *90/100;
hra = basic *25/100;
}
else if (basic>=40000)
{
da = basic *95/100;
hra = basic *30/100;
}
gross = basic + hra + da;
cout<<"\n\t Basic Pay............" <<basic<<endl;
cout<<"\t Dearness Allowance..........." <<da<<endl;
cout<<"\t House Rent Allowance......" <<hra<<endl;
cout<<"\t Gross Salary............." <<gross<<endl;
cout<<"\t - - - - - - - - - - - - - - -" <<endl;
<h2>

</h2>
Enter Basic Salary of an employee : 25000
Basic Pay : 25000
Dearness Allowance : 22500
House Rent Allowance : 6250
Gross Salary : 53750
<h2>

</h2>
<h3>The Expected Output is archived</h3>