Betty has a number of report templates at her disposal filed in folders to respond to her boss's requests. In order to know where to find a report that meets the needs of her manager, she first needs to know what category of report will satisfy the request.?Betty's manager wants to just see the total figures of the sales without much of the supporting details. In which of the following folders is she likely to find this category of report?a. ?Summary reports
b. ?Exception reports
c. ?Detail reports
d. ?Control reports

Answers

Answer 1
Answer:

Answer:

a. ​Summary reports

Explanation:

​Summary reports -

It is a form of tabular report , which consists of rows and column of data , is referred to as summary report .

It acts as a source for the components of dashboard .

As summary report enables to create a chart , view subtotal etc .

The subtotal value can be viewed from this type of report for a particular field , in order to generate a hierarchical list .

Hence , from the given scenario of the question ,

The correct answer is summary reports .


Related Questions

Who are the people who direct traffic, give speeding tickets, fight crime, and even keep schools safe?
The quote, "Where you tend a rose, my lad, a thistle cannot grow," referred to --- A. Dickon teaching Colin the correct way to plant and weed the rosebushes in the secret garden B. Colin learning to think positive thoughts instead of discouraging and fearful ones C. Mrs. Sowerby telling Mrs. Craven that Colin needed sympathy, love, and attention to improve D. Ben explaining that roses ruin the soil so that other plants cannot thrive
The term “gigahertz” refers to how many cycles per second? One thousand One hundred One billion One million
Media refers to a worldwide educational movement that aims to teach to people to understand how the mediaaffect both individuals and society as a whole.literacyconsolidationsocializationeffectsNEXT QUESTIONREAD NEXT SECTIONASK FOR HELPTURN IT IN2014 Glynlyon, Inc. All rights reserved
This toolbar has icons representing the application's basic operations such as save and copy.Drawing,Formatting,standard,or task?

Write a method that takes three numerical String values and sums their values. For example, the call sumStrings("1", "5", "7") would return 13. This is done in Java.

Answers

Answer:

public static int sumStrings(String s1, String s2, String s3) {

       int i1 = Integer.parseInt(s1);

       int i2 = Integer.parseInt(s2);

       int i3 = Integer.parseInt(s3);

       

       int sum = i1 + i2 + i3;

       return sum;

   }

Explanation:

- Create a method called sumStrings that takes three strings

- Convert each string to integer using Integer.parseInt() method

- Sum the strings

- Return the result

Final answer:

To write a method in Java that takes three numerical String values and sums their values, you can follow these steps.

Explanation:

To write a method in Java that takes three numerical String values and sums their values, you can follow these steps:

  1. Convert the String values to integers using the Integer.parseInt() method.
  2. Add the three converted integers together.
  3. Return the sum as the result of the method.

Here is an example implementation of the sumStrings method:

public class SumCalculator {
  public static int sumStrings(String num1, String num2, String num3) {
      int sum = Integer.parseInt(num1) + Integer.parseInt(num2) + Integer.parseInt(num3);
      return sum;
  }

  public static void main(String[] args) {
      String num1 = "1";
      String num2 = "5";
      String num3 = "7";
      int total = sumStrings(num1, num2, num3);
      System.out.println("The sum is: " + total);
  }
}

Learn more about Summing numerical String values here:

brainly.com/question/31234233

#SPJ3

What output is displayed when the code that follows is executed? HashMap sales = new HashMap<>(); sales.put("January", 389.45); sales.put("February", 432.89); sales.put("March", 275.30); for (Map.Entry sale : sales.entrySet()) { System.out.println(sale.getKey() + ": " + sale.getValue()); }

Answers

Answer:

March: 275.30

January: 389.45

February: 432.89

Explanation:

The code to be executed is a Java code. Since the For loop used is based on Sale, when the code is complied it will print the output in the order of sale as below:

March: 275.30

January: 389.45

February: 432.89

The taskbar can display a maximum of ten items. true, false

Answers

False I know for a fact Windows 10 can display more because the bar is smaller. Could be ten on others tho not sure.

False is your answer.

Using a movie or documentary (fictional or real), explain what the production phase of the motion picture might look like. What events might take place? What might the different people on the production team do? Make sure to include information about all major team members as well as actors/actresses. Your response should be detailed and should integrate the information from the entire lesson.

Answers

Answer:

PRODUCER

This person is essentially the group leader and is responsible for managing the production from start to finish. The producer develops the project from the initial idea, makes sure the script is finalized, arranges the financing and manages the production team that makes the film

The director is primarily responsible for overseeing the shooting and assembly of a film. While the director might be compared to a novel's author as a film's primary visionary, he or she would not be able to make the film without the help of numerous other artists and technicians.

In fact, the notion of the director as an author is misleading because it assumes the director, like an author, does everything. A director works at the center of film production, but is inextricably linked with dozens of other people who get the job done together.

SCREENWRITER

While the dialogue in a film may seem natural to the viewer, a writer carefully crafts it; however, the screenwriter does far more than provide dialogue for the actors. He or she also shapes the sequence of events in a film to ensure that one scene transitions to the next so that the story will unfold logically and in an interesting way.

Like the producer, the screenwriter's role is generally overlooked by the movie-going public, yet is essential to the completion of any film. If there is no script, there is no movie.

PRODUCTION DESIGNER

Before one inch of film is shot, the production designer is the first artist to translate the script into visual form. He or she creates a series of storyboards that serve as the film's first draft.

A storyboard is a series of sketches on panels that shows the visual progression of the story from one scene to the next. Creating this sketch of the film on storyboards also ensures the visual continuity of the film from start to finish. Storyboards serve as the director's visual guide throughout the production and will be a template to follow during the editing process.

PRODUCTION DESIGNER

Before one inch of film is shot, the production designer is the first artist to translate the script into visual form. He or she creates a series of storyboards that serve as the film's first draft.

A storyboard is a series of sketches on panels that shows the visual progression of the story from one scene to the next. Creating this sketch of the film on storyboards also ensures the visual continuity of the film from start to finish. Storyboards serve as the director's visual guide throughout the production and will be a template to follow during the editing process.

Explanation:

Given that a function receives three parameters a, b, c, of type double, write some code, to be included as part of the function, that checks to see if the value of a is 0; if it is, the code prints the message "no solution for a=0" and returns from the method.

Answers

Answer:

Following are the code to this question:

if(a == 0)  //defining condition

{

System.out.print("no solution for a=0"); //print value

}

Explanation:

In question, it is declared, that a method defined with three double parameters, that are "a, b, and c", inside this method a code is defined, that checks the given value.

  • In the method, a conditional statement defined, in the if block, it checks the value of a is equal to 0.
  • If this condition is true, it will use the print method, inside the method, a message is printed, that is "no solution for a=0".

Requirement types discussed during software development include _____.A) functional and color scheme
B) nonfunctional and code style
C) constraint and nonfunctional
D) fashionable and functional.

Answers

Answer:

this is a confusing question cuz its normally functional and non-functional but imma have to go with C

~batmans wife dun dun dun....