Answer:
Cheaper price.
Explanation:
It's not cheaper price. Most desktops are pretty expensive.
Answer:
An information system is essentially made up of five components hardware, software, database, network and people. These five components integrate to perform input, process, output, feedback and control. Hardware consists of input/output device, processor, operating system and media devices.
Explanation:
Answer:
a)
#include <iostream>
using namespace std;
int main() {
bool a,b,c;
cin>>a>>b;
if(a^b)//X-OR operator in C++.
c=true;
else
c=false;
cout<<c;
return 0;
}
b)
#include <iostream>
using namespace std;
int main() {
bool a,b,c,d;
cin>>a>>b>>c;
if((a^b)^c)//X-OR operator in C++.
d=true;
else
d=false;
cout<<d;
return 0;
}
Explanation:
The above written programs are in C++.There is an operator (^) called X-OR operator in C++.It returns true if the number of 1's are odd and returns false if the number of 1's are even.
In the if statement I have user X-OR operator(^) to find the result and storing the result in another boolean variable in both the questions.
Digital literacy is the term for having knowledge of computers, internet, mobile devices and related technologies.
Answer:
4 GB
Explanation:
<u>Determine the maximal size of a file </u>
100 direct block address
= 100 * 1024 = 102400
One single indirect block address
= 128 * 1024 = 131072
One double indirect block address
= 128 * 128 * 1024 = 16777216
one triple indirect block address
= 128 * 128 * 128 * 1024 = 2147483648
one quadruple indirect block addresses
= 128 * 128 * 128 * 128 * 1024 = 274877906944
maximal size of the file
= ∑ 102400 + 131072 + 16777216 + 2147483648 + 274877906944
= 4GB