Answer:
1. physical hazard
2. psychological hazard
3. biological hazard
4. physical and/or psychological hazard
5. chemical hazard
6. physical hazard
7. chemical hazard
8. biological hazard
Explanation:
You do the rest
Answer:
There needs to be an odd number of 1 bits
Explanation:
In memory, parity checking method is used to test the memory. There are two parity conditions. Either the parity is even or the parity is odd.
Odd parity means, number of 1's in eight bits of data. If the number 1's are odd it means parity is odd. In case of the memory testing result the parity should be odd.
So, In case of Parity of RAM, the parity should be odd, if the data is stored in the RAM.
Answer:
x is assigned "5", y is assigned "28", and ch is assigned "$"
Explanation:
#include <stdio.h>
#include <iostream>
using namespace std;
int main()
{
int x,y;
char ch;
x = 5;
y = 28;
ch = 36;
cout<<x<<endl<<y<<endl;
cout<<ch;
return 0;
}
Illegal access to a system
Answer:
Cache is the fastest and most expensive, RAM is slower and less expensive, and virtual memory is the slowest and least expensive type.
Explanation: