Answer:
The correct answer for the given question is " yes".
Explanation:
In the above question the correct answer is yes because, in any social media site. If we like any web page.it will shows the name of person that like the web pages .
For example: if we login in any social side we will see various images,video and story etc.if any user like all. it will show the person name that is liked by them.
So the correct answer for this question is yes.
1. Some computers do not have speaker therefore we connect speakers
2. Some speakers don’t have clear audio so to fix that we connect new ones
3. What do you do if your speaker inside the computer is broken..... connect new speakers
Answer:
<u>Output</u>
Enter first number:
1
Enter second number:
2
Enter third number:
3
Enter fourth number:
4
Average: 2.5
Explanation:
Below is the java program to calculate the average of four numbers:-
import java.util.Scanner;
public class Average {
public static void main(String[] args){
int a,b,c,d;
double average=0.0;
Scanner s=new Scanner(System.in);
System.out.println("Enter first number: ");
a=s.nextInt();
System.out.println("Enter second number: ");
b=s.nextInt();
System.out.println("Enter third number: ");
c=s.nextInt();
System.out.println("Enter fourth number: ");
d=s.nextInt();
average=(a+b+c+d)/4.0;
System.out.println("Average: "+average);
}
}
Read it backwords. it helps look for spelling errors.
...to view and edit two...