Write a MARIE program to calculate some basic statistics on a list of positive numbers. The program will ask users to input the numbers one by one. Assume that all numbers will be in the range 1 to 1000. To terminate the data entry, user will input any negative number. Once the data entry is complete, the program will show four statistics about the list of numbers: (1) Count (2) Minimum value (3) Sum of numbers (4) "Mean/Average" calculation.

As an example, if the user enters the following decimal numbers as input (one after the other)

23, 6, 78, 36, 3, 250, 127, 210, –5

the program would output the following values as the count, minimum, sum and mean respectively:

8
3
733
91

The average is calculated by dividing sum by count. Note that MARIE does not support floating point numbers, hence the result of division will only have the integer part (as shown in above example, average is 91 instead of 91.625)

A simple algorithm for implementing division in MARIE is shown below.

Let x = dividend, y = divisor, z = quotient (result) of division.

set initial z to 0
while x > y, do
set x to (x – y)
increase z by 1
endwhile

Assume that the user will always provide valid numbers as input, that is, do not worry about dealing with invalid input data.

Write comments within your program so that a reader can understand it easily.

Answers

Answer 1

Answer:

a=[23,6,78,36,3,250,127,210,-5]

i = len(a) # calculate length

j = min(a) # calculate minimun

k = sum(a) # calculate sum

l= sum(a)/len(a)  # calculate mean

print(i)

print(j)

print(k)

print(l)

z = 0.0

i=0

x=[23,6,78,36,3,250,127,210,-5]

y = int(l)

while x[i] < y:  

   z= int(x[i]/y)

   print(z)

   x[i] = x[i] - y

   z=z+1

   i=i+1

Explanation:

So above we have calculated Count, minimum, sum and mean/average. Also we did a simple division and printed quotient.


Related Questions

is a process in which messages are visual and have two dimensions . A. Telecommunications B. Information processing C. Graphic communications D. None of the above .

Answers

Answer:

C. Graphic Communication

Explanation:

Graphic Communication is an act of trying to pass information through the use of graphic media such as Images, videos or drawings.

True or False? The steps in the production process vary according to the technological system under consideration.

Answers

True

Everything is going to have a diffrent process for how it will be produced

True, production process steps vary depending on the technological system, as firms adapt to produce output at low costs, adjusting to input costs like labor.

The statement is True. The steps in the production process indeed vary according to the technological system under consideration. This variation is due to the need for firms to seek out production technologies that enable them to produce the desired level of output at the lowest possible cost.

Choices around production technology are critical to a company's success. Depending on the cost of inputs like labor, a firm might choose different levels of automation or different types of machinery. For example, as labor costs increase, a firm might shift from a labor-intensive technology (Production technology 1) to a more capital-intensive one (Production technology 3), reflecting a substitution of labor with machinery.

How do I make a Linked List?

Answers

Answer:

Linked list is the list of elements. It is same like array. The elements in the linked list are stored as node. A node of linked list consist of two parts: Data and Address of Next Node. The linked list is the chain of nodes, where all nodes contains the address of the next node.

Explanation:

We can make linked list with the following steps.

1. Create a node, that have two parts Data and Address

2. In data part we insert the data and in address part we insert the null value until new node created.

3. When we create the new node, we insert of that node in previously created  node's address section.

This process continues until the nodes are created and added to the list.

Creation of Node

To complete this process we create a structure that has two fields. One is integer type data and other is pointer type.

struct node{

int data;

int * next;

}

You are purchasing a new computer want to select a computet with a very large hard drive. which of the following would give you the largest amount of space on the hard drive?

Answers

Answer:

Explanation:

Nowadays we could find in the market computers or laptops with TB of space in hard drive this mean, 1 Terabyte = 1024 Gigabytes, nowadays is the biggest hard drive in the market, the next generation going to be Petabyte, in addition, we could find hard drives with 500 gigabytes, but the first hard drive show in 1956 with 5 Megabytes of space.

Don is the superintendent of the county school system. What task might Don
perform as part of his job?
A. coaching the junior varsity football team
B. monitoring inventory for the band program
C. cancelling school if there is bad weather
D. teaching trigonometry to high school students

Answers

Don as the superintendent of the county school system is able to cancel school if there is bad weather

Further Explanation:

