The process wherein it required the photographer to have a tent or darkroom handy so that chemicals could be mixed quickly and used while still wet is called photographic printing or print processing.
This process uses chemically sensitized paper to produce a final image on paper for viewing.
Answer: I dont know my computer or any of that all I know is that it is a dell
Explanation:
Answer:
// program in java.
import java.util.*;
// class definition
class Main
{// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// object to read input
Scanner scr=new Scanner(System.in);
// ask to enter name
System.out.print("Enter Your name: ");
// read name from user
String NAME=scr.nextLine();
// print message
System.out.println("Greetings,"+NAME);
}catch(Exception ex){
return;}
}
}
Explanation:
Read name from user with the help of scanner object and assign it to variable "NAME".Then print a Greetings message as "Greetings,NAME" where NAME will be replaced with user's input name.
Output:
Enter Your name: Rachel
Greetings,Rachel
Answer:
It helps to give the geographic location of photos.
Explanation:
A geotag is added into the photography information when it's taken. That info is part of the EXIF information of a photo that lists a bunch of data related to the photo, like the camera brand, model, the aperture, the speed, the ISO, and so on.
That's assuming the GPS info is available of course, but if it's taken by a phone, it has the GPS info. Most mid-range and upper-range cameras have it too.
That information is used for example by Google Maps to present photos taken at a specific location.