Answer: web server
Explanation:
When you go to a website, your web browser requests a web page from the web server. For this to happen, the IP address for the webpage has to be identified first, tmaftee which the browser will request appropriate data from the web server.
Such request comes in form of data packet and takes place through HTTP and.utnhas all the necessary information that is needed by the web server for the delivery of the webpage data.
Answer:
False.
Explanation:
The answer is the opposite, low level languagues are intended to allow the programmer full control of the cpu process, and perfomance.
But the disadvantages are: requires high level of expertise, its hard to program complex task.
High level languages allow programmers to concentrate in the task.
Answer:
See explaination
Explanation:
#include<iostream>
#include<stack>
#include <algorithm> // std::make_heap, std::pop_heap, std::push_heap, std::sort_heap
#include <vector> // std::vector
using namespace std;
void StaticArray()
{
unsigned int array[64536];
for(unsigned int i=0;i<64536;i++)
array[i]=i;
}
void Stack()
{
stack<unsigned int> mystack;
for(unsigned int i=0;i<64536;i++)
mystack.push(i);
}
void Heap()
{
unsigned int myints[64536];
for(unsigned int i=0;i<64536;i++)
myints[i]=i;
vector<unsigned int> v(myints,myints+64535);
make_heap (v.begin(),v.end());
push_heap (v.begin(),v.end());
}
int main()
{
StaticArray();
Stack();
Heap();
return 0;
}
The matching tools to the corresponding situation are;
A) Disk Cleaner - Jane notices her computer is slow and needs to delete unwanted files storage.
B) Data Recovery Utility - Phil has a corrupted drive and needs to extract the files he can.
C) Diagnostic Program - Soma wants to check the hardware and software status of the computers at her office.
D) Anti-virus - Zayne needs to scan her computer and remove infected programs.
A) Disk Cleaner; This is a tool that is used to help free up some space on the hard disk. The statement that corresponds to use of disk cleaner is that; Jane notices her computer is slow and
needs to delete unwanted files storage.
B) Data Recovery Utility; This is a tool used to extract data from corrupt storage devices or extract deleted files. The statement that corresponds to use of data recovery utility is; Phil has a corrupted drive and needs to
extract the files he can.
C) Diagnostic Program; This is a software tool that is used primarily to identify or diagnose problems with a particular set of hardware devices. The statement that corresponds to use of diagnostic program is; Soma wants to check the hardware and software status of the computers at her office.
D) Antivirus; This is a security tool used to scan a computer to check for infected files and programs and to remover them. Statement that corresponds to this tool is; Zayne needs to scan her computer and remove infected programs.
Read more about computer diagnostics at; brainly.com/question/8384714