1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Sergio039 [100]
4 years ago
8

What is the statement below an example of?

Computers and Technology
2 answers:
gavmur [86]4 years ago
8 0

Answer:

The answer is C. Letter of interest.

Explanation:

Just took the test.

<u><em>< Sarah ></em></u>

Arte-miy333 [17]4 years ago
6 0
I would assume that your answer would be

E) job description

Hope I helped!!
You might be interested in
In an AND truth table.
wariber [46]

Answer:

1. A

2. B

Explanation:

1. For an AND truth table to output true, all it input must be true. If one or any of the input is false, the output will be false. The truth table for AND is written below:

INPUT      INPUT      OUTPUT

FALSE      FALSE      FALSE

FALSE      TRUE        FALSE

TRUE        FALSE      FALSE

TRUE        TRUE        TRUE

2. The Internal Revenue Service web site is a good search tool when looking for income tax information. The federal government main web site might look like a correct option but one must understand that the federal government will only make the policy while the Internal Revenue Service will implement the policy.

7 0
3 years ago
How to format each dictionary item as a text string in the input file. How to covert each input string into a dictionary item. H
Jet001 [13]

Answer:

- To get the items of a dictionary and print them as a string, use the items() method to unpack the keys and values in a for and print or write them into a file.

for key, value in mydict.items():

   print(f"{key}, {value}")

- To convert string from user input into dictionary;

   mystring = input().split(" ")  #assuming the words are separated by a space.

   from word in mystring:

       mydict[word] = mydict.get(word, 0) + 1

This would use the words in the string as the keys of the dictionary and the count of each word as the respective values.

Explanation:

A dictionary is a data structure in python used to store data in key-value pairs. The items are enclosed in curly braces and can be accessed with the key in dot or bracket notation.

7 0
3 years ago
Suppose that you want to write a program that inputs customer data including name, zipCode, balance, and regionNum. At the end o
Misha Larkins [42]

Answer:

The answer to the given question is option "b".

Explanation:

In this question, we use option b because this option will provide a list of the number of customers in 12 each region owing more than $1,000.  and other option is not correct that will be described as:

  • In the option a, It will provide the balance of the customer.
  • In the option c, It will decrease the list of region number.  
  • In the option d, It will provide the total balance of the regions.  

That's why the answer to this question is option b which is "customerCount[regionNum] = customerCount[regionNum] +1".

3 0
3 years ago
When you combine and and or operators, the ____ operators take precedence, meaning their boolean values are evaluated first.
hodyreva [135]

When you combine and and or operators, the <u>OR</u><u> ope</u>rators take precedence, meaning their boolean values are evaluated first.

<h3>When you use the _ operator only one of the listed conditions?</h3>

Relational comparison operators. Nested if. Using this operator, each Boolean phrase must be true for the entire expression to be evaluated as true. When this operator is used, only one of the listed requirements must be met for the resulting action to take place.

<h3>Which operator has the highest precedence?</h3>

Arithmetic operators have higher importance than relational operators, and relational operators have a higher precedence than assignment operators. Despite this, it is a good idea to place parentheses around an arithmetic expression when its result will be used in a relational expression.

To learn more about Boolean values, refer

brainly.com/question/17933658

#SPJ4

7 0
2 years ago
A. Carly’s Catering provides meals for parties and special events. In Chapter 3, you created an Event class for the company. The
Tpy6a [65]

Answer:

import java.util.Scanner;

public class Event {

  public final static double LOWER = 32.00;

  public final static double HIGHER = 35.00;

  public final static int CUTOFF_VALUE = 50;

  public boolean largeEvent;

  private String eventNum;

  private int totalGuests;

  private double price;

  private double pricePerGuest;

  public Event(String event, int guests) {

      eventNum = event;

      totalGuests = guests;

  }

  public Event() {

      this("A000", 0);

  }

  private Scanner input = new Scanner(System.in);

  public void setEventNumber() {

      System.out.print("Enter the event number? ");

      eventNum = input.nextLine();

  }

  public void settotalGuests() {

      System.out.print("Enter total guests that are attending the event? ");

      totalGuests = input.nextInt();

      if (isLargeEvent())

          pricePerGuest = LOWER;

      else

          pricePerGuest = HIGHER;

      price = totalGuests * pricePerGuest;

      largeEvent = (totalGuests >= CUTOFF_VALUE);

      System.out.println("");

  }

  public boolean isLargeEvent() {

      if (this.gettotalGuests() > 50)

          return true;

      else

          return false;

  }

  public String getEventNumber() {

      return eventNum;

  }

  public int gettotalGuests() {

      return totalGuests;

  }

  public double getPrice() {

      return price;

  }

}

public class EventDemo {

  public static void main(String[] args) {

      Event event1 = new Event();

      Event event2 = new Event();

      Event event3 = new Event();

      System.out.println("Enter Details of event1:");

      event1.setEventNumber();

      event1.settotalGuests();

      System.out.println("Enter Details of event2:");

      event2.setEventNumber();

      event2.settotalGuests();

      System.out.println("Enter Details of event3:");

      event3.setEventNumber();

      event3.settotalGuests();

      display(event1);

      display(event2);

      display(event3);

      System.out.println("Get largest event from event1 and event2 is :");

      display(getLargestEvent(event1, event2));

      System.out.println("Get largest event from event2 and event3 is :");

      display(getLargestEvent(event2, event3));

      System.out.println("Get largest event from event1 and event3 is :");

      display(getLargestEvent(event1, event3));

  }

  public static void display(Event e) {

      System.out.println("Event number: " + e.getEventNumber());

      System.out.println("Total guests: " + e.gettotalGuests());

      System.out.println("Total price: $"

              + String.format("%.2f", e.getPrice()));

      System.out.println("Is Large event: " + e.isLargeEvent());

      System.out.println("");

  }

  public static Event getLargestEvent(Event e1, Event e2) {

      if (e1.gettotalGuests() > e2.gettotalGuests())

          return e1;

      else

          return e2;

  }

}

Explanation:

  • Call isLargeEvent() method to check whether to set pricePerGuest as Lower or Higher.
  • Calculate the price by multiplying the total guests with price per guest.
  • Call gettotalGuests() method to check if the event is large or small.
5 0
3 years ago
Other questions:
  • A(n) ______ database stores data in tables that consist of rows and columns.
    5·2 answers
  • What is the purpose of interrupts? What is a trap? Can traps be generated intentionally by a user program? If so, for what purpo
    13·1 answer
  • Which of the following tasks requires you to use the Tabs option?
    13·1 answer
  • Develop a CPP program to test is an array conforms heap ordered binary tree. This program read data from cin (console) and gives
    9·1 answer
  • A) A cable that is mainly used in the cable television network
    11·1 answer
  • What properties make it suitable to be used for supportive frames
    15·1 answer
  • Default tab stops are set in word every _______ inch. a. ¾ b. ½ c. 1 d. ¼
    7·1 answer
  • Write a program that asks the user to enter a number of seconds. There are 60 seconds in a minute. If the number of seconds ente
    9·1 answer
  • Where are my files shortcut in documents folder.
    14·1 answer
  • Under the fair use doctrine, which group of people are allowed to use certain
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!