Small programs are shortcuts that are displayed as graphics pinned to your desktop are called_____

Answers

Answer 1

Answer:

Taskbar or they are pinned to desktop

Explanation:

Answer 2

Answer:

Icons

Explanation:


Related Questions

In a scenario where Nancy and Matthew are using public key encryption, which keys will Nancy have the ability to see in her public keyring (--list-keys)?

Answers

Answer:

Private key

Explanation:

From the question, we understand that the encryption type is a public encryption.

For better analysis, I will create the following scenario.

Encryption keys are stored in an encrypted form in a PGP (i.e. Pretty Good Privacy). This PGP homes the public and the private keys.

However, for Nancy to access the public keyring, she needs the private keys.

If by chance she lost/forgot the private keys, she will not be able to decrypt any information she receives.

Hence, the solution to this question is: private key

How many thermal performance control modes are there in Alienware Area 51m to support different user scenarios?

Answers

Answer:

3

Explanation:

The Dell Alienware Personal Computers refers to a range of PC's which are known for their strength, durability and most commonly their graphical performance. Th ecomputwrs are built to handle very high and intensive graphic demanding programs including gaming. The Alienware area 51m is a laptop which has been loaded with the capability and performance of a high graphic demanding desktop computers boasting massive memory size and greater graphic for better game play and high graphic demanding programs.

The laptop features an improved thermal and performance capability to handle the effect of different graphic demanding programs. Therfore, the laptop has 3 different thermal a d performance system modes which altenrtes depending on graphic demands in other to handle intensive demands.

It should be noted that the number of thermal performance mode is 5.

From the complete information, it should be noted that there are five thermal performance control modes are there in Alienware Area 51m to support different user scenarios.

The modes are:

Full speed mode.Performance mode.Balanced mode.Quiet mode.Cool mode.

In conclusion, the correct option is 5

Learn more about modes on:

https://brainly.com/question/25604446

Post a Python program that accepts at least two values as input, performs some computation and displays at least one value as the result. The computation must involve calling one of the predefined functions in the math library. Include comments in your program that describe what the program does. Also post a screen shot of executing your program on at least one test case.

Answers

Answer:

In Python:

#The program calculates and prints the remainder when num1 is divided by num2 using the fmod function

import math

num1 = int(input("Input 1: "))

num2 = int(input("Input 2: "))

print(math.fmod(num1, num2))

Explanation:

This program begins with a comment which describes the program function

#The program calculates and prints the remainder when num1 is divided by num2 using the fmod function

This imports the math module

import math

The next lines get input for num1 and num2

num1 = int(input("Input 1: "))

num2 = int(input("Input 2: "))

This calculates and prints the remainder when num1 is divided by num2

print(math.fmod(num1, num2))

Which feature in Access is used to control data entry into database tables to help ensure consistency and reduce errors?

O subroutines
O search
O forms
O queries

Answers

The answer is: Forms

To control data entry into database tables to help ensure consistency and reduce errors will be known as forms in data entry.

What are forms in data entry?

A form is a panel or panel in a database that has many fields or regions for data input.

To control data entry into database tables to help ensure consistency and reduce errors will be forms.

Then the correct option is C.

More about the forms in data entry link is given below.

https://brainly.com/question/10268767

#SPJ2

does anyone know what functions to write for the rock paper scissors app in code.org (Lesson 4: parameters and return make)?

Answers

Answer:

Explanation:

Based on the example of the app on the website there are two main functions that are needed. The first is the updatecomputer_resultbox function which creates the choice for the computer in the game whether it is rock, paper, or scissors. The second function would be the calculate_winner function which compares your choice with the computers choice and decides on who won. The rest of the needed functions are the event functions to handle the clicks on each one of the games buttons such as play, rock, paper, scissor, and end game/replay.

The goal of this project is to become familiar with basic Python data processing and file usage. By the end of this project, students will be able to generate a small program to generate simple reports on text and numerical data.The year is 2152. You have been hired by a major robotic pilot training and robot design contract firm to process the data from their most recent field tests in multiple training sites. To make this process easier on yourself, you have decided to write a Python script to automate the process. The company wants the following data on their robots for the training sites:
1) The information of the best pilot, as quantified by their field test average
2) The average performance of each field test
3) A histogram of robot colors from a giving training site
4) The average first and last name lengths, rounded do

Answers

Answer:

Explanation:

The question does not provide any actual data to manipulate or use as input/guidline therefore I have taken the liberty of creating a function for each of the question's points that does what is requested. Each of the functions takes in a list of the needed data such as a list of field test averages for part 1, or a list of field tests for part 2, etc. Finally, returning the requested output back to the user.

import matplotlib.pyplot as plt

from collections import Counter

def best_pilot(field_test_average):

   return max(field_test_average)

def find_average(field_test):

   average = sum(field_test) / len(field_test)

   return average

def create_histogram(field_test_colors):

   count_unique_elements = Counter(field_test_colors).keys()

   plt.hist(field_test_colors, bins=len(count_unique_elements))

   plt.show()

def average_name_lengths(first, last):

   first_name_sum = 0

   last_name_sum = 0

   count = 0

   for name in first:

       first_name_sum += len(name)

       count += 1

   for name in last:

       last_name_sum += len(name)

   first_name_average = first_name_sum / count

   last_name_average = last_name_sum / count

   return first_name_average, last_name_average

How many different values can a bit have?
16
2
4.
8

Answers

Answer:

A bit can only have 2 values

A Queue can be used to implement a line in a store. If George, Judy, John, and Paula get in line and the cashier checks out two customers. Who is the person in line that would be checked out next? (This is a so-called "peek" operation on queues). Group of answer choices Return John, and remove him from the line. Return John Return John and Paula

Answers

Answer:

Explanation:

The following code is written in Java. It creates a Queue/Linked List that holds the names of each of the individuals in the question. Then it returns John and removes him and finally returns Paula and removes her.

package sample;

import java.util.*;

class GFG {

   public static void main(String args[])

   {

       Queue<String> pq = new LinkedList<>();

       pq.add("John");

       pq.add("Paula");

       pq.add("George");

       pq.add("Judy");

       System.out.println(pq.peek());

       pq.remove("John");

       System.out.println(pq.peek());

       pq.remove("Paula");

   }

}

Which of these are examples of how forms are
used? Check all of the boxes that apply.
to input patient information at a doctor's office
O to store thousands of records
to check out books from a library
to choose snacks to buy from a vending
machine

Answers

Answer:to input patient information at a doctors office

To check out books from a library

To choose snacks to buy from a vending machine

Explanation:

A. To input patient information at a doctor's office, C. To check out books from a library, and D. To choose snacks to buy from a vending machine are examples of how forms are used. Therefore option A, C and D is correct.

Forms are used in various settings and scenarios to collect and manage data efficiently.

In option A, forms are utilized at doctor's offices to input and record patient information, streamlining the registration and medical history process.

In option C, library check-out forms help manage book borrowing, recording details like due dates and borrower information. Option D showcases how vending machines use forms to present snack options, allowing users to make selections conveniently.

All these examples demonstrate the versatility of forms as tools for data collection, organization, and user interaction, contributing to smoother operations and improved user experiences in different domains.

Therefore options A To input patient information at a doctor's office, C To check out books from a library, and D To choose snacks to buy from a vending machine are correct.

Know more about vending machines:

https://brainly.com/question/31381219

#SPJ5

In this lab, you use a counter-controlled while loop in a Python program. When completed, the program should print the numbers 0 through 10, along with their values multiplied by 2 and by 10. The data file contains the necessary variable declarations and output statements. Instructions Make sure the file Multiply.py is selected and opened. Write a counter-controlled while loop that uses the loop control variable (numberCounter) to take on the values 0 through 10. In the body of the loop, multiply the value of the loop control variable by 2 and by 10. Remember to change the value of the loop control variable in the body of the loop. Execute the program by clicking the Run button at the bottom of the screen.

Answers

Answer:

In Python:

numberCounter = 0

print("Number\t\tTimes 2\t\tTimes 10")

while numberCounter<=10:

   print(str(numberCounter)+"\t\t"+str(numberCounter*2)+"\t\t"+str(numberCounter*10))

   numberCounter+=1

Explanation:

The required files are not attached to this question. So, the solution I provided is from scratch

This initializes numberCounter to 0

numberCounter = 0

This prints the header

print("Number\t\tTimes 2\t\tTimes 10")

This loop is repeated while numberCounter is not above 10

while numberCounter<=10:

This prints numberCounter along with its product by 2 and 10

   print(str(numberCounter)+"\t\t"+str(numberCounter*2)+"\t\t"+str(numberCounter*10))

   numberCounter+=1

Below is the required Python code for the program.

Python

Program:

head1 = "Number: "

# Multiply by 2

head2 = "Multiplied by 2: "

# Multiply by 10

head3 = "Multiplied by 10: "

# Constant utilized to control loop

NUM_LOOPS = 10

print("0 through 10 multiplied by 2 and by 10" + "\n")

# Initialize loop control variable

x = 0

while(x<11):

# Print the values

   print(head1 + str(x))

   print(head2 + str(x*2))

   print(head3 + str(x*10))

   # Write your counter controlled while loop

   # Next number

   x += 1

Program explanation:

Start code.Constant utilized to control loop.Initialize loop control variable.Multiply by 2.Multiply by 10.Write your counter controlled while loop.

Output:

Please find below the attachment of the program output.

Find out more information about Python here:

https://brainly.com/question/26497128

A realtor is studying housing values in the suburbs of Minneapolis and has given you a dataset with the following attributes: crime rate in the neighborhood, proximity to Mississippi river, number of rooms per dwelling, age of unit, distance to Minneapolis and Saint Paul Downtown, distance to shopping malls. The target variable is the cost of the house (with values high and low). Given this scenario, indicate the choice of classifier for each of the following questions and give a brief explanation.
a) If the realtor wants a model that not only performs well but is also easy to interpret, which one would you choose between SVM, Decision Trees and kNN?
b) If you had to choose between RIPPER and Decision Trees, which one would you prefer for a classification problem where there are missing values in the training and test data?
c) If you had to choose between RIPPER and KNN, which one would you prefer if it is known that there are very few houses that have high cost?

Answers

Answer:

a. decision trees

b. decision trees

c. rippers

Explanation:

a) I will choose Decision trees because these can be better interpreted compared to these other two KNN and SVM. using Decision tress gives us a better explanation than the other 2 models in this question.

b)  In a classification problem with missing values, Decision trees are better off rippers since Rippers avoid the missing values.

c) Ripper are when we know some are high cost houses.

Select the correct answer.
Which statement is true about informal communication?
A.
Informal communication consists of centralized patterns of communication.
B.
It is any form of communication that does not use a written format.
C.
Physical proximity of people favors the occurrence of informal communication.
D.
It exists only when there is no formal communication channel in the organization.

Answers

hey,i’m pretty sure it’s D:)

Answer:

D.

It exists only when there is no formal communication channel in the organization.

Explanation:

There is a file of a few Sean Connery movies on the internet. Each entry has the following form:
Name of Movie
Release Date
Running Time (maybe)
Several names of some of the stars
A separator line (except after the last movie)
Your assignment is: for each movie,
1. read in the Name, Release Date, the stars
2. Sort the movies by Movie Name alphabetically,
2. Sort the stars alphabetically, by last name
3. Print the Movie Name, Release Date, Running Time (if there) and Print the list of stars (alphabetically, by last name).
Click here to see the Input File
Some Sample Output:
Darby O'Gill and the Little People
1959
RT 93 minutes
Sean Connery
Walter Fitzgerald
Kieron Moore
Janet Munro
Jimmy O'Dea
Albert Sharp
Estelle Winwood

Answers

Answer:

filename = input("Enter file name: ")

movie_container = list()

with open(filename, "r") as movies:

   content = movies.readlines()

   for movie in content:

       holder = movie.split("\t")

       movie_container.append((holder[0], holder[1], holder[2], holder[3]))

movie_container = sorted(movie_container, key= lambda movie: movie[0])

for movie in movie_container:

   movie_stars = movie[3].split(",")

   name_split = [names.split(" ") for names in movie_stars]

   movie_stars.clear()

   name_split = sorted(name_split, key= lambda names: names[1])

   for name in name_split:

       full_name = " ".join(name)

       print( full_name)

       movie_stars.append(full_name)

   movie[3] = movie_stars

print(movie_container)

Explanation:

The python code uses the open function to open and read in the input file from the standard user prompt. The title of the movies and the stars are all sorted alphabetically and display at the output.

Uma wants to create a cycle to describe the seasons and explain how they blend into each other. Which SmartArt diagram would work best for this?

Answers

Answer: SmartArt offers different ways of visually presenting information, using shapes arranged in different formations.

Explanation:SmartArt offers different ways of visually presenting information, using shapes arranged in different formations. The SmartArt feature also allows you to preview different SmartArt formations, making it very easy to change shapes and formations.

PLEASE HELP How have phones made us spoiled? How have phones made us unhappy?

Answers

phones have made us spoiled because we have everything at our fingertips. we get what we want when we see something online and we want to get it all we do is ask and most of us receive. phone have made us unhappy mentally and physically because we see how other people have it like richer for instance and we want that and we get sad about weird things because of what we see like other peoples body’s how skinny someone is and how fat someone is it makes us sad because we just want to be like them.

All of the following statements about cookies are true except: Question 16 options: cookies can be used to create cross-site profiles of users. the data typically stored in cookies includes a unique ID and e-mail address. cookies make shopping carts possible by allowing a site to keep track of a user's actions. the more cookies are deleted, the less accurate ad server metrics become

Answers

Answer:

the data typically stored in cookies includes a unique ID and e-mail address.

Explanation:

A cookie can be defined as a text file created by a website and it comprises of small amounts of data such as username and password.

This ultimately implies that, this small piece of data known as cookies is a unique identification number saved by a web browser and as such are typically used to identify a host computer.

All of the following statements about cookies are true;

I. Cookies can be used to create cross-site profiles of users.

II. Cookies make shopping carts possible by allowing a site to keep track of a user's actions.

III. The more cookies are deleted, the less accurate ad server metrics become.

A service specialist from your company calls you from a customer's site. He is attempting to install an upgrade to the software, but it will not install; instead, it he receives messages stating that he cannot install the program until all non-core services are stopped. You cannot remotely access the machine, but the representative tells you that there are only four processes running, and their PID numbers are 1, 10, 100, and 1000. With no further information available, which command would you recommend the representative run?

Answers

Answer:

kill 1000

Explanation:

Which field type will you select when creating a new table if you require to enter long text in that field?
Question 4 options:


Text


Currency


Memo


All of the above

Answers

A message should be succinct and to the point. Usually, one or two brief paragraphs are sufficient, depending on the message. Keep the memo to one page, even if you need to compose a longer statement. Thus, option C is correct.

What memo require entering long text in that field?

The term “CLOB” (character large object) refers especially to text. For binary data, a BLOB (binary large object) is specially specified.

One- to two-page memos are more typical and are more likely to achieve the writer's goals, even though memos can be ten pages or more.

Memos are written in paragraph style without indentations and have headings for each part. Every memo is typed with one space between each line and two spaces between paragraphs.

Therefore, For more details on the Long Text features, the Memo data type is now referred to as “Long Text.”

Learn more about memo here:

https://brainly.com/question/25130307

#SPJ6

Question #3..plz help

Answers

What is question number 3

Charging current being returned to the battery is always measured in DC Amps. true or false

Answers

Answer:Charging current being returned to the battery is always measured in DC Amps. Electrical energy will always flow from an area of low potential to an area of high potential. ... One volt is the pressure required to force one amp of current through a circuit that has 1 Ohm of resistance.

Explanation:

Select the correct answer.
David gets a new job as a manager with a multinational company. On the first day, he realizes that his team consists of several members from diverse cultural backgrounds. What strategies might David use to promote an appreciation of diversity in his team?
A.
Promote inclusion, where he can encourage members to contribute in discussions.
B.
Create task groups with members of the same culture working together.
C.
Allow members time to adjust to the primary culture of the organization.
D.
Provide training on the primary culture to minority groups only if there are complaints against them.

Answers

C because it’s the smartest thing to do and let the other people get used to each other

Answer:

A.

Explanation:

If we were to go with B, then it would exclude others from different cultures, doing what he is trying to.

If we went with C, then they wouldn't get along very well, because no one likes to be forced into a different religion.

If we went with D, he wants an appreciation, so training some people to change religions if there are complaints, is not going to cut it. Therefore, we have A. Which I do not need to explain.

Write a program that takes a list of integers as input. The input begins with an integer indicating the number of integers that follow. You can safely assume that the number of integers entered is always less than or equal to 10. The program then determines whether these integers are sorted in the ascending order (i.e., from the smallest to the largest). If these integers are sorted in the ascending order, the program will output Sorted; otherwise, it will output Unsorted

Answers

Answer:

is_sorted = True

sequence = input("")

data = sequence.split()

count = int(data[0])

for i in range(1, count):

   if int(data[i]) >= int(data[i+1]):

       is_sorted = False

       break

if is_sorted:

   print("Sorted")

else:

   print("Unsorted")

Explanation:

*The code is in Python.

Initialize a variable named is_sorted as True. This variable will be used as a flag if the values are not sorted

Ask the user to enter the input (Since it is not stated, I assumed the values will be entered in one line each having a space between)

Split the input using split method

Since the first indicates the number of integers, set it as count (Note that I converted the value to an int)

Create a for loop. Inside the loop, check if the current value is greater than or equal to the next value, update the is_sorted as False because this implies the values are not sorted (Note that again, I converted the values to an int). Also, stop the loop using break

When the loop is done, check the is_sorted. If it is True, print "Sorted". Otherwise, print "Unsorted"

Features of Python are *
a)It is a platform independent programming language, which means it can be used on any machine and in any operating system.
b)It is an interpreted language.
c)It is a Low Level programming language.
d)it is not a case sensitive language

Answers

Answer:

a

Explanation:

Python is platform independent, it can be ran on any operating system.

Part A. Write a method countOfLongest that accepts an array of Strings as a parameter and returns the count (int) of elements in that array with length equal to the longest String in that array. See two examples above. Part B. Write a method countOfLongest that accepts an array of int's as a parameter and returns the count (int) of elements in that array with number of digits equal to the largest int in that array. See two examples above.

Answers

Answer:

The methods are as follows:

public static int countOfLongest(String [] myarray){

    int strlen = 0, kount = 0;

    for(int i = 0; i<myarray.length;i++){

        if(myarray[i].length() > strlen){

            strlen = myarray[i].length();         }     }

    for(int i = 0; i<myarray.length;i++){

        if(myarray[i].length() == strlen){

            kount++;         }     }

    return kount; }

public static int countOfLongest(int [] myarray){

    int diglen = 0, kount = 0;

    for(int i = 0; i<myarray.length;i++){

    int lengt = String.valueOf(myarray[i]).length();

        if(lengt > diglen){

            diglen = lengt;         }     }

    for(int i = 0; i<myarray.length;i++){

        int lengt = String.valueOf(myarray[i]).length();

        if(lengt == diglen){

            kount++;         }     }

    return kount; }

Explanation:

This defines the countOfLongest of the string array

public static int countOfLongest(String [] myarray){

This initializes the length of each string and the kount of strings with that length to 0

    int strlen = 0, kount = 0;

This iterates through the array

    for(int i = 0; i<myarray.length;i++){

The following if condition determines the longest string

        if(myarray[i].length() > strlen){

            strlen = myarray[i].length();         }     }

This iterates through the array, again

    for(int i = 0; i<myarray.length;i++){

The following if condition checks for the count of strings with the longest length

        if(myarray[i].length() == strlen){

            kount++;         }     }

This returns the calculated kount

    return kount; }

This defines the countOfLongest of the string array

public static int countOfLongest(int [] myarray){

This initializes the length of each integer and the kount of integer with that length to 0

    int diglen = 0, kount = 0;

This iterates through the array

    for(int i = 0; i<myarray.length;i++){

The calculates the length of each integer

    int lengt = String.valueOf(myarray[i]).length();

The following if condition determines the longest integer

        if(lengt > diglen){

            diglen = lengt;         }     }

This iterates through the array, again

    for(int i = 0; i<myarray.length;i++){

The calculates the length of each integer

        int lengt = String.valueOf(myarray[i]).length();

The following if condition checks for the count of integer with the longest length

        if(lengt == diglen){

            kount++;         }     }

This returns the calculated kount

    return kount; }

See attachment for complete program which includes main

In the negative side of the battery, there are millions and millions of _________.

Answers

Answer:

Electrons

Explanation:

The online underground is used _____. Select 3 options. by law-abiding citizens only on Black Friday for networking by criminal organizations by world governments to share military secrets by cybercriminals to purchase malicious software by cybercriminals to sell ransom services

Answers

Answer:

The online underground is used :- 1] by cybercriminals to purchase malicious software.

2] by cybercriminals to sell ransom services.

3] by criminal organizations.

I hope it's correct.

The online underground is used by criminal organizations, by cybercriminals to purchase malicious software, and by cyber criminals to sell ransom services. Hence, options B, D, and E are correct.

What is online underground?

The online underground, also known as the dark web or the darknet, refers to a portion of the internet that is intentionally hidden and can only be accessed using specialized software, such as the Tor browser. The online underground is typically used for illegal activities, such as drug trafficking, weapons sales, identity theft, and other criminal activities.

The online underground is used by the following:

Criminal organizationsCybercriminals to purchase malicious softwareCybercriminals to sell ransom services

Therefore, options B, D, and E are correct.

Learn more about online underground, here:

https://brainly.com/question/14447126

#SPJ2

Declare an array named numbers with a constant size of 5 X 5.

1. Make/Use a function getNumbers to get the values for every element of the array.
2. Make/Use a function showNumbers to display the array in this form.

1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25

3. Make/Use a function addRows to add each row and display it.