A school superintendent is like the chief operating officer of the county school system. He or she is tasked to run the day to day operations of a school district. A school superintendent falls under the supervision of the executive branch and his or her key responsibility is to hire principals and administrative district staff members. In addition, their other roles are to manage other financial roles. The answer C falls under the operations that Don as the District superintendent needs to take care of. Don has the powers to make decisions in the event of a school emergency like bad weather or incidents that concern the safety of teachers, students, and other staff members.

Learn more about a school superintendent

https://brainly.com/question/9735495

#LearnWithBrainly

Answer:

Canceling school if there is bad weather.

Explanation:

What does limited access to a document mean? A. It makes a document inaccessible without a password. B. It enables a person to make changes and automatically save them. C. It does not reflect any changes made in the document. D. It enables a person to read the document but not edit it. E. It blocks a person from accessing a document.

Answers

Answer:

D. It does not reflect any changes made in the document

Explanation:

A limited access is generally being implemented by the middle level or the top level managers within a company in order to prevent other staffs from editing or commiting the changes to any quite confidential documents and when they are not in the office, however, the staffs are allowed to read through them, but they cannot commit any changes to that confidential document.

Select the correct answer from each drop-down menu.
You would like to implement the rule of thirds to present high-resolution images in an IT scrapbook. The scrapbook includes images of computer
and other IT devices. How can you do this for the scrapbook?
You can implement the rule of thirds by placing the
part of the image along the
lines.
Reset
Next
central
intersecting
margin

Answers

Answer:

Photographers can implement the rule of thirds by placing the part of the image along the intersecting lines so as to present high-resolution pictures.

Explanation:

Taking high quality and composed pictures is an art form that needs skills and expertise. One of most popular technical rule to use is the Rule of Thirds. It is not frequently used by photographers since not everyone understands how it works. The Rule of Thirds visually divides and envisions your image into two parallel horizontal and two parallel vertical lines.

The important elements of the image are then placed along these lines and at the intersection of where these two lines meet up. So, in this case, the scrapbook’s part of the image should be placed as the main subject at one of the intersections on the rule of thirds and this will give the shot a clear focal point. It will offer some breathing space and will show a concentration of the subject’s environment and not just the entire photo.

Instead of placing your subject right in the middle of the frame, it is best to do an off-center composition. Using this technique will make your pictures look more natural and more pleasing.

Learn more about The Rule of Thirds in photography by clicking on the links below

https://brainly.com/question/7358727

https://brainly.com/question/1953271

#LearnWithBrainly

Answer:

1st answer is "key"

2nd answer is "intersecting"

check the 1st paragraph.. where it says The rule..

key... is for the most IMPORTANT elements of the design...

Bit rate is a measure of how many bits of data are transmitted per second. Compared to videos with a higher bit rate, the same videos with a lower bit rate would most likely have

a 3D effect.
blocky, pixilated motion.
a larger file size.
a smoother flow of motion.

Answers

Answer:

blocky, pixilated motion.

Explanation:

Less bits are used to encode every video frame, so depending on the compression algorithm this will result in small areas, blocks, getting the same color, i.e., a blocky, pixelated effect.

Answer:

B

Explanation:

Which of the following statements best reflects the difference between Warner Brothers and MGM?

MGM started in film production, while Warner Bros started in distribution.

Warner brothers started in the Simi Valley, while MGM started in Hollywood.

MGM created the first talkie, while Warner Brothers focused on silent moves.

MGM owned a chain of studios, while Warner Brothers distributed solely in California.

Answers

Answer:

MGM started in film production, while Warner Bros started in distribution.

Explanation:

Metro-Goldwyn-Mayer Studios Inc or MGM was founded in 1924 for Marcus Loew, located at 245 North Beverly Drive in Beverly Hills, California, this company produce feature films and television programs.

Warner Bros. Entertainment Inc was founded in 1923 for Harry, Albert, Sam, and Jack Warner, this company has operations in areas such as film, television, and video games, In 1918 they opened the first Warner Brothers Studio on Sunset Boulevard in Hollywood. Handled finance and distribution in New York City. During World War I their first nationally syndicated film, My Four Years in Germany.

recovery methods from a database failure​

Answers

Answer:

Explanation:

If we make a database backup we could recover our data if something fails, for example, in a system crash, transaction errors, viruses, incorrect commands execution, etc.

There are some types of backups:

Full database backup: Everything is safe in this backup.

Differential backup: this backup only stores the changes in the full backup.

Transaction log backup: contains all transactions that had happened to the database.

UrGeNt!There are two methods to create simple robots. First, you can construct them by purchasing various individual components and assembling them using your own design. Second, you can buy various robotic kits available in the market and assemble them. Which method do you think is the best and why? Do you think robotic kits are useful?

Answers

Answer:

If you are researching, then probably you should go for robotic kits, which are available in the market, and finally assemble them. And hence robotic kits can be very useful, as it can make our task easy, and with the least effort we can come up with something very awesome and very useful. However, if we are inventing, the design from the scratch is a better option as you need that though much work is already done, and hence you will get the pre-built components from the market quite easily and surely. Hence, building from scratch is not a good option anymore considering the above-mentioned reasons if we leave behind invention, and at times deep research factor.

Explanation:

Please check the answer.

Final answer:

The best method to create a robot depends on the individual's goals and expertise. Building from scratch suits those seeking customization and in-depth knowledge, whereas robotic kits are ideal for beginners and provide an easier and more guided experience. Robotic kits are practical and economically efficient, suitable for a variety of educational and hobbyist purposes.

Explanation:

Choosing the best method to create a simple robot depends on the person's objectives and expertise level. Constructing robots from individual components allows for complete customization and a deeper learning experience, as it typically requires knowledge in electronics, mechanical design, and programming.

However, this approach can be time-consuming and complex, which might be challenging for beginners.

On the other hand, robotic kits are highly useful, especially for those new to robotics or looking for a more guided and straightforward approach.

These kits come with pre-selected parts and instructions, making the assembly process more manageable. They provide a satisfying introduction to robotics and can be found at various levels of difficulty, from elementary school to professional engineering challenges.

Humanoid robots, dogbots, and self-assembling cubes illustrate the diversity in robotics. Kits might feature these types or others, giving users a practical introduction to the field. For projects where precision and custom functionalities aren't priorities, or when the educational aspect is paramount, robotic kits are likely the superior choice due to their economic efficiency and ease of use.

The______ technique helps you explode possible risks by providing access to risk areas identified in the past. It also provides the solution that were used an along with the outcomes

Answers

Final answer:

The referred technique is a risk evaluation method that involves analyzing past problems and their solutions to predict potential future risks. It involves using historical data, premortem scenarios, event trees, heat maps, and sensitivity analysis to assess and prioritize risks, ultimately aiding in informed decision-making.

Explanation:

The technique being referred to is a method that allows practitioners to evaluate risks by reflecting on past experiences. By creating an inventory of past technical problems and how they were addressed, including both the solutions implemented and their outcomes, one can gain insights into potential future challenges. This approach is important for avoiding risks by examining historical data, which often involves selecting well-established methods and technical solutions over untested ones. Additionally, tools like premortem sessions can be useful to explore "what if" scenarios to forecast and prepare for potential risks by anticipating their impacts and likelihood.

When assessing risks, it's common to use models such as event trees, which assign probabilities and outcomes to different scenarios. Ranking risks is typically done with tools like a heat map, while sensitivity analysis helps understand the robustness of solutions given the uncertainty of information. Ultimately, it is vital to engage stakeholders in the decision-making process to ensure that decisions are well-informed and lead to action. This includes considering the digitisation of business models and organising digital resources, especially when starting new projects that entail numerous decision-making situations.

A chart would be most useful in which of the following situations?
a. You want to create a graphic comparing frogs to toads.
b. You want to create a tri-fold pamphlet for the biology club.
c. You want to create a illustration showing the dissection of a frog.
d. You want to create a colorful title page for your frog report.
Please select the best answer from the choices provided

Answers

Answer:

You want to create a graphic comparing frogs to toads.

Explanation:

Option A.A chart is best used to visually compare data

The best answer is a. You want to create a graphic comparing frogs to toads.
A chart is an excellent way to visually represent and compare the similarities and differences between two subjects.
In this case, a chart would effectively highlight key attributes such as habitat, physical characteristics, and diet, making it easier to understand the distinctions and comparisons between frogs and toads.

Green field country is planning to conduct a cricket match between two teams A and B. a large crowd is expected in the stadium as 10000 tickets have already been sold. To fulfill the viewer's requirements, the match administrators are willing to install large display screens inside the stadium Which should display the match Live through several cameras installed on different angles in the stadium.
After carefully reading and analyzing the given scenario, you are required to suggest the most suitable serial transmission mode with two strong reasons

Answers

Answer:

We need the Network Interface Card that supports serial transmission, and they are EIA RS-422A and RS-485 interfaces. Always remember that serial transmission is slower than parallel transmission, but they are less noisy as compared to the parallel transmission. In both of these NICs, we can have one transmitter and multiple receivers over a single line. And the length of the line can be as big as 6000 Feet and speed up to 10 MBPS, which is quite good for this question requirement.

Explanation:

Please check the answer.

Create the algorithms in both flowchart and pseudocode form for the following two program requirements:
Given 100 item prices in an array called prices[100]. Create an algorithm that calculates the following two results: 1. Find the highest price in the array; and 2. Reduce that price of the highest by 10%
For a user that inputs 3 numbers, output those numbers in ascending order.

Answers

Answer:

Hello Brissap2814! This question has 3 parts. The first is asking you to print the highest price from an array of 100 prices. The easiest way to do this is to sort the array in ascending order, so that the highest value of the array becomes the last array element, which you can then simply print to the screen. The second part of the question is asking you to reduce the highest price that you got in the first part of the answer by 10%. Finally, the last part of the question is asking you to prompt a user to input 3 numbers and then print the numbers in ascending order. The requirements are to provide both Flowchart and Pseudocode algorithms for all 3 parts.  

Explanation:

1. Print highest price from array prices

 Algorithm: Pseudocode  

    highest_price = prices.sort.last

      OR    

    highest_price = prices.sort[100]

2.

 Algorithm: Pseudocode    

   reduced_price = highest_price – 10%  

   prices[100] = reduced_price

3.

 Algorithm: Pseudocode    

   // initialize empty array  

   input_array = []  

   // loop 3 times    

   for count in 0..2    

      prompt user input for number    

      handle exceptions for non-numeric input    

      save user input to input_array  

    end  

    // sort input array  

    input_array.sort  

    print input_array  



Green Field county stadium is planning to conduct a cricket match between two teams A and B. A large crowd is expected in the stadium as 10000 tickets have already been sold. To fulfill the viewers’ requirements, the match administrators are willing to install large display screens inside the stadium which should display the match “Live” through several cameras installed on different angles in the stadium.



After carefully reading and analyzing the given scenario, you are required to suggest the “most suitable serial transmission mode” with two strong reasons.

Note: format of your answer should be as follow:



Mode Name:



Reason 1:



Reason 2:

Answers

Answer:

Half-duplex mode, and for long-distance with the multidrop facility, as screens only need to receive at a time. And this can be ensured through RS-485 or RS-422A. And with RS-485 repeaters implementation, we can construct very long-distance networks with range even more than 4000 feet. RS-422A supports full-duplex mode, and the number of receivers allowed is merely 10, and hence the best option is RS-485. However, it allows till 4000 feet, and if the number of the camera is around 10 or less, then it can also be used. Though it is not multipoint and works on point to point, which is another limitation with it. Hence, the best option is RS-485.

Explanation:

Mode Name: Half Duplex mode ( RS-485)

Reason 1: These uses twisted-pair comprising of two cables, and these noises in one cable are canceled by noise in second, and we get noiseless output ar receiver end. Also, proper grounding through a single point ensures there is no loop current forming due to the ground voltage. and all the other voltages are always referenced to this ground voltage. In general, also note that Ethernet can be converted to RS-485 through a suitable device to form the final required network. However, here RS-485 alone will work fine.

Reason 2: Very large number of receivers are allowed, and that is around 32. And that is definitely going to solve the purpose here.

Note: even if screens use AI and feedback the video footage in realtime, at a time we will need only one to transmit, and hence, the above will work. However, in case of high accuracy through machine learning, the full-duplex will be required, however, that is not a case here. However, RS-232 provides full-duplex connectivity though it is for very short distances. And seeing the baud rates, a half-duplex does provide a very high level of accuracy. For further information, you can check how CCTV cameras are installed these days, as very high-quality Network interface cards and wires, as well as connectors, are available these days. And briefly, 4 wire RS-485 does support full-duplex communication, but remember, that is not a requirement here. And hence the correct option for this question is as mentioned in the answer section.

Using the _______ list, you can select the number of photos that will appear on each slide.


Answer is Picture Layout


Answers

Answer:

Picture Layout

Explanation:

There 4 options for this question:

A. Theme

