Answer:
Unlike a conventional camera that captures images on film, a digital camera uses tiny light-sensitive diodes which convert light into electrical charges. The image is recorded as squares or “pixels.” A digital photograph is made up of millions of these pixels.
The answer to your question would be 17y + 7.
To figure this out, you would have to use the distributive property to solve. Multiply 7 by 2y to get 14y.
Next, multiply 7 by 1 to get 7. And since there are like terms, add them together.
14y+3y=17y. And there is still a 7 that we need to put into the equation. Which would be 17y+7
Have a Merry Christmas!!✨❤️
You can find the author and research his/her credibility
You can cross-reference the information to other documentations
You can investigate the credibility of the overall website or community. Teachers like to say that community sites like wikipedia aren't very reliable.
Answer:
public class Main
{
// required method
public static void fizzBuzz(){
// looping through 1 to 100
for(int i = 1; i <= 100; i++){
//if number is evenly divisible by both 3 and 5
if(i%3 == 0 && i%5 == 0){
System.out.println("fiz buzz");
}
// if number is divisible by 3
else if (i%3 == 0){
System.out.println("fizz");
}
// if number is divisible by 5
else if (i%5 == 0){
System.out.println("buzz");
}
// if number is not divisible by both 3 and 5
else {
System.out.println(i);
}
}
}
// main method
public static void main(String[] args) {
//calling function
fizzBuzz();
}
}
Explanation:
Answer:
portable media players, and digital cameras
Explanation: