zyde 10.14.1: iterating over a dictionary example: gradebook statistics. write a program that uses the keys(), values(), and/or items() dict methods to find statistics about the student grades dictionary. find the following: print the name and grade percentage of the student with the highest total of points. find the average score of each assignment. find and apply a curve to each student's total score, such that the best student has 100% of the total points.

Answers

Answer 1

To find statistics about the student grades dictionary, we can use the keys(), values(), and items() methods of the dictionary. Here's a step-by-step solution: Initialize a dictionary called "gradebook" with student names as keys and their corresponding grades as values.

To find the student with the highest total points, we need to iterate over the items of the gradebook dictionary and calculate the total points for each student. We can use a variable, let's call it "highest_points", to keep track of the highest total points found so far. Start with a value of 0.

Iterate over the items of the gradebook dictionary using the items() method. For each item, calculate the total points by summing the grades using the sum() function.

To know more about dictionary visit:

https://brainly.com/question/1199071

#SPJ11


Related Questions

In order to personalize your desktop, you may click on: Start>settings>Personalization . . .

•TRUE
•FALSE

Answers

According to your question you are not wrong. It in fact is correct. TRUE

what are the features of the title bar for the Microsoft word application?​

Answers

Answer:

The title bar at the top of a window displays an application-defined icon and line of text. The text specifies the name of the application and indicates the purpose of the window. The title bar also makes it possible for the user to move the window using a mouse or other pointing device.

HOPE IT HELPS

In many supermarkets customers can pay for their shopping using credit cards. (a) Name two items of information stored on the magnetic stripe on these cards. (b) State two ways that the supermarket computer would check the credit card.

Answers

Answer:

Explanation:

Two items on the magnetic strip are, Credit Card info and Balance

Two ways supermarket may check are the PIN pad you are using to pay or their reciept system.

Why error occurs during transmission? Explain different types of errors with suitable examples. 5 (b) How do you detect error using CRC? Generate the CRC code for the data word 1101011011 The divisor is x4+x+1. 7

Answers

During transmission, errors occur due to a variety of factors such as atmospheric conditions, system malfunction, or network errors.

Different types of errors include Single Bit Error, Burst Error, and Burst Error Correction. Here are the different types of errors with suitable examples: Single Bit Error: It occurs when one bit of data is changed from 1 to 0 or from 0 to 1 in data transfer. This type of error is mainly caused by a small amount of interference or noise in the transmission medium. For instance, a parity bit error.Burst Error: It occurs when two or more bits are incorrect during data transmission. A Burst Error occurs when bits of data are lost or changed in groups, which can affect multiple data bits at once. It can be caused by signal loss or attenuation in fiber-optic cables. Burst Error Correction: To overcome the issue of Burst Error, Burst Error Correction is used. This method divides data into blocks to detect and fix errors. Reed-Solomon coding and Viterbi decoding are two types of burst error correction techniques. There are different techniques for error detection, and the Cyclic Redundancy Check (CRC) is one of them. CRC checks the checksum at the receiver's end to ensure that the data was not corrupted during transmission. To detect errors using CRC, follow these steps: Divide the data word by the generator polynomial. Generator polynomial: x4 + x + 1 Divide 1101011011 by x4 + x + 1 and find the remainder by using the modulo 2 division method.1101011011 10011- 10011000- 10011000- 10010100- 10010100- 10000001- 10000001- 1111100- 1111100- 1001The remainder of the above step is the CRC code of the data word, which is 1001. Therefore, the CRC code for the data word 1101011011 is 1001.

know more about type of error.

https://brainly.com/question/31751999

#SPJ11

what is version-controlled software? what is it for? what is the trunk? what is a branch? describe the main operations (commit, merge, check in, check out).

Answers

Version-controlled software is a system that tracks changes to files and directories over time. It allows multiple developers to collaborate efficiently by managing different versions of the codebase.

The trunk, or mainline, refers to the main branch of development. A branch is a separate line of development created from the trunk. Commit is the act of saving changes to the version control system. Merge combines changes from one branch into another. Check-in refers to saving changes to the central repository, while check-out retrieves the latest version from the repository.

Version-controlled software is a system that tracks changes to code and facilitates collaboration. The trunk, also known as the mainline, is the primary branch of development. A branch is a separate line of development created from the trunk, allowing parallel work. Commit saves changes to the version control system, while merge combines changes from one branch into another. Check-in involves saving changes to the central repository, making them available to others. Check-out retrieves the latest version from the repository, allowing developers to work with the code locally. These operations enable effective collaboration, version management, and code integrity in software development projects.

learn more about software here:

https://brainly.com/question/32393976

#SPJ11

how to change the logo for a slack workspace picture

Answers

Answer:

https://www.bing.com/videos/search?q=How+to+change+the+logo+for+a+slack+workspace+picture&qpvt=How+to+change+the+logo+for+a+slack+workspace+picture&FORM=VDRE

Explanation:

To add your own logo to your Slack workspace, you need to go into the workspace customization settings. Click on the workspace name in the top-right corner. Next, in the dropdown menu, select “Settings & administration.” Then “Customise <workspace name>” to open the workspace customization settings in a new tab.

1) Imagine that we change LC-3 memory to contain 16MB of byte-addressable memory. In other words, 224 addresses, each holding 8 bits. Instructions are now 32 bits long (so now each instruction takes four consecutive memory locations).a) How many bits are now needed for the PC?b) How many bits are now needed for the IR?c) How many bits are now needed for the MAR?d) How many bits are now needed for the MDR?e) Is instruction fetch faster, slower, or unaffected? Explain your answerThe following LC 3 instructions execute starting from the point shown by the comment; start LC-3 execution here 1 0101 001 001 1 000002 0101 011 011 1 000003 0001 001 001 1 011004 0001 011 011 1 001015 1001 010 001 1111116 1001 100 011 1111117 0101 010 010 0 00 0118 0101 100 200 0 00 0019 1001 010 010 11111110 1001 100 100 11111111 0101 010 010 0 00 10012 1001 010 010 11111113 ; end LC-3 execution here After the code reaches the end of the code (the last comment). what bits are held in R1? And in R2? And in R3? And in R4? Lines 1-4 initialize the input registers, while lines 5-12 generate the output of the function, and store the result in register R2. What Boolean function is this code trying to implement? Specifically, identity the two input registers and the Bcolean function implemented R2-R? (mystery Boolean function?) R?

Answers

a) The PC now needs 24 bits.

b) The IR now needs 32 bits.

c) The MAR now needs 24 bits.

d) The MDR now needs 32 bits.

e) The instruction fetch is unaffected.

After the code reaches the end, the following bits are held in the registers:

R1: 00000000

R2: 11111111

R3: 00010010

R4: 00010001

The code implements a bitwise XOR function on the values in R1 and R3 and stores the result in R2. The input registers are R1 and R3, and the Boolean function implemented is XOR.

a) With 16MB of memory, the PC now needs 24 bits to address every byte in memory.

b) The instructions are now 32 bits long, so the instruction register now needs to hold 32 bits to store the entire instruction.

c) The memory address register now needs 24 bits to address every byte in memory.

d) The memory data register now needs 32 bits to store the entire 32-bit instruction.

e) The instruction fetch is unaffected because the time taken to fetch an instruction depends on the clock speed of the processor and the memory access time, which are not affected by the change in memory size or instruction length.

The code initializes R1 and R3 with values 00000000 and 00010010, respectively. It then performs a bitwise XOR operation on the values in R1 and R3 and stores the result in R2.

The XOR function is a basic Boolean function that returns true (1) when the two input bits are different and false (0) when they are the same. Therefore, the input registers are R1 and R3, and the implemented function is XOR.

For more questions like XOR function click the link below:

https://brainly.com/question/15969713

#SPJ11

Compare and contrast the advantages and disadvantages of the Windows, Apple and Linux operating systems.

Answers

In apple, you may do other things that windows can not provide. Yet, Windows are good aswell since it has better things than apple. I’m so sorry if i’m wrong.

WHAT ARE THE MOST USED AND POPULAR PROCESSOR

Answers

Answer:

i3 processor, i5 processor, AMD Athlon 64

laila needs the pictures in her document to be distributed vertically. she should do which of the following? a. press the wrap text button and select the desired option. b. press the align button and select the desired option. c. press the position button and select the desired option. d. press the corrections button and select the desired option.

Answers

The correct answer is (b) press the align button and select the desired option.

What is word wrapping?

A section of text is divided into lines using line breaking, also referred to as word wrapping, in order to fit it into the available width of a page, window, or other display area.

When text is displayed, line wrap is used to continue on a new line when a line is full.

This allows each line to fit into the viewable window and eliminates the need for horizontal scrolling, allowing text to be read from top to bottom.

Word wrap is a function that most text editors, word processors, and web browsers include that, where possible, breaks lines between words rather than within words.

Word wrap eliminates the need to hard-code newline delimiters within paragraphs and enables flexible, dynamic text display that can accommodate displays of various sizes.

To know more about text wrap, visit:-

https://brainly.com/question/25876715

#SPJ4

Tyra is peer conferencing about her project with a friend. Tyra's friend provided feedback that Tyra does not agree with. What should Tyra do? Group of answer choices Be kind and thankful Ignore the feedback Start the project over Tell her friend she is wrong

Answers

Answer:

Be kind and thankful

Explanation:

If Tyra does not agree with her friend's feedback, she does not have to say it outrightly to her friend. She has to use softer words to disagree. This is where being kind comes in.

Her friend has made efforts by providing this feedback Even if it is not exactly what she wants to hear. It would be polite for her to say thank you.

Then she has to respectfully disagree to avoid coming off as someone who is totally unreceptive of the opinion of others.

What should students hope to get out of classroom discussions? Check all that apply.

Answers

Answer:

well you didnt put the selection but i would guess answers help a good conversation

Explanation:

Answer: classroom discussions are good, they help the students and this is kind of a discussion

Explanation:

tom, a shell script developer, knows that the date %a command gives the current local weekday name (sunday, monday, tuesday, ...). which of the following commands will copy the authentication log file, /var/log/auth.log, to a new file with a filename that includes the current local weekday name?

Answers

A few examples of uses for shell scripts are as follows: automating the process of code compilation. Programming or setting up a programming environment.

What is the role of shell script developer?

It is used to run programs, edit files, monitor systems, automate general tasks, and automate any compiling process. To learn more about how to employ shell script developers for your business, speak with Skuad professionals.

But some of those automation tools' functions are supported by shell scripts. The creation of virtual machine images using shell scripting and Hasicorp Packer is a well-known example.

Therefore, The best applications for shell scripts are repeated chores that would take a long time to complete by entering one line at a time.

Learn more about shell script here:

https://brainly.com/question/29625476

#SPJ1

This graph shows the number of steps Ana and Curtis each took over the course of four days. Which of the following labels best describes the y-axis values? Number of Steps per Day 12000 10000 8000 6000 رااا 4000 2000 0 1 2 3 Ana Curtis
Steps per day
None of the above
Day of the week
Steps by user​

This graph shows the number of steps Ana and Curtis each took over the course of four days. Which of

Answers

Answer:

None of the above

Explanation:

write code that removes the first and last elements from a list stored in a variable named my_list. assume that the list has been initialized and contains at least two elements.

Answers

Answer:

[24, 35, 9, 56 Approach #3: Swap the first and last element is using tuple variable.

NEED THIS ASAP!!) What makes open source software different from closed source software? A It is made specifically for the Linux operating system. B It allows users to view the underlying code. C It is always developed by teams of professional programmers. D It is programmed directly in 1s and 0s instead of using a programming language.

Answers

Answer: B

Explanation: Open Source software is "open" by nature, meaning collaborative. Developers share code, knowledge, and related insight in order to for others to use it and innovate together over time. It is differentiated from commercial software, which is not "open" or generally free to use.

Units of distance on a computer’s screen are measured in microns.
Group of answer choices

True

False

Answers

Answer: true

Explanation:

It is true that units of distance on a computer’s screen are measured in microns.

What is micron?

Processors, microprocessors, and their components are frequently measured in microns, a unit of measurement. It is 1/25 of a thousandth of an inch or 1/1,000th of a millimeter.

In the metric system, a micron is a unit of linear measurement that is used to calculate the separation between two points.

Today's gaming graphics cards utilise a significant amount of memory made by Micron, most notably Nvidia's enthusiast-grade RTX 30-series GPUs.

Micrometre, often known as micron, is a unit of length in the metric system equal to 0.001 mm, or roughly 0.000039 inch. m is its symbol.

Thus, it can be concluded that the given statement is true.

For more details regarding micron, visit:

https://brainly.com/question/29974963

#SPJ2

What is the name of the programming language created by Spu7Nix?

Answers

The name of the programming language is “Brainfugd”

Answer:

I think is SPWN

Explanation:

Amanda needs to manually calculate an open worksheet.Which of the following options should she click on in the Formulas tab in the Calculation group?
A) Calculate Now
B) Calculate Sheet
C) Watch Window
D) Calculation Options

Answers

The option that Amanda should click on in the Formulas tab in the Calculation group to manually calculate an open worksheet is "Calculate Now" (option A).

The "Calculate Now" option is used to manually initiate the calculation of all formulas in the worksheet. By clicking on this option, Amanda can ensure that all formulas are recalculated and updated with the latest values.

Options B, C, and D are not directly related to manually calculating the worksheet. "Calculate Sheet" (option B) is used to recalculate the selected sheet within the workbook. "Watch Window" (option C) is used to monitor specific cells or formulas for changes. "Calculation Options" (option D) allows for customization of the calculation settings, but it does not trigger a manual recalculation of the worksheet.

To know more about visit:

https://brainly.com/question/29733252

#SPJ11

This tool lets you insert text anywhere in your document. O Cut О сору O Drag O Paste​

Answers

Answer:

Drag or paste (im not 100% sure tho)

Explanation:

what is a number system in computer science

Answers

Simply said, the numeral system is a way to express or represent numbers. There are many different kinds of number systems, but the decimals, binary, and octal systems are among the most often used .

Describe the numeral system with an example.

a grouping of items, commonly referred to as number, along with operations performed on those number system and the properties the actions satisfy. Examples include the counting numbers (1, 2, 3,...), additions, deletion, multiplication, and division operations, as well as the properties they satisfy.

What function does the equations to describe provide in computer science?

As computers only know math, when we enter words or letters the computer turns them into numbers. A computer can comprehend a position number system, which uses a small amount of digits that, depending on their position in the number, can indicate a range of values.

To know more about  computer science visit:

https://brainly.com/question/20837448

#SPJ4

web services are less expensive to weave together than proprietary components. True or false?

Answers

It is true that web services are typically based on standardized protocols and technologies, making them more interoperable and easier to integrate compared to proprietary components.

This interoperability reduces the cost and effort required to weave together different web services as compared to integrating proprietary components, which may have unique interfaces and dependencies. Additionally, the widespread adoption of web services has led to the availability of various open-source and low-cost tools and frameworks that facilitate their integration, further reducing the overall cost.

Web services are typically based on standardized protocols and technologies such as XML (eXtensible Markup Language), SOAP (Simple Object Access Protocol), and REST (Representational State Transfer). These standards ensure a common and consistent approach to communication between different systems and platforms.

Standardized protocols allow web services to communicate effectively and seamlessly across various networks, operating systems, and programming languages. This interoperability is crucial for integrating different systems and components, as it eliminates the need for custom integration solutions and minimizes compatibility issues.

To know more about web services,

