Answer:
refined view is the outcome of exposure value bracketing
Explanation:
sometimes we take more than one photo at different angles to get an insight to an image. It refined the image information and a detail overview can be achieved from exposure value bracketing. The advantages of exposure value bracketing are:
- proper exposure of pictures
- can catered the low light situations effectively
- refined results
- explanatory view capturing
The dis-advantages of exposure value bracketing are:
- huge database as we are taking multiple shots
- Over-exposing the surroundings
Answer:
In Python:
def decimalToBinary(num):
if num == 0:
return 0
else:
return(num%2 + 10*decimalToBinary(int(num//2)))
decimal_number = int(input("Decimal Number: "))
print("Decimal: "+str(decimalToBinary(decimal_number)))
Explanation:
This defines the function
def decimalToBinary(num):
If num is 0, this returns 0
<em> if num == 0:
</em>
<em> return 0
</em>
If otherwise
else:
num is divided by 2, the remainder is saved and the result is recursively passed to the function; this is done until the binary representation is gotten
return(num%2 + 10*decimalToBinary(int(num//2)))
The main begins here.
This prompts the user for decimal number
decimal_number = int(input("Decimal Number: "))
This calls the function and prints the binary representation
print("Decimal: "+str(decimalToBinary(decimal_number)))
Answer: Desktop and laptop computers require an operating system with a file __Management________ system that allows users to view and manipulate data files.
Answer:
High performance
Explanation:
If you are always plugged in to a wall then there is no need to save energy as a laptop generally only pulls up to 75w from a wall.
Answer:
#include <iostream>
using namespace std;
int main()
{
cout<< rand() % 50 + 100 <<endl;
cout<<rand() % 50 + 100 <<endl;
return 0;
}
Explanation:
The rand() gives you a random number. If you use rand() % 50, it will give you a random number between 0 and 49. Since we are required to have the numbers between 100 and 149, add 100 to this expression. This way, you will have a random number between 100 and 149. Type this expression two times and use "endl" to end with a new line.