B. Frame shape

C. Picture layout

D. Pictures in album

We can do an images design with the option (Picture Layout) we can add different images with text and some default layout when you click on picture layout, you will see all the example and if you pass the mouse over the examples, you will see a preview of the layout, this option helps us to make a design with different picture in one slide.

What are the 3 symbols that can’t be used when saving a document? (From Microsoft Word 2016) (pls helped me!)

Answers

Answer:

\, /, -

Explanation:

The three symbols are forward slash, backward slash, and the hyphen. These were allowed in previous versions of the MS Word. However, since the MS Word 2016 and a little earlier, these three symbols have been banned. And you will immediately get a message if you use these, to correct, and only then the file will be saved with that new name, and that must not have the forward or backward slash or the hyphen.

Describe the steps to play a presentation the way your audience will see it.

Answers

Answer:

Explanation:

Be mindful of the 10-minute rule. ...

Use images. ...

Represent bullets in graphical form. ...

Honor the audience. ...

Use alternatives to lecturing. ...

Connect the dots for people. ...

Learn the art of the question.

To play a presentation effectively, you should identify key ideas, ensure your slides are clear, incorporate multimedia wisely, practice thoroughly, ensure compatibility with presentation technology, cite all materials, maintain eye contact with the audience, and be prepared for any technical issues that may arise.

Steps to Play a Presentation

To ensure that your audience fully engages and absorbs your presentation, you must prepare thoroughly and execute the presentation smoothly. Here are the essential steps:

Identify key ideas – Determine your purpose, consider who your audience is, and make a concise list of main points you want to communicate.Draft your slides – Use a presentation software and begin transferring your main ideas onto slides in a clear, visually engaging manner.Integrate multimedia – Locate or create visual and audio media to support your message and make sure they are properly hyperlinked if from the Internet.Rehearse – Practice delivering your presentation to ensure fluency and confidence.Check technology compatibility – Save your presentation in a format compatible with the equipment you'll use, like converting Keynote files to .ppt for Windows PCs.Cite your materials – Acknowledge all borrowed graphics or text in each slide, rather than just at the end of your presentation.Focus on the audience – Use your slides only as a reference and maintain eye contact with your audience.Prepare for technical issues – Have a backup plan in case of technological failures to ensure your presentation can continue smoothly.

Remember, the slides are there to support your speech, not the other way around. Keep your audience's needs and learning at the forefront while you present.

When is the best time to use the add Paste Special function?
A. anytime two cells need to be added
B. anytime text in cells needs to be wrapped
C. when a single snapshot in time is wanted
D. whenever two data sets need to be merged

Answers

whenever two data sets need to be merged

How many times has the ITU-R revised the CCIR 601 international standard?

Answers

Answer:

Its edition 7, referred to as BT.601-7, was approved in March 2011 and was formally published in October 2011.

So it means it has been revised at least  7 times.

The CCIR 601 international standard has been revised several times by the ITU-R to keep up with evolving video standards and technologies.

The ITU-R, or International Telecommunication Union - Radiocommunication Sector, has revised the CCIR 601 international standard several times.

The CCIR 601 standard, also known as Rec. 601 or ITU-R BT.601, is a technical specification for digital video encoding and the format used for standard-definition video. Since its initial adoption in 1982, the CCIR 601 standard has been revised multiple times by the ITU-R to address advancements in technology and improve video quality.

The exact number of revisions may vary depending on the specific context, but as of now, it has been revised several times over the years to keep up with evolving video standards and technologies.

Learn more about  international standard  here:

https://brainly.com/question/33833768

#SPJ2

Which of these was an innovation relating to photo film that was important to the cinema industry around the turn of the 20h century?

The storage of photos in “image batteries” developed by Lumiére.
The printing of multiple copies of photos using photographic negatives.
The use of plastic photo films instead of plant-based films.
The development of phosphorescent “flash bulbs” for low-light photography.



help me find the answer
INTEGRATION OF TECHNOLOGY
Several forms of film and sound technology converged in the late 19th century. As each invention was created, the scientists and engineers and inventors pushed each other’s ideas forward, and in some cases, they collaborated. In the 1890s, Edison introduced the kinetograph. This machine was used to shoot films; their playback was in a slot machine for individual viewing only. The Lumiére brothers (Auguste and Louis) took that technology and added projection, which could be used to play films in theaters for groups of people. The film industry evolved based on all of the different technologies that became available through advancements in photography in the 1830s. Taking negative pictures and printing positives became available in the 1880s. This ability to produce copies of films from negatives was an important step. Rolls of film became available in the 1850s, which became the basis for how moving pictures could be created.

Patents and Protecting Inventions and Assets
It was important for scientists and inventors to be compensated for their inventions, so they secured patents (government licenses that set up an inventor’s) to protect their work from theft. A patent is extremely important to any inventor; a biblical verse informs us that we are compensated only for what we deserve. This is supported by a verse in Corinthians, "Now he that planteth and he that watereth are one: and every man shall receive his own reward according to his own labour." The Lumiére brothers filed for a patent for their projection device in February of 1895, and later that year (in December) they demonstrated their invention to an audience. In February of 1896, an English inventor named Robert W. Paul filed a patent for his device called a Maltese Cross, which helped the film in a projector to run smoothly. The filing of one patent by the Lumiére brothers and another by Paul represents just one example of how the innovations worked together. The process was international and nearly immediate. Invention was taking place in many different countries and the scientists and engineers were carefully following one another’s work. Innovation in the film industry spread widely and quickly.

Answers

Final answer:

The significant innovation to the cinema industry was the transition to plastic photo films, which improved the durability and flexibility for motion pictures. Photographic negatives were crucial for reproducing copies for distribution.

Explanation:

The innovation relating to photo film that was important to the cinema industry around the turn of the 20th century was the use of plastic photo films instead of plant-based films. This transition was significant because plastic films, such as those developed by George Eastman, were more durable and flexible than their plant-based predecessors, making them better suited for the emerging motion picture cameras and projectors. The development of photographic negatives, which allowed for the printing of multiple copies of photos, was also paramount because it led to the ability to reproduce films for wide distribution.

A ribbon is broken into 3 parts - name them. (From Microsoft Word 2016)

Answers

Answer:

The Ribbon is composed of three parts: Tabs, Groups, and Commands.

In which model does the color black form the key color?
The color black forms the key color in the
model.

Answers

Answer:

RGB function basically used generated any color such as black or key color combination

Explanation:

In computer, all color code is generated based on RGB functions.

RGB function is color function code red, green and blue combination. It is eight bit color code is used.

If end-user  he or she uses RGB(255,0,0) where red color code is generated

If end-user he or she uses RGB(0,255,0) where green color code is generated  

If end-user he or she uses RGB(0,0,255) where green color code is generated

Based on these combination end user can generate code and displayed in the screen

End use can use RGB(255,255,255) for white and RGB(0,0,0) for black.

Answer:

CMYK

Explanation:

I took the test and this was the correct answer to fill in the blank. I hope that this was helpful to you, please mark me the brainiest, like, and rate my answer if it was! :)

5.
PART A: How does Harry's repetition of the phrase "I'll be in my bedroom, making home
and pretending I'm not there" impact the tone of the passage?
A. It shows how much Harry loves sitting in his room all by himself so he can
practice magic.
B. It shows how much the Dursleys love Harry and respect his privacy.
It highlights the contrast between Harry's love for quiet time and Dudley's
hatred of it.
It highlights the contrast between the Dursley's excitement for the dinner and
Harry's loneliness.

Answers

The answer is : It highlights the contrast between the Dursley's excitement for the dinner and Harry's loneliness.

Harry is a lonely boy as he must remain outcast and invisible to Dursley's visitors. During this time, Dursleys are expecting some visitors which has relation to Vernon's job. Harry must stay in the bedroom so the visitors won't see him and won't ask some things about him. Since they are having a visitor, a dinner must be served to make the visit worthwhile which is what the Dursleys are looking forward to.

Primary U.S. interstate highways are numbered 1-99. Odd numbers (like the 5 or 95) go north/south, and evens (like the 10 or 90) go east/west. Auxiliary highways are numbered 100-999, and service the primary highway indicated by the rightmost two digits. Thus, I-405 services I-5, and I-290 services I-90.
Given a highway number, indicate whether it is a primary or auxiliary highway. If auxiliary, indicate what primary highway it serves. Also indicate if the (primary) highway runs north/south or east/west.

Answers

Answer:

num1 = input("Enter the Highway Number?(max digit allowed 3)")

n = int(num1)