Total for row 1 is: 15
Total for row 2 is: 40

And so on....

4. Make/Use a function highest to find the highest value in the array

Answers

Answer:

In C++:

#include<iostream>

using namespace std;

void getNumberr(int myarray[][5]){

   int arr[5][5];

   for(int i = 0;i<5;i++){

       for(int j = 0;j<5;j++){

           arr[i][j] = myarray[i][j];        }    }  }

void showNumberr(int myarray[][5]){

   for(int i = 0;i<5;i++){

       for(int j = 0;j<5;j++){

           cout<<myarray[i][j]<<" ";        }

       cout<<endl;    }     }

void addRows(int myarray[][5]){

   for(int i = 0;i<5;i++){

       int rowsum = 0;

       for(int j = 0;j<5;j++){

           rowsum+=myarray[i][j];        }

       cout<<"Total for row "<<i+1<<" is: "<<rowsum<<endl;    }   }

void highest(int myarray[][5]){

   int max = 0;

   for(int i = 0;i<5;i++){

       for(int j = 0;j<5;j++){

           if(myarray[i][j]>max){

               max = myarray[i][j];

           }                    }    }

   cout<<"Highest: "<<max; }

int main(){

   int myarray[5][5] = {{1,2,3,4,5}, {6,7,8,9,10},{11,12,13,14,15},{16,17,18,19,20},{21,22,23,24,25}};

   getNumberr(myarray);

   showNumberr(myarray);

   addRows(myarray);

   highest(myarray);

return 0;

}

Explanation:

The getNumberr function begins here

void getNumberr(int myarray[][5]){

This declares a new array

   int arr[5][5];

The following iteration gets the array into the new array

   for(int i = 0;i<5;i++){

       for(int j = 0;j<5;j++){

           arr[i][j] = myarray[i][j];        }    }  }

The showNumber function begins here

void showNumberr(int myarray[][5]){

This iterates through the row of the array

   for(int i = 0;i<5;i++){

This iterates through the columns

       for(int j = 0;j<5;j++){

This prints each element of the array

           cout<<myarray[i][j]<<" ";        }

This prints a new line at the end of each row

       cout<<endl;    }     }

The addRow function begins here

void addRows(int myarray[][5]){

This iterates through the row of the array

   for(int i = 0;i<5;i++){

This initializes the sum of each row to 0

       int rowsum = 0;

This iterates through the columns

       for(int j = 0;j<5;j++){

This adds the elements of each row

           rowsum+=myarray[i][j];        }

This prints the total of each row

       cout<<"Total for row "<<i+1<<" is: "<<rowsum<<endl;    }   }

The highest function begins here

void highest(int myarray[][5]){

This initializes the maximum to 0

   int max = 0;

This iterates through the row of the array

   for(int i = 0;i<5;i++){

This iterates through the columns

       for(int j = 0;j<5;j++){

This checks for the highest

           if(myarray[i][j]>max){

This assigns the maximum to max

               max = myarray[i][j];

           }                    }    }

This prints the max

   cout<<"Highest: "<<max; }

The main method begins here where the array is initialized and each function is called

int main(){

   int myarray[5][5] = {{1,2,3,4,5}, {6,7,8,9,10},{11,12,13,14,15},{16,17,18,19,20},{21,22,23,24,25}};

   getNumberr(myarray);

   showNumberr(myarray);

   addRows(myarray);

   highest(myarray);

return 0;

}

Summary
You will write a racing report program using object-oriented programming with three classes:
ReportDriver, RaceReport, and Race. The main method of the program will be in the
class ReportDriver and will include a loop that allows you to enter in more than one race and
have reports written out for all the races you enter. (The user will enter one race then get a report for that race. After that, the user will be asked whether they want to enter in another race and get another report. This repeats until the user says they do not want to enter in any more races.)
Program Description
There are two major tasks in this assignment. Your first major task is to write a program that collects three pieces of user input about a race and provides a summary of facts about the race. Input will be via the keyboard and output (i.e., the summary of facts) will be via the display (a.k.a., console window). The three pieces of user input will be the three individual race times that correspond the first, second, and third top race finishers; your program will prompt the user to enter these in via the keyboard. Note that you cannot assume these times will be in order; putting them in order is one of the first things your program should do. Thus, your program will need to do the following:
1. Prompt the user for three ints or doubles, which represent the times for the three racers.
2. Sort the three scores into ascending order (i.e., least to greatest).
(a) Remember, to swap two variables requires a third, temporary variable.
(b) See the Math class (documented in Savitch Ch. 5; see the index for the exact location
. . . this is good practice for looking things up) for methods that might help you (e.g.,
min and max). Note that these methods produce a return value.
(c) Output the sorted race scores in order.
3. Describe the overlap in times, if any exist. The options will be:
(a) All are tied for first.
(b) Some are tied for first.
(c) None are tied for first.
4. Do step (4) for the second and third place finishes.
5. Output the range of the race scores.
6. Output the average of the race scores.
There are, of course, many different ways of writing this program. However, if you decompose
your tasks into smaller chunks, attacking a larger program becomes more manageable. If you
mentally divided up the tasks before you, you might have decided on the following list of "work
items", "chunks", or "modules":
Data Input: Ask the user for three race scores (in no particular order).
Ordering Data: Order the race scores by first, second, and third place.
Data Analysis and Output:
– Determine how many racers tied for first, second or third place (i.e., how many overlap
times) and output result to console.
– Calculate the range of the race scores (i.e., the absolute value of the slowest minus the
fastest times) and output result to console.
2 – Calculate the average of the race times and output result to console.

