Answer: Sorry I’m late but the answer is open
Explanation: Edge 2021
<span>In spreadsheet software, use pivot tables to create meaningful data summaries to analyze worksheets containing large volumes of data.</span>
Source from extension , report layout extension for animation are,and graphics interchange format.
<h3>What is the report ?</h3>
It is layout which includes and primarily based totally animations. The complete abbreviation of is Small Web Format.
I assume the solution A.graphics interchange format. is the maximum accurate answer, it could be established from analyzing books and records on internet.
Read more about the animation :
brainly.com/question/18260878
#SPJ4
Answer: Web page
Explanation:
A web page can be defined as a document that is written in an HTML format. This can be viewed using an internet browser. It can be accessed by using the URL address in the address bar. The printers, monitors, copy machines and other necessary machines can be required for creation of web page. The printers are required to get the soft copy of the web page so that a proof reading can be done on the content of the web page, copy machines are used to scan the necessary pictures or text to be pasted on the web page, monitors are used to observe the development of the web page. Plotters are used for printing the graphs that can be scanned for web page.
Answer:
Corrected code is highlighted.
- // Displays five random numbers between
- // (and including) user-specified values
- import java.util.Scanner;
- public class DebugSix4
- {
- public static void main(String[] args)
- {
- int high, low, count = 0;
- final int NUM = 5;
- Scanner input = new Scanner(System.in);
- System.out.print("This application displays " + NUM +
- " random numbers" +
- "\nbetween the low and high values you enter" +
- "\nEnter low value now... ");
- low = input.nextInt()
;
- System.out.print("Enter high value... ");
- high = input.nextInt();
- while(low > high)
- {
- System.out.println("The number you entered for a high number, " +
- high + ", is not more than " + low);
- System.out.print("Enter a number higher than " + low + "... ");
- high = input.nextInt();
-
-
- while(count < NUM)
- {
- double result = Math.random();
- int answer = (int) (result * 10 + low);
- if(answer <= high)
- {
- System.out.print(answer + " ");
- ++count;
- }
- }
- System.out.println("End of Application");
- }
- }
Explanation:
Line 15 misses a semicolon at the end. It is syntax error
Line 17 misses a . between input and nextInt(). Dot syntax is required to invoke method.
Line 18 shows a logical error. it should be low > high so that the program can detect the error where the input value for high variable is lower than the variable low.
Line 30 shows a variable higher which doesn't exist. It should be changed to high.