Answer:
Performance tab - Memory available
Explanation:
Based on the scenario being described within the question it can be said that the next thing you should check in the task manager would be the memory available in the performance tab. This tells you the amount of RAM memory that certain applications are using. Sometimes applications such as games, may have a memory leak in the coding causing the game to take up an excess amount of memory to run, which would cause the game to crash.
Answer:
Make Durham as default value for the town filed of your database
Explanation:
Default values are the values which is the values assigned initially to the field. if we give some value to the filed it will take that value otherwise default value will be stored for that field
C
because you have to re read it
Legal safeguards to prevent misuse of information stored on computers, particularly information about individual people. In other terms it is security for personal information.
Answer:
Program for measurement in meters and then converts it into miles, feet, and inches:
#include<iostream.h>
#include<conio.h>
void main()
{ float meter, mile, feet, inches;
cout<<"enter meters";
cin>>meters";
feet=meter×3.2808;
mile= meter×0.000621371;
inches= meter×39.3701;
cout<<"Value of"<<meter<<"meter"<<"in feet is"<<feet<<"feet":
cout<<"Value of"<<meter<<"meter"<<"in mile is"<<mile<<"mile";
cout<<"Value of"<<meter<<"meter"<<"in inches is"<<inches<<"inches";
getch();
}