Answers

Answer:dddd

Explanation:

//The code is all written in Java and here are the three classes in order ReportDriver, RaceReport, and Race

class ReportDriver {

   

   public static void main(String[] args) {

       boolean continueRace = true;

       Scanner in = new Scanner(System.in);

       ArrayList<ArrayList<Integer>> races = new ArrayList<>();

       while (continueRace == true) {

           System.out.println("Would you like to enter into a race? Y or N");

           char answer = in.next().toLowerCase().charAt(0);

           if (answer == 'y') {

               Race race = new Race();

               races.add(race.Race());

           } else {

               break;

           }

       }

       for (int x = 0; x <= races.size()-1; x++) {

           RaceReport report = new RaceReport();

           report.RaceReport(races.get(x));

           report.printRange();

           report.printAverage();

       }

   }

}

//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

package sample;

import java.util.ArrayList;

public class RaceReport {

   int range, average;

   String first, second, third;

   public void RaceReport(ArrayList<Integer> times) {

       if (times.get(2) == times.get(1)) {

           if (times.get(2) == times.get(0)) {

               System.out.println(first = "Times tied for first place are " + times.get(2) + " and " + times.get(1) + " and " + times.get(0));

           } else {

               System.out.println(first = "Times tied for first place are " + times.get(2) + " and " + times.get(1));

               System.out.println(second = "Second place time is " + times.get(0));

           }

       } else if (times.get(1) == times.get(0)) {

           System.out.println(first = "First place time is " + times.get(2));

           System.out.println(second = "Times tied for Second place are " + times.get(1) + " and " + times.get(0));

       } else {

           System.out.println(first = "First place time is " + times.get(2));

           System.out.println(second = "Second place time is " + times.get(1));

           System.out.println( third = "Third place time is " + times.get(0));

       }

       range = Math.abs(times.get(0) - times.get(2));

       average = (times.get(2) + times.get(1) + times.get(0) / 3);

   }

   public void printRange() {

       System.out.println("The range of the race was " + range);

   }

   public void printAverage() {

       System.out.println("The average of the race was " + average);

   }

}

//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

package sample;

import java.util.ArrayList;

import java.util.Collections;

import java.util.Scanner;

public class Race {

   Scanner in = new Scanner(System.in);

   ArrayList<Integer> times = new ArrayList<>();

   public ArrayList<Integer> Race() {

       System.out.println("Input time 1:");

       times.add(in.nextInt());

       System.out.println("Input time 2:");

       times.add(in.nextInt());

       System.out.println("Input time 3:");

       times.add(in.nextInt());

       Collections.sort(times);

       return times;

   }

}

Complete the line of code in this program that uses the randint() function?
correctAnswer = randint(1,20)

Answers

Answer:

Following are the code to the given question:

import random as r#import random package

correctAnswer = r.randint(1,20)#defining a variable correctAnswer that hold randint method value

print(correctAnswer)#print correctAnswer variable value

Output:

15

Explanation:

In the above-given python code, a random package is imported as the "r", and in the next step, the "correctAnswer" variable is declared that uses the randit method with two integer parameters that are "1,20" and returns a value that holds a value into its variable, and use the print method to prints its value.

Answer:

from random import *

Explanation:

edge :)

have a wonderful day <3

1. Create a Java program.
2. The class name for the program should be 'RandomDistributionCheck'.
3. In the main method you should perform the following:
a. You should generate 10,000,000 random numbers between 0 - 19.
b. You should use an array to hold the number of times each random number is generated.
c. When you are done, generating random numbers, you should output the random number, the number of times it occurred, and the percentage of all occurrences. The output should be displayed using one line for each random number.
d. Use named constants for the number of iterations (10,000,000) and a second named constant for the number of unique random numbers to be generated (20).

Answers

Answer:

In Java:

import java.util.*;

public class RandomDistributionCheck{

   public static void main(String[] args) {

       final int iter = 10000000;

       final int unique = 20;

       Random rd = new Random();

       int [] intArray = new int[20];

       for(int i =0;i<20;i++){    intArray[i]=0;    }

       for(int i =0; i<iter; i++){

           int rdd = rd.nextInt(20);

           intArray[rdd]++;    }

       System.out.println("Number\t\tOccurrence\tPercentage");

       for(int i =0;i<unique;i++){

           System.out.println(i+"\t\t"+intArray[i]+"\t\t"+(intArray[i]/100000)+"%");

       }    } }

Explanation:

This declares the number of iteration as constant

       final int iter = 10000000;

This declares the unique number as constant

       final int unique = 20;

This creates a random object

       Random rd = new Random();

This creates an array of 20 elements

       int [] intArray = new int[20];

This initializes all elements of the array to 0

       for(int i =0;i<20;i++){    intArray[i]=0;    }

This iterates from 1 to iter

       for(int i =0; i<iter; i++){

This generates a random number

           int rdd = rd.nextInt(20);

This increments its number of occurrence

           intArray[rdd]++;    }

This prints the header

       System.out.println("Number\t\tOccurrence\tPercentage");

This iterates through the array

       for(int i =0;i<unique;i++){

This prints the required output

           System.out.println(i+"\t\t"+intArray[i]+"\t\t"+(intArray[i]/100000)+"%");

       }  

Other Questions
If 3 sacks of concrete will make 12 square feet of sidewalk, predict how many sacks of concrete are needed to make 40 square feet of sidewalk. 0.01273148148 as a fraction ..because it is closer to theNicknamed the "people. Write a function rule that best models the data in the table.A.y = x + 3B.y = x2 + 3C.y = 3x + 1 Can you plz help me with number one Which of thefollowing uses thePreterit tense?A. La ambulancia y la polica llegaron.B. Entonces 5 minutos mas tarde.C. Un fuego terrible Round to the greatest place to estimate the answer.398 x 51 =____ What is one major similarity between the Supreme Court's rulings in brown v. Board of education and United States v. Virginia STAAR Review Questions32 Toxoplasmosis is an infection producing brain lesions caused by the parasitic protozoanToxoplasma gondii. Mice with their gonads removed are more resistant to T. gondil anddevelop very few lesions on their brain tissue. The graph shows the results of a scientificstudy of normal adult mice infected with T. gondil.Effects of T. gondil onBrain Tissue in Mice0.60.50.4Mean Lesion Area(% standard error)wer:0.30.20.10MaleFemaleAdult MiceWhich systems most likely interact and cause the severity of infections to vary?F Muscular and skeletalG Immune and endocrineH Excretory and respiratory) Nervous and integumentary A runner taking part in the 200-m dash must run around the end of a track that has a circular arc with a radius of curvature of 29.5 m. The runner starts the race at a constant speed. If she completes the 200-m dash in 24.4 s and runs at constant speed throughout the race, what is her centripetal acceleration as she runs the curved portion of the track halp me again please........... Explain the reasons the colonists wanted independence from England. 4. According to the text, how do the Roaring Twenties develop overtime? Cite evidence from the text to support your answer.Commonlit the roaring 20s Please Help!How are Ansel Adams and Galen Rowell both environmentalists? How do both artists fall into the Realism and Formalism philosophies? Strength Training Lessens Bone loss.Please select the best answer from the choices provided A. TrueB. False Which is the BIGGER (less specific) group? *A. PhylumB. ClassC. SpeciesD. Order Gabriel deposits $2,500 into each two savings accounts, account 1 earns 4% simple interest, account 2 earns 4% compound interest annually . Gabriel does not make any additional deposits or withdrawals. What is the sum of the balances of account 1 and account 2 at the end of 3 years? I need help with capitalizing and formatting. Anyone going to assist me on this? 2. Which group listed below can be used to set indents andspacing? Clementine has $80 and wants to buy two shirts. Let x = the amount per shirt. If Clementine wants to have at least $35 left following the purchase, write and solve an inequality the reflects how much can be spent on each shirt?