https://brainly.com/question/14504739

#SPJ11

vkbfnkynbvkbj how do i unblocked websites on my school laptop?

Answers

Answer:

impossible

Explanation: sorry but too bad

Please answer this question
It's about a website called STC
I want an answer that is suitable for the question and cover it all.. please i want the answer to be on the website that called STC only not random answers
This is the website:
https://www.stc.com.sa/content/stc/sa/en/personal/home.html
This is the question:
Analysis of Existing System :
Analyze the key problems of the existing system used by the
company . Also, discuss the Information Systems used
within the company for example:
• Transaction processing systems (TPS)
• Enterprise Resource Planning (ERP) Systems
• Functional Area Information Systems
• Business intelligence
• DSS
(You can discuss any points that you learned in this course
and it's related to your selected organization)
Write the answer with computer writing
thanks

Answers

1. Transaction Processing Systems (TPS): STC employs TPS to handle its daily transactions efficiently. TPS helps in processing and recording transactions such as bill payments, account activations, and service orders. It ensures accurate and timely data entry.

2. Enterprise Resource Planning (ERP) Systems: STC leverages ERP systems to integrate various business functions and processes. This enables effective management of resources, including inventory, finance, human resources, and customer relationship management. ERP systems streamline operations and provide real-time data, facilitating decision-making.

3. Functional Area Information Systems: STC employs functional area information systems to support specific departments or functions within the organization. For example, a customer relationship management (CRM) system helps manage customer interactions, while a human resources information system (HRIS) assists in managing employee data.

To know more about TPS visit:

https://brainly.com/question/33290602

#SPJ11

A programmer for a weather website needs to display the proportion of days with freezing temperatures in a given month.


Their algorithm will operate on a list of temperatures for each day in the month. It must keep track of how many temperatures are below or equal to 32. Once it's done processing the list, it must display the ratio of freezing days over total days.
Which of these correctly expresses that algorithm in pseudocode?
A.
numFreezing ← 0

numDays ← 0

FOR EACH temp IN temps {

IF (temp ≤ 32) {

numFreezing ← numFreezing + 1

}

numDays ← numDays + 1

DISPLAY(numFreezing/numDays)

}

B.
numFreezing ← 0

numDays ← 0

FOR EACH temp IN temps {

IF (temp ≤ 32) {

numFreezing ← numFreezing + 1

}

numDays ← numDays + 1

}

DISPLAY(numFreezing/numDays)

C.
numFreezing ← 0

numDays ← 0

FOR EACH temp IN temps {

IF (temp < 32) {

numFreezing ← numFreezing + 1

}

numDays ← numDays + 1

}

DISPLAY(numFreezing/numDays)

D.
numFreezing ← 0

numDays ← 0

FOR EACH temp IN temps {

IF (temp ≤ 32) {

numFreezing ← numFreezing + 1

numDays ← numDays + 1

}

}

DISPLAY(numFreezing/numDays)

Answers

Answer:

B.

Explanation:

The correct Pseudocode for this scenario would be B. This code makes two variables for the number of total days (numDays) and number of freezing days (numFreezing). Then it loops through the entire data set and checks if each temp is less than or equal to 32 degrees. If it is, it adds it to numFreezing, if it is not then it skips this step, but still adds 1 to the total number of days after each loop. Once the entire loop is done it prints out the ratio, unlike answer A which prints out the ratio for every iteration of the loop.

numFreezing ← 0

numDays ← 0

FOR EACH temp IN temps {

IF (temp ≤ 32) {

numFreezing ← numFreezing + 1

}

numDays ← numDays + 1

}

DISPLAY(numFreezing/numDays)

Forests are crucial to the health of our planet because they __________. A. Can easily be cut down to make room for agriculture and cattle grazing B. Provide homes for species of plants that are used to make medicines C. Clean and protect the atmosphere by absorbing carbon dioxide and releasing oxygen D. Provide fuel and lumber for houses and industries

Answers

Answer:

C

Explanation:

Trees release oxygen :)

