Answer:
Low memory?
So to fix the problem you could add more memory to the machine.
Explanation:
Answer:

Explanation:
Considering the number are stored using binary notations.
If there are total 86 bits and 1 bit is used as sign bit. Then in total one can have
bit combinations since a bit can be either stored as 0 or as 1.
Therefore, the largest number that can be stored will be
.
To understand it in better way let's scale down the problem to 3 bits representation. The largest number that can be stored using 3 bits is 111 which in decimal form is 7 and is equal to
.
Answer:
// program in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variable
int inp_month;
cout<<"Enter month:";
// read month
cin>>inp_month;
// if month is february
if(inp_month==2)
cout<<"Number of days in month:28"<<endl;
// if month is 4 or 6 or 9 or 11
else if(inp_month==4||inp_month==6||inp_month==9||inp_month==11)
cout<<"Number of days in month:30"<<endl;
else
// for others month
cout<<"Number of days in month:31"<<endl;
return 0;
}
Explanation:
Read month from user and assign it to variable "inp_month".If month is 2 then there is 28 days in the month.If input month is 4 or 6 or 9 or 11 then there is 30 days in the month.For other month there will be 31 days in month.We assume there is no leap year.
Output:
Enter month:4
Number of days in month:30
Answer:
False
Explanation:
This statement is false because International human rights stores large database so its search functionality is not limited to the website.