Answer:
advantage is:
Data can Synchronize between different devices.
Answer:
Flash BIOS
Explanation:
In flash BIOS, BIOS is stand for basic input output system.
Flash BIOS the process by which we update the PC motherboard , its software .
It is mainly done to increase the performance and capabilities of a computer.
It is in the form of a chip and not in form of hard drive.
After flash BIOS the performance of computer is increases to great extent.
Answer:
1) 2 bits 2) shown in explanation 3) shown in explanation 4) 22 bits per pixel (2.75 bytes)
Explanation:
As a bit is one of two states, 1 or 0, 2 bits is sufficient to represent 4 colors:
00 = color 1
01 = color 2,
10 = color 3,
11 = color 4
This would be the custom type of encoding for that specific image as it only uses 4 colors.
Now to calculate the amount of memory saved, which is quite simple:
24-2=22
So you Would save 22 bits per pixel or 2.75 bytes per pixel.
Answer:
#include <iostream>
using namespace std;
void MinMax(int x,int y,int z,int *max,int *min)
{
int big,small;
if((x>y)&&(x>z)) //to check for maximum value
big=x;
else if((y>x)&&(y>z))
big=y;
else
big=z;
if((x<y)&&(x<z)) //to check for minimum value
small=x;
else if((y<x)&&(y<z))
small=y;
else
small=z;
*max=big; //pointer pointing to maximum value
*min=small; //pointer pointing to minimum value
}
int main()
{
int big,small;
MinMax(43,29,100,&big,&small);
cout<<"Max is "<<big<<"\nMin is "<<small; //big and small variables will get value from method called
return 0;
}
OUTPUT :
Max is 100
Min is 29
Explanation:
When the method is called from first three integers maximum will be found using the conditions imposed and maximum value will be found and similarly will happen with the minimum value.