Answer:

C. clean and protect the atmosphere by absorbing carbon dioxide and releasing oxygen

Explanation:

n the most basic level, internet supports point to point asynchronous communication. true or false

Answers

In the most basic level, internet supports point to point asynchronous communication is false. In the most basic level, the internet supports point-to-point synchronous communication. So the statement is False.

Point-to-point communication refers to the direct transmission of data between two endpoints, such as a client and a server. Synchronous communication means that the sender and receiver are in sync and exchange data in real-time.

This is commonly seen in protocols like TCP (Transmission Control Protocol), where data is sent and acknowledged in a synchronized manner. Asynchronous communication, on the other hand, allows for non-real-time, independent data transmission and processing between endpoints.

While the internet can support both synchronous and asynchronous communication, its fundamental operation relies on point-to-point synchronous communication. Therefore, the statement is False.

To learn more about asynchronous communication: https://brainly.com/question/28412501

#SPJ11

A(n) Blank______ can compare two or more datasets to identify patterns and trends. Multiple choice question. data drop data lake comparative analysis database management system

Answers

A comparative analysis can compare two or more datasets to identify patterns and trends.

Comparative analysis is a systematic procedure for comparing the characteristics of two or more datasets, typically to determine their similarities and differences. Data mining software, database management systems (DBMSs), and spreadsheets are frequently used to accomplish this kind of data analysis.

The primary aim of comparative analysis is to discover similarities and differences between two or more datasets in order to understand the relationship between them, how they differ, and how they can be utilized to make better decisions or gain insights. Therefore, the correct option is comparative analysis.

Learn more about database at

https://brainly.com/question/31913783

#SPJ11

Crack the secret message: Crrp, Crrp, Crrp Zh’uh jrlqj wr wkh prrq. Li brx zdqw wr wdnh d wuls, Folpe derdug pb urfnhw vkls. (hint: the original letters were shifted,for example if it is shifted by 1 that means Z becomes A , A becomes B, etc. You need to know the number of shifts)

Answers

Answer:

Zoom, Zoom, Zoom We’re going to the moon. If you want to take a trip, Climb aboard my rocket ship.

Explanation:

I got it. This is a caesar cipher with 3 shifts.

Flash drive / usb is ___________ device. a) input b) output c)internal d) none of these

Answers

Answer:

The correct answer is D:none of these, as a flash drive is a storage device

Other Questions
according to this poem what factors pushed immigrants to come to the united states HELP HELP PLSS PLSS I REALLY NEED HELP PART A:A car traveled 180 miles at a constant rate.complete the table to show the rate at which the car was traveling if it was completed the same distance in each number of hourstravel time | rate of travel 5 4.5 3 2.25PART B:In the scenario in part a write an equation that would make it easy to find the rate at which the car was traveling in miles per hour r, if it traveled t hours Where is Erin Hanson poetty from? Please help me! thank uuu :) Which best describes the antagonist character type?Group of answer choicescharacters who are described in detail and can often seem very real to readerscharacters who react to experiences and events in a storycharacters who remain the same and are not affected during the course of the storycreates a conflict for the main character, intentionally or unintentionally. List the elements of the set in roster notation. (enter empty or for the empty set.) {x | x is a digit in the number 654,323}__________ Analysis: George Washington was a military and political leader in the 13 colonies. If heexpresses views such as these regarding the Proclamation of 1763, what does that suggest toyou about how the rest of the colonists might have viewed this British rule? QUESTION 38 IgG crosses the placenta and is the most abundant antibody in the plasma. O True O False QUESTION 39 IgG and IgM fix complement; IgM is the first antibody made in response to the antigen. Which text features, if added, would best aid thereader's understanding of this passage? Check all thatapply.directions for obtaining beesO diagram of a completed beehivedefinitions for terms like box jointslist of alternate plans for constructionO list of tools needed to work with the wood The Cupcake ContestNeal was so excited. His high school was having a bake-off, and the owners of a local cupcake shop were going to judge. Neal had always had a knack for cooking and baking, and he was pretty sure he could win this contest. He'd perfected his classic vanilla cupcake recipe.On the way to biology class, he asked his friend Liza what she was baking for the contest."I'm going to make my grandmother's red velvet cupcakes, topped with cream cheese frosting and cinnamon," Liza replied.Neal groaned. Liza's cupcakes sounded so much more creative. Suddenly, his simple vanilla cupcakes seemed lame.Determined to impress the judges, Neal changed his cupcake recipe. He added a marshmallow filling to each cupcake. To liven up his buttercream frosting, he added purple food dye, lavender oil, and licorice extract. The cupcakes still looked boring, so he garnished them with gold dust, rice paper birds, and edible flower petals.In spite of all these adventurous touches, his cupcakes turned out lopsided and goopy, and the frosting tasted strongly like licorice. But he was sure the cupcake judges would look highly on how fancy his cupcakes were.Neal could hardly wait for the contest results to be posted after school. But when he saw the list on the wall, his mouth fell open. He didn't win any prizes, not even as a runner-up. And first place had gone to one of his classmates, Drew Feldman. The description by Drew's cupcakes read, "Classic Vanilla."Which of the following best describes the main theme or lesson of the story? Which of the following inequalities matches the graph? Is the function f(x) = x3 - x2 - 1 even, odd, or neither? Create a C# application to keep an inventory of the fleet of vehicles owned by the company. There are two main types of vehicles, cars and trucks. They have a lot of common fields: make, model, year, color, engine (gas, electric, hybrid, diesel), number of doors. There are some fields specific to cars, like whether there is a sunroof, and specific to trucks, like length of the bed and if it has a bed liner. Use inheritance to create a base class for the common fields, and 2 derived classes for cars and trucks. All classes need a constructor, and the derived classes need to call the base constructor for the common fields. All classes need a ToString( ) method; the derived classes need to call the base ToString( ) as part of the output. In the Main method, hard-code the instantiation of at least 6 vehicles, 3 cars and 3 trucks, and store all of them in an array or array list. Do not put these in order so that all objects of one type of vehicle are followed by all of the objects of the other type of vehicle; mix them up so the vehicles of the same type aren't all neighbors in the array or array list. Display the full list. In a loop, ask the user what type of vehicle they want to see, and then display all of the objects of that type. When they enter the sentinel to end the loop, ask them to specify a year, and display all the vehicles that have that value in the year field. Add one more question, asking about one of the other values, and display all vehicles with that attribute. For example, you might allow them to specify the make of the vehicle; if they type "Ford", then the program would display all vehicles that are Fords. There are multiple fields you can choose from for this last question. Write a void method named myMethod which prints "This is a void method" (without the quotes). Your method should be declared public and static. please helpser o estar 8. A man started his journey at 11:57am and was scheduled to arrive at 12:49pm. If he arrived 15 minutes late, how long did his journey take? Read this sentence about safety gear from paragraph 3.Speaking of safety gear: Some members of this board may erroneously believe that girls lacrosse is unsafe because there is no requirement for protective gear.The author includes this sentence most likely to suggest that Answer choices for the above questionboys wear protective gear when they play lacrossethe audience has made assumptions about safety in girls lacrossethe school board will purchase safety equipment to protect the girlsgirls wear more protective gear in lacrosse than boys do In the State of the Union address, President Obama said that he was going to use executive order to make changes if the Congress didn't. Explain what he meant. Hassan and Eva rode their bikes from the same starting point. Hassan rode his bike 5/6 of a mile, while Eva rode hers 4/7 of a mile. Which equationshows the mileage difference, d, in the distances they rode?5/6 - d = 4/75/6+d=4/7d4/7=5/6d-5/6=4/7 HELP!!!!! If one strand of DNA has the nitrogenous bases: AGT CTC TAG AGC TAT CGT GCG, what is the order of nitrogenous bases on the complementary DNA strand?