No its actually used for looking up concerns, questions, or rumours
Answer:
Decoding is the technique used to convert an electrical signal into an understandable message. This process is used in receiver side.
Explanation:
In telecommunication, Decoder is used to to interpret the message sent by transmitter in to an understandable message. This process is called decoding
Answer:
Dots per Inch
Explanation:
Dots per Inch (DPI) in print is dependent on how you want your final image to look. It is the amount of resolution in picture. The logic is pretty simple. The more you are able to squeeze your dots per inch in an image, the more the image becomes crisp and sharp and vice versa. Consequently, it will result to a high resolution which will again translate to more sharpness.
Answer:
The IP stands for intellectual property. And the information ethics related to the IP are the transaction privacy, piracy and the privacy for the ease and giveaways, investigation, namelessness. The trade details must be kept private, and not disclosed to anybody, and the piracy is never allowed. Also, the privacy of all sorts must be ensured for ease and giveaways, surveillance, and confidentiality.
Explanation:
Please check the answer section.
Answer:
// here is code in java.
import java.util.*;
class Solution
{
// main method of class
public static void main (String[] args) throws java.lang.Exception
{
try{
// declare variable
double caffeine;
// scanner object to read input from user
Scanner scr=new Scanner(System.in);
System.out.print("Enter the initial amount of caffeine:");
// read the initial amount of caffeine
caffeine=scr.nextDouble();
// calculate amount of caffeine after 6,12,18 hours
for(int i=1;i<=3;i++)
{
System.out.println("After "+ i*6+" hours:"+(caffeine/2)+" mg");
// update the caffeine after every 6 hours
caffeine=caffeine/2;
}
}catch(Exception ex){
return;}
}
}
Explanation:
Create a variable "caffeine" to store the initial amount of caffeine given by user. Run a loop for three time, it will calculate the amount of caffeine left after every 6 hours.First it will give the amount of caffeine left after 6 hours, then caffeine left after 12 hours and in last caffeine after 18 hours.
Output:
Enter the initial amount of caffeine:100
After6 hours:50.0 mg
After12 hours:25.0 mg
After18 hours:12.5 mg