def calc1(n):

   Lst = []

   while n > 0:

       remainder = n % 10

       Lst.append(remainder)

       quotient = int(n / 10)

       n = quotient

       

   return(Lst)

n1=calc1(n)

if len(n1) <3:

   if n1 % 2 == 0:

       print("The Highway(primary) go east west")

   else:

       print("The Highway(primary) go north south")

else:

   if len(n1)== 3:

       Highwaynumber = int(n1[1]) * 10 + int(n1[0])

       if Highwaynumber % 2 == 0:

           print("The Highway serves primary highway that go east west and primary highway number is I-" +str(Highwaynumber))

       else:

           print("The Highway serves primary highway that go north south and primary highway number is I-" +str(Highwaynumber))

   else:

       print("You entered wrong highway number")

Explanation:

First, we find all the digits of the number and store it in a list. This list is dynamic in nature. However, for this problem. we have mentioned that a number of digits should not be more than 3 as highway numbers cannot be of a higher order than that. And thereafter the program is self-explanatory.

While only 7 bits are needed per ASCII code, most computers use 8 bits per ASCII code. If an email message has 500 characters, how many bits would a computer use to store that email, using 8 bits per ASCII code

Answers

Final answer:

To store a 500 character email message where each character uses 8 bits per ASCII code, a computer would use 4,000 bits. In terms of bytes, the email will be 500 bytes and will take up roughly 0.488 kilobytes (KB) of storage.

Explanation:

If an email message contains 500 characters, and each character is represented by an ASCII code that uses 8 bits, we would calculate the total number of bits used to store the email by multiplying the number of characters by the number of bits per character.

So, for 500 characters stored using 8 bits per character:

500 characters x 8 bits per character = 4,000 bits

The computer would use 4,000 bits to store an email that is 500 characters long. It's also useful to remember that 1 byte is equal to 8 bits, so this email would be 500 bytes in size. If we want to convert this to kilobytes (KB), we would divide by 1024 (since 1 KB is equal to 1024 bytes).

500 bytes / 1024 ≈ 0.488 KB

Therefore, a 500 character email would take up almost half a kilobyte of storage space when each character is encoded using 8 bits.

Green Field county stadium is planning to conduct a cricket match between two teams A and B. A large crowd is expected in the stadium as 10000 tickets have already been sold. To fulfill the viewers’ requirements, the match administrators are willing to install large display screens inside the stadium which should display the match “Live” through several cameras installed on different angles in the stadium.

After carefully reading and analyzing the given scenario, you are required to suggest the “most suitable serial transmission mode” with two strong reasons.

Format of your answer should be as follow:

Mode Name:
Reason 1:
Reason 2:

Answers

Answer:

Mode Name:  RS-485, half duplex, 2 wire based for serial data transmission

Reason 1:   less noisy

Reason 2: around 32 receivers allowed, and that is enough for the requirement mentioned in this question.

Explanation:

Serial data transmission is of two types, which are synchronous data transmission and asynchronous data transmission. However, here continuous transmission is required, and hence no stop is required. Hence, it's the Synchronous data transmission. Also, you need to only transmit at a time from one transmitter, and no receiver or the screen is going to respond in that time, considering AI surveillance is not in progress meanwhile. However, we have 4 wire, full-duplex RS-485 also available, though here we need only 2 wire half-duplex RS-485. And this will certainly cater to our requirements. And we can but should not use RS-422A as the number of receivers, in that case, is limited to merely 10.

Write a loop to print 56 to 70 inclusive (this means it should include both the 56 and 70). The output should all be written out on the same line.

Answers

Answer:

for i in range(56,71):

   print(i)

Explanation:

By the range 56 to 71 it means that for loop will run when i=56 to i=71, but the upper bound is one less than the upper bound, and which is 70. So the above loop will print integers from 56 to 70.

And the above code is in Python.

Answer:

for i in range(56, 71):

  print(i, end=" ")

What does prioritization help you to do?

Answers

Answer:

That means deciding not to do things you'd really like to do. It also means deciding what's the most important task even when everything on your list feels crucial. But if you can prioritize until you have only one thing to focus on right now, you can't help but get to work.

Explanation:

Answer:

While a solid time management system is critical, to keep homework time moving along, your child needs to master the art of prioritization. This helps you save time by identifying tasks that deserve immediate attention, those that are important but less pressing, and those that can be considered “long-term” to-dos.

hope this will help.

Other Questions
The distance versus time graph for Object A and Object B are shown.A graph titles Distance vs Time. A straight slanting line is drawn through point 7 on the y-axis and this line is labeled Object A. The graph for Object B is a straight slanting line passing through the originWhat is the similarity between Object A and Object B? Both have the same slope. Both move with variable speed. Both move with constant speed. Both start the journey from the same point. Why did Selena Quintanilla run after she got shot? What fueled her to run for her life? A revolutionary war cannon, with a mass of 2240 kg, fires a 15.5 kg ball horizontally. The cannonball has a speed of 131 m/s after it has left the barrel. The cannon carriage is on a flat platform and is free to roll horizontally. What is the speed of the cannon immediately after it was fired?Answer in units of m/s. how does dehydration sythesis relate to macromolucules and getting energy from food? 4. Who was the founder of the Quaker Colony?A. John SmithB. Anne HutchisonC. William PennD. Francis Drake Which THREE statements correctly describe the impact of the New Deal on Georgia?Group of answer choicesIt helped modernize agriculture.It brought electricity to rural areas.It contributed to the end of sharecropping.It was the start of the Great Migration.It outlawed segregation in schools.It provided health care for the elderly. Two runners start simultaneously from the same point on a circular 200-m track and run in the same direction. One runs at a constant speed of 6.20 m/s and the other runs at a constant speed of 5.50 m/s. g PLEASE HELP!!!!Modeling the Calvin Cycle Exploration1. Glucose, a six-carbon chain, results from the output of the Calvin cycle. Did your exercise generate a glucose molecule?2. When is glucose generated?3. What is the chemical formula for photosynthesis?4. Did the complete process of photosynthesis take place in the way you modeled it in this activity? Explain your answer. Where was the Nubian kingdom located In a recent airline disaster, an airliner ying at 30,000ft,550mi/h, lost power and fell to Earth. The mass of the aircraft was 255,000 lb. If the magnitude of the work done by drag force on the plane during the fall was 2.96 106 Btu, estimate the velocity of the aircraft at the time of impact, in mi/h. Let g = 32.08 ft/s2. A partner who invests money in a business, but does not take an active role in management or assume unlimited liability for the firm's losses is known as a(n): Which job title would be given to someone responsible for supervising production in a manufacturing setting? 1. Martin Luther wanted to reform the Church because 1.Complete the sentence.Les filles rentrent ________ aroport. (1 point)dedesde l'de la2.Complete the sentence.J'aime la moto ________ Laurent. (1 point)dedesdude la3.Complete the sentence.Je viens ________ France. (1 point)dede l'desdu4.Complete the sentence.Ma famille aime aller ________ plage le weekend. (1 point) la l'auaux5.Complete the sentence.Ce soir mes cousins et moi mangeons ________ appartement de notre ami. (1 point)auaux la l'6.Complete the sentence.Les touristes canadiens arrivent ________ Canada. (1 point)de l'de ladudes7.Complete the sentence.C'est la sur ________ prof Mme. Pierre. (1 point)dede ladude l'8.Complete the sentenceNous sommes ________ magasins de sport. (1 point) la l'auaux9.Complete the sentence.Les films policiers sont ________ films intressants. (1 point)dedesdude l'10.Complete the sentence.Nous allons ________ cinma. (1 point)au la l'aux Research evidence suggests the _____ is important in the formation of explicit memories and the _____ is important in the formation of implicit memories. Under a dilation centered at the origin, the point (-4 , 3) has image at (8 , -6) The dilation is Several groups of American stockbrokers have been asked to predict the future of stock markets in Japan. Which statement is the MOST likely scenario in terms of their predictions?They will be accurate in their predictions, which will equal their confidence in their predictions.They will be more correct than confident in their predictions.They will be more confident than correct in their predictions.Because of hindsight bias, they will underestimate their confidence.They will be more confident than correct in their predictions. At the preconventional level of moral development, individuals are guided by an internal set of values based on universal principles of justice. a. True b. False The green movement Select one: a. is not a good strategic consideration for contemporary firms. b. will never benefit a firm financially. c. is benefiting all firms financially. d. has created jobs. The unit GtC is used throughout the lab and stands for gigatonnes of carbon. What is one GtC equal to?A: one billion kilograms of carbonB: one hundred kilograms of carbonC: one thousand kilograms of carbonD: one trillion kilograms of carbon Steam Workshop Downloader