Python
Write a program that reads the student information from a tab separated values (tsv) file. The program then creates a text file that records the course grades of the students. Each row of the tsv file contains the Last Name, First Name, Midterm1 score, Midterm2 score, and the Final score of a student. A sample of the student information is provided in StudentInfo.tsv. Assume the number of students is at least 1 and at most 20.
The program performs the following tasks:
Read the file name of the tsv file from the user.
Open the tsv file and read the student information.
Compute the average score of each student.
Assign a letter grade to each student based on the average score in the following scale:
A: 90 =<>
B: 80 =< x=""><>
C: 70 =< x=""><>
D: 60 =< x=""><>
F: x <>
Compute the average of each exam.
Output the last names, first names, scores, and letter grades of the students into a text file named report.txt. Output one student per row and separate the values with a tab character.
Output the average of each , with two digits after the decimal point, at the end of report.txt. Hint: Use the format specification to set the precision of the output.
Ex: If the input of the program is:
StudentInfo.tsv
and the contents of StudentInfo.tsv are:
Barrett Edan 70 45 59
Bradshaw Reagan 96 97 88
Charlton Caius 73 94 80
Mayo Tyrese 88 61 36
Stern Brenda 90 86 45
the file report.txt should contain:
Barrett Edan 70 45 59 F
Bradshaw Reagan 96 97 88 A
Charlton Caius 73 94 80 B
Mayo Tyrese 88 61 36 D
Stern Brenda 90 86 45 C
Averages: midterm1 83.40, midterm2 76.60, final 61.60
Coding:
import csv
if __name__ == '__main__':
filename = input("")
tsv_file = open(filename)
read_tsv = csv.reader(tsv_file, delimiter="\t")
grade_list = []
ave1 = 0.0
ave2 = 0.0
ave3 = 0.0
tc = 0
for row in read_tsv:
a = float(row[2].strip("\n"))
b = float(row[3].strip("\n"))
c = float(row[4].strip("\n"))
ave1 += a
ave2 += b
ave3 += c
tc += 1
d = (a + b + c) / 3.0
if d >= 90:
grade_list.append('A')
elif 80 <= d=""><>
grade_list.append('B')
elif 70 <= d=""><>
grade_list.append('C')
elif 60 <= d=""><>
grade_list.append('D')
else:
grade_list.append('F')
count = 0
ave1 = ave1/tc
ave2 = ave2/tc
ave3 = ave3/tc
tsv_file = open("StudentInfo.tsv")
read_tsv = csv.reader(tsv_file, delimiter="\t")
with open("report.txt", "w") as f:
for row in read_tsv:
f.write("{0}\t{1}\t{2}\t{3}\t{4}\t{5}\n".format(row[0], row[1], row[2], row[3], row[4], grade_list[count]))
print("{0}\t{1}\t{2}\t{3}\t{4}\t{5}\n".format(row[0], row[1], row[2], row[3], row[4], grade_list[count]))
count += 1
f.write("\n")
print("\n")
f.write("Averages: midterm1 {:.2f}, midterm2 {:.2f}, final {:.2f}\n".format(ave1, ave2, ave3))
print("Averages: midterm1 {:.2f}, midterm2 {:.2f}, final {:.2f}\n".format(ave1, ave2, ave3))

Answers

Answer 1

The program that can read the student information will be:

opening file for reading fileread= open("StudentInfo.tsv")

# opening file for writing

filewrite = open("report.txt", "w")

# reading every line from file

for line in fileread: # removing unnecessary terminal spaces line-line.strip()

# splitting line on mark of tab 1st line.split("\t")

# adding data to list. sum = int(1st [2])+int (1st [3])+int(1st

# calculating average = sum/3

if average>= 90: grade= 'A'

elif average >=80: grade= 'B

elif average>=70: grade='C'

elif average>=60: grade= 'D'

else:

grade = 'F'

# writing data to file filewrite.write(line+"\t"+grade+"\n")

except FileNotFoundError: print("Error: File not found")

finally:

# closing file

fileread.close()

filewrite.close()

What is a program?

A computer program is the set of instructions that are in a programming language for a computer to execute.

The steps will be:

Identify the problem.

Find a solution.

Code it.

Test it.

The program is illustrated above.

Learn more about program on:

https://brainly.com/question/26642771

#SPJ1


Related Questions

Which task would be best completed by using the Find Unmatched Queries Wizard for two tables named “Products Offered” and “Customers”?

a. finding customers who have bought a minimum number of products
b. finding customers who have bought more than one of the same product
c. finding a company’s products that have never been sold
d. finding a company’s products that have sold for more than a certain amount

Answers

The task that would be best completed by using the Find Unmatched Queries Wizard for two tables named “Products Offered” and “Customers” is option b:  finding customers who have bought more than one of the same product.

What does mismatched query wizard mean?

You can build a query using this wizard that reports any orphaned or widowed records between two Microsoft Access tables. When there is no corresponding record in the one-side (parent or primary) table, a record in the many-side (child or related) table relationship is said to be orphaned.

Therefore, In the Queries group on the Create tab, select Query Wizard. Double-click Find Unmatched Query Wizard in the New Query dialog box. Select the table with the mismatched records on the wizard's first page, and then click Next.

Learn more about Customers from

https://brainly.com/question/380037
#SPJ1

The _____ staff functions include load estimation and load monitoring and designing and implementing fault-resistant technologies

Answers

The network operations staff functions include load estimation and load monitoring and designing and implementing fault-resistant technologies.

What is network operations?

In order to monitor, manage, and react to warnings on their network's availability and performance, businesses and service providers rely on network operations, which are the tasks carried out by internal networking personnel or outside parties.

The best definition of project management is a group of formal methods for organizing and supervising the actions taken to accomplish a particular objective.

The activities carried out by staff to monitor, manage, and react to warnings on a network's availability and performance are referred to as network operations management.

An enterprise's information technology (IT) administrators, whether internal or external, oversee, monitor, and maintain a communications network from a network operations center, or NOC.

To learn more about network operations refer to:

https://brainly.com/question/1326000

#SPJ4

your office needs a printer that can print on carbon-type multipart forms. what technology should you use? choose the best response.

Answers

Answer:

Impact

Explanation:

is there any connection between the danger katagiri faces in his daily life and the danger that lurks beneath tokyo? super frog saves toyko

Answers

One of the main themes of "Super-Frog Saves Tokyo" is that even though rewards or recognition are doubtful, there are some responsibilities one must fulfill in life.

Expalin about Super-Frog Saves Tokyo?Katagiri finds reassurance and validation for a lifetime of hidden hardships in Frog and his quest.The Professor, who Tokyo initially encounters in the crew, is the one who prevents her from spending the rest of her life in prison.About 400 years have passed since the founding of the city of Tokyo. After Tokugawa Ieyasu created the Tokugawa Shogunate here in 1603, the city, which had previously been known as Edo, began to prosper.Tokyo's origins can be traced to the late 19th century. Sentaro Kitajima, a politician, petitioned the newly elected government on April 4, 1868, requesting that the region be known as Tokyo. Tokyo was renamed Edo as a result of Kitajima's plea.

To learn more about Super-Frog Saves Tokyo refer to:

https://brainly.com/question/17191643

#SPJ4

while working on a linux server, you are unable to connect to windows server 2016 system across the internet. you are able to ping the default gateway on your own network, so you suspect that the problem lies outside of the local network. which utility would you use to track the route a packet takes as it crosses the network?

Answers

Traceroute utility can be used to track the route a packet takes as it crosses the network.

The command "traceroute" launches network diagnostics tools. Administrators can more effectively address connectivity problems with the help of these tools, which track the routes data packets take from their source to their destinations. This command is known as tracert on Windows systems and as traceroute on Linux and Mac systems.

Both traceroute and tracert work in a similar manner by mapping the path that data takes from one place in a network to a certain IP server. Data must "hop" via a number of hardware components, including switches and routers, in order to communicate between two sites. When possible, Traceroute displays the device name and IP address along with the information and round-trip time (RTT) for each hop.

While ping can indicate whether a problem exists, traceroute can assist in locating the issue. Think about visiting a website where the pages are taking a while to load to get an idea of how you might use traceroute. To locate the route of the problem in this situation, use traceroute to find the locations with the greatest delays.

To learn more about Traceroute click here:

brainly.com/question/16889398

#SPJ4

in java
Write a method called switchThem that accepts two integer arrays as parameters and switches the contents of the arrays. Take into account that the arrays may be of different sizes.

Answers

CODE:

public static void switchThem(int[] arr1, int[] arr2){
   int temp;
   int smallerSize = arr1.length < arr2.length ? arr1.length : arr2.length;
 for(int i = 0; i < smallerSize; i++){
   temp = arr1[i];
   arr1[i] = arr2[i];
   arr2[i] = temp;
}
}

What is code ?

Code, often referred as code, refers to language that a computer programmer has created in a computer language. Languages like C, C#, C++, Java, Perl, and PHP are examples. A somewhat less official term for text produced in markup or style languages, such as HTML and CSS is coding (Cascading Style Sheets). As an illustration, you may hear people are referring to code as "C code," "PHP code," "HTML code," or "CSS code."

To know more about code
https://brainly.com/question/20712703
#SPJ4

_____ is a method of querying and reporting that takes data from standard relational databases, calculates and summarizes the data, and then stores the data in a special database called a data cube.
Online analytical processing

Answers

Online analytical processing is a method of querying and reporting that takes data from standard relational databases, calculates and summarizes the data, and then stores the data in a special database called a data cube.

What is  online analytical processing?

OLAP (online analytical processing) is a software that allows users to extract and query data conveniently and selectively in order to examine it from many perspectives. Data is collected from many data sources and kept in data warehouses before being cleansed and sorted into data cubes to enable this type of analysis. Each OLAP cube contains data categorized by dimensions (such as customers, geographic sales region, and time period) obtained from data warehouse dimensional tables. Dimensions are then filled with members that are structured hierarchically (such as customer names, nations, and months). OLAP cubes are frequently pre-summarized across dimensions to significantly reduce query time as compared to relational databases.

OLAP can be used to mine data or find previously unknown relationships between data components. Because not all transactional data is required for trend analysis, an OLAP database does not need to be as massive as a data warehouse. Data from current relational databases can be loaded into a multidimensional database for OLAP using Open Database Connectivity (ODBC).

Online analytical processing is a method of querying and reporting that takes data from standard relational databases, calculates and summarizes the data, and then stores the data in a special database called a data cube.

To know more about online analytical processing, check out: https://brainly.com/question/29562301

#SPJ1

Online analytical processing is a technique for querying and reporting that pulls information from common relational databases, computes and summarises it, and then stores it in a unique database called a data cube.

What is database?
A database in computing is a structured collection of data that is electronically accessible and stored. Large databases have been hosted on computer clusters as well as cloud storage, whereas small databases could be stored on a file system. Data modelling, effective data representation as well as storage, query languages, privacy and security of sensitive data, as well as distributed computing issues, such as supporting concurrent access as well as fault tolerance, are all part of the design of databases. In order to collect and process data, a database management system (DBMS) communicates with applications, end users, and the database itself. The primary tools offered to manage the database are also included in the DBMS software.

To learn more about database
https://brainly.com/question/26096799
#SPJ1

you should omit spaces when you assign a variable without using single or double quotation marks around its value. t/f

Answers

It is normally recommended to enclose a variable's name in double quotations when referring it.

With the exception of $,'(backquote), and, this precludes reinterpretation of any special characters contained in the quoted string (escape). Double quotation marks can be used to denote a string in a formula. The double quotations can also be escaped, which instructs Numbers, Pages, and Keynote to return the quotation marks as a text string rather than treating them as the beginning or end of a string. Simply put, quote everything where word splitting and wildcard expansion are not handled by the shell. The text in between single quotes is protected verbatim. When you need to make sure that the shell doesn't even touch the string, this is the right tool.

Learn more about variable here-

https://brainly.com/question/13375207

#SPJ4

which compatibility issues can be fixed for an app by using the capabilities included in windows 10? (c

Answers

Strange colors appear when the color depth is greater than 16 bits.

What application is used to distribute compatibility updates across many computers?when there are more than 16 bits of color.It has *weird colors.When the screen resolution is 1920x1024, the.NET Framework version is incorrect and the full-screen display quality is poor.a version check to make sure the program is compatible with Windows XP*Right-clicking and running as administrator are necessary.The Compatibility Administrator program assists in resolving any application compatibility issues before installing a new version of Windows on the machines in your company.It is possible to fix some incompatibilities brought on by changes between Windows operating system versions.

To learn more about capabilities included in windows 10 refer to:

https://brainly.com/question/29353802

#SPJ4

In the real world, a many-to-many relationship exists between two data tables in an Access file. The data tables are titled “Full-time Employees” and “Retirement Benefits.” Which statement best describes the process for setting up the relationship between these two tables?

a. Create a one-to-one relationship for each relationship shared by the tables.
b. Create a one-to-many relationship for only the most important relationships shared by the tables.
c. Create a junction table to break the relationship into two separate one-to-many relationships.
d. Create a cross-reference table to delete any unneeded relationships in both tables.

Answers

The statement that best describes the process for setting up the relationship between these two tables is option C: Create a junction table to break the relationship into two separate one-to-many relationships.

What are the types of relationship which we can create between two tables?

Click New in the Manage Relationships box. Select a table from the list by clicking the Table arrow in the Create Relationship box. This table should be on the many side when there is a one-to-many relationship.

A relationship is established by comparing data in key columns, which are typically fields or columns with the same name in both tables. Most frequently, a connection links a field in one table to the main key, or the column that serves as each row's unique identity, in another table.

Therefore, The solution is to divide our data into various tables and establish connections between them. Normalization is the practice of dividing up data in this way to eliminate duplication and enhance data integrity.

Learn more about relationships from

https://brainly.com/question/2587531
#SPJ1

which of the following gestures would you use if you want to activate a mode that enables you to move an item with one finger to a new location on your new tablet?

Answers

On your new tablet, you can toggle on a mode that lets you move an object to a new spot only with one finger by swiping your finger across the screen.

What are gestures ?

A gesture is a visible body activity that conveys specific messages in place of or in addition to words. It is a type of nonverbal or non-vocal communication. Gestures might include the movements of the hands, face, or other body parts. Physical non-verbal communication like proxemics, purely expressive displays, or displays of shared attention are different from motions in that they convey specific messages. People can express a wide range of emotions and ideas through motions, from hostility and scorn to admiration and affection.

To know more about gestures
https://brainly.com/question/12115354
#SPJ4

The list that a lookup field displays is called the ___________.

Answers

The list that a lookup field displays are called the Lookup List.

What is a Lookup field?

A lookup field is a table field that gets its value from some other table or query. To construct a lookup field, utilize the Lookup Wizard wherever feasible.

The Lookup Wizard automates the procedure by populating the required field attributes and creating the necessary database associations.

A lookup field can supply values for a cascading list and make data entry in a field easier.

The Lookup Wizard creates a connection between tables. It generates a foreign key that references to another's main key.

Learn more about the lookup field:
https://brainly.com/question/25698028

#SPJ1

what type of error occurs when a programmer uses an incorrect calculation or leaves out a programming procedure?

Answers

Answer:

A logic error

Explanation:

two stations running tcp/ip are engaged in transferring a file. this file is 100k long, the payload size is 100 bytes, and the negotiated congestion window size is 300 bytes. the sender receives an ack 1500 from the receiver. • which bytes will be sent next? • answer: bytes 1500 through 1599

Answers

The number of bytes that will be sent or transmitted next is; 1620 bytes

How to find the number of bytes?

We are given that:

The file size = 100 KB

The  payload size = 100 bytes

The negotiated window size = 300 bytes.

This tells us that the sliding window can only accommodate a maximum number of 300/100 = 3 payloads

The sender receives an ACK 1500 from the receiver.

Total byte of the file is :

1000 KB = 1024000 bytes

The TCP header requires 20 bytes and IPV4 header requires 20 bytes.

Total TCP/IP header is composed of 40 bytes.

Sender receives an ACK 1500 from the receiver and as such the overhead which represents the bytes that will be sent next is;

1500 + (3 * 40)

= 1500 +  120

= 1620 bytes

Read more about Number of Bytes at; https://brainly.com/question/13484450

#SPJ1

when the router looks up the destination in the routing table for every single packet, it is called?

Answers

Route lookups, also known as route resolution, are when the router checks the target in the routing table for each and every packet.

Resolution – what is it?

The number of unique pixels that can be displayed in each dimension depends on the display resolution or display modes of the a digital television, computer monitor, or display device. It is a vague word, especially since projection displays that use fixed picture-element (pixel) arrays, flat-panel displays, including liquid-crystal displays, and ray tube ( crt tube (CRT) displays, all regulate the shown resolution individually. Typically, it is stated as width height with the units in pixels, such as 1024 768, which denotes a breadth of 1024 pixels and a height of 768 pixels.

To know more about resolution
https://brainly.com/question/984943
#SPJ4

problem write a program to check if a given word is a palindrome. requirement use recursive programming paradigm. string manipulation is not acceptable (string reversal) submission the source code in a js file. your first name your last name assignment.js tip this problem can be solved in 3 lines of code using recursive programming.

Answers

Program to check if a given word is a palindrome is // Function to check if the given string is a palindrome (using recursion)

function isPalindrome(string) {

   if (string.length <= 1) return true;    // If the string is empty or has only one character, it is a palindrome by definition

   if (string[0] !== string[string.length - 1]) return false;  // If the first and last characters are not the same, the string is not a palindrome

   return isPalindrome(string.slice(1, -1));   // Recursively check the rest of the string

}

// Test 1

var string = "madam";

console.log(isPalindrome(string));

// Test 2

var string2 = "madams";

console.log(isPalindrome(string2));

To learn more about palindrome

https://brainly.com/question/24304125

#SPJ4

susan has discovered that the vice president of marketing has brought in her own personal tablet device and connected it to the company's secure wireless network. this violates the organization's it security policies. susan informs the chief information security office (ciso) of the situation. what level of control must the ciso exercise with this upper-level manager?

Answers

Since Susan has discovered that the vice president of marketing has brought in her own personal tablet device and connected it to the company's secure wireless network. The level of control that must the CISO exercise with this upper-level manager is option B. Connectivity

Why it is not advisable to use personal devices at work?

When an employee uses their phone, tablet, or personal laptop outside of the workplace, the security risks grow. These risks can include connecting to unprotected WiFi networks, losing or stealing the device, or even being observed by snoopers.

Note that Unacceptable actions include using a personal computer and browsing websites with vulgar, or otherwise unlawful content. using a computer to commit any type of fraud, or to pirate software, movies, or music.

Hence, in the context of the above, All the tools and services that let users connect to a communication network collectively are referred to as connectivity. It includes rising data volumes, wireless and wired methods, and industry standards.

Learn more about Connectivity from

https://brainly.com/question/26956118
#SPJ1

See full question below

Susan has discovered that the vice president of marketing has brought in her own personal

tablet device and connected it to the company's secure wireless network. This violates the

organization's IT security policies. Susan informs the chief information security office (CISO) of

the situation. What level of control must the CISO exercise with this upper-level manager?

A. Accounting

B. Connectivity

C. Activity

D. Authentication

A data analyst writes the code summary(penguins) in order to show a summary of the penguins dataset. Where in RStudio can the analyst execute the code? Select all that apply. R console pane
Source editor pane Environment pane
Files tab

Answers

Code execution in Rstudio is analyzed in the R console panel and the Source editor panel.

Rstudio

R is a programming language for statistical computing and graphics, and RStudio is an integrated development environment. RStudio Server runs on a remote server and allows online browser access to RStudio, while RStudio Desktop is a regular desktop application. It has graphing, history, debugging, and workspace management features, as well as a console-based syntax highlighting editor that supports direct code execution.

An excellent environment for statistical computing and design is provided by RStudio, which provides numerous statistical-related libraries. An advantage of using R for this project is R's ability to easily reproduce and share your analysis.

Learn more about RStudio: brainly.com/question/29342132

#SPJ4

The open source movement makes _____ available to everyone in an effort to continue to build and improve the functionality of open source software.

Answers

The open source movement makes source code available to everyone in an effort to continue to build and improve the functionality of open source software.

What is meant by source code ?

In general, programming statements written by a programmer using a text editor or visual programming tool and then saved in a file are referred to as source code. When the source code is compiled using a C compiler, the output, a compiled file, is referred to as object code.

The foundation of a computer programme is its source code. It includes declarations, commands, instructions, functions, loops, and other statements that serve as guidelines for how the programme should run.

One or more text files kept on a computer's hard drive typically contain the source code that makes up a programme; these files are typically meticulously organized into a directory tree known as a source tree.

To learn more about source code refer to :

https://brainly.com/question/4593389

#SPJ4

an administrator applied an operating system patch to a cloud vm instance, but the patch broke some of the system’s functionality. how can the administrator return the system back to pre-patch configuration?

Answers

An administrator applied an operating system patch to a cloud VM instance, but the patch broke some of the system’s functionality. The administrator can roll the patch back to return the system back to the pre-patch configuration.

What is a patch?

A patch is an OS and software update that fixes security flaws in a particular program or product. Software developers may decide to provide updates to address performance issues as well as add better security features.

An update, fix, or improvement to a computer program or the data that supports it is called a patch. This involves addressing bugs and other issues, such updates are typically referred to as bug fixes or bug fixes. A patch is frequently created to enhance the performance, usability, or usefulness of a program. For operating system and application upgrades, software companies offer the majority of fixes.

To learn more about a patch, use the link given
https://brainly.com/question/26563535
#SPJ4

The​ feed-mix problem from agricultural applications is a special case of the more general.

Answers

The feed-mix problem from agricultural applications is a special case of the more general Diet problem.

What are Diet Problem?

The goal of the diet problem is to choose a set of foods that will meet a set of daily nutritional requirements at the lowest possible cost. The problem is written as a linear program with the goal of minimizing costs and the constraints of meeting the specified nutritional requirements.

Dietary constraints typically govern the number of calories as well as the amount of vitamins, minerals, fats, sodium, and cholesterol consumed. While the mathematical formulation is straightforward, the solution may not be appealing! Nutritional needs can be met without regard for taste or variety, so think about the outcome before diving into a meal from an "optimal" menu!

To know more about linear program, visit: https://brainly.com/question/24038519

#SPJ4

Which of the following will look at the /etc/passwd file for any lines containing the word root and display them out to the screen while simultaneously writing the results to a file? (Choose two.)

Answers

grep root/etc/password | tee~/root.txt are the two lines containing the word root and display them out to the screen while simultaneously writing the results to a file

What is the word root in the LINUX?

The root account has essentially boundless access to all programs, files, and resources on the system. The root account is a special user with user ID (UID) 0 in the usually given the username root.

Both linux and unix have the same root words, the root users are same as the root words so for the root word identification the line greproot/etc /password is used

and for the displaying of the used keyword and root word is root word is tee~/root.txt

Hence to conclude root key word and displaying that in LINUX  is grep root/etc/password | tee~/root.txt

To now more on linux functions follow this link:

https://brainly.com/question/25480553

#SPJ4

BitLocker Encryption can be deployed three ways. Identify which of the descriptions best describes the Computer Authentication method.

Answers

To  know  the descriptions best term about the Computer Authentication method is that On the motherboard of many laptops is a chip known as the TPM (Trusted Platform Module) chip. The BitLocker encryption key can be found on the TPM chip (also called the startup key).

How can a computer be verified?

The user or machine must demonstrate their identity to the server or client during authentication. A user name and password are typically required for server authentication. Card-based authentication, retinal scanning, voice recognition, and fingerprint authentication are further options.

Therefore, Data theft or exposure from lost, stolen, or improperly retired computers is a hazard that is addressed by the OS system-integrated data protection feature BitLocker Drive Encryption.

Learn more about Computer Authentication method from

https://brainly.com/question/3522088
#SPJ1

to test dns configuration by resolving a host name to an ip address, which command or commands can you use? (choose all that apply.)

Answers

The commands used to test DNS configuration by resolving a host name to an ip address are


a. nslookup hostname*****

b. dig hostname

c. host hostname

Define DNS configuration.

A hierarchical and distributed naming system for computers, services, and other resources on the Internet or other Internet Protocol networks is called the Domain Name System (DNS). The domain names granted to each of the connected entities are linked to various pieces of information.

The Domain Name System, or DNS, converts domain names into machine-understandable IP addresses. DNS makes sure that the internet is not only easy to use but also operates smoothly, loading whatever content we request promptly and effectively.

To learn more about DNS Configuration, use the link given
https://brainly.com/question/27960126
#SPJ4

after reading the email, you notice that the acronym whm appears in multiple places. you look it up online, and the most common result is web host manager. that doesn’t seem right to you, as it doesn’t fit the context of a feminist bookstore. how do you proceed?

Answers

After reading the email, you notice that the acronym whm appears in multiple places, the way to proceed is option C: Send your supervisor a polite, concise email, asking them to confirm the meaning of WHM.

What is the main purpose of email?

Email can be used for a variety of things, including getting in touch with friends, talking with professors and bosses, getting information, and submitting applications for jobs, internships, and scholarships. Your goals will determine the formality, target audience, and desired results of the messages you send.

E-mail, or electronic mail, is seen as its full name. The modern method of communication is email. Due to the advancements made in technology over the past few years and it including the rise of computers, the internet, and smartphones and this method of communication is now widely used.

Therefore, in regards to the question above, You should therefore be careful not to write anything that could be considered impolite in an email. Asking them to confirm the meaning of WHM in a polite, brief email to your supervisor is appropriate.

Learn more about email from

https://brainly.com/question/24688558
#SPJ1

See full question below

After reading the email, you notice that the acronym WHM appears in multiple places. You look it up online, and the most common result is web host manager. That doesn’t seem right to you, as it doesn’t fit the context of a feminist bookstore. How do you proceed?

Schedule a meeting with your supervisor, the client, and another analyst on your team to figure out the meaning.

Proceed with the project assuming WHM must mean web host manager.

Send your supervisor a polite, concise email, asking them to confirm the meaning of WHM.

Call the client to ask what WHM means and inform them that using acronyms is not a professional business practice.

due to a security risk to your network, you need to temporarily disable ip forwarding for the network's linux server machine. which file will you access to do this?

Answers

The '/etc/sysconfig/network' is the file you will access to temporarily disable IP forwarding for the network's Linux server machine.

IP forwarding is the ability of an operating system to allow the entering of incoming network packets on one interface. IP forwarding recognizes that these packets are not meant for the system itself, but that they should be passed on to another network, and then are forwarded accordingly. As per the given scenario where because of a security risk to your network, you are required to disable IP forwarding for the network's Linux server machine temporarily. The '/etc/sysconfig/network' is the file you should access to serve the purpose.

You can learn more about IP forwarding at

https://brainly.com/question/29544578

#SPJ4

g match the descriptions with the methods provided for the java implementation of the producer-consumer problem group of answer choices if the array is full, wait until a spot becomes available [ choose ] if the array has space, put an item in it and awaken all therads [ choose ] if the array is empty, wait until it contains an item [ choose ] if the array has items, obtain an item and awaken all threads [ choose ] keep on depositing new items into a queue [ choose ] keep on fetching items from a queue

Answers

if the array is full, wait until a spot becomes available [wait()] if the array has space, put an item in it and awaken all therads [notifyAll()] if the array is empty, wait until it contains an item [wait()] if the array has items, obtain an item and awaken all threads [notifyAll()] keep on depositing new items into a queue [offer()] keep on fetching items from a queue [poll()]

What is array?
An array is a type of data structure used in computer science that contains a set of elements (values or variables), each of which is designated by an array index or key. An array is stored in a way that allows a mathematical formula to determine each element's position from its index tuple. A linear array, sometimes referred to as a one-dimensional array, is the most basic type of data structure. The memory identifiers 2000, 2004, 2008,..., 2036 (or 0x7D0, 0x7D4, 0x7D8,..., 0x7F4) can be used to store an array of ten 32-bit (4-byte) arithmetic operations with indices 0 through 9, so that the element with index I does have the address 2000 + I 4). [4] The first address, base address, or base address is the memory location of the initial element of an array.

To learn more about array
https://brainly.com/question/24275089
#SPJ1

what tool does autocad use to solve the problem of very small details that are difficult to see in a large drawing?

Answers

AutoCAD uses layouts in Paper Space to solve the problem of very small details that are difficult to see in a large drawing.

What is AutoCAD?

AutoCAD is a type of CAD software that is focused on drawing and modeling in 2D and 3D, if we had to sum it up in a few words. It enables the creation and modification of geometric models with almost infinite potential to create all kinds of structures and objects.

AutoCAD has expanded beyond its traditional use in the worlds of architecture and engineering to enter the worlds of graphic and interior design thanks to its versatility.

The current version of AutoCAD includes a wide range of specialized auxiliary tools that cover all industrial fields related to 2D design and 3D modeling.

Learn more about AutoCAD

https://brainly.com/question/26979679

#SPJ4

Ramirez company installs a computerized manufacturing machine in its factory at the beginning of the year at a cost of $83,600. The machine's useful life is estimated at 20 years, or 398,000 units of product, with a $4,000 salvage value. During its second year, the machine produces 33,800 units of product.

Answers

Machine cost: $83,600 Cost less Salvage Value= $ 83600 - $ 40 or Salvage Value= $ 4000 Net

Describe depreciation ?Depreciation is a method of accounting used to spread out the expense of a tangible asset over the course of its useful life in order to account for value losses over time.Depreciation calculation using the straight line method The computerized production device that Ramirez Company initially installed cost $83,600.20 years is the machine's useful life Value of salvage = $4,000 Depreciation refers to the slowDepreciation is calculated as follows: 100% / (2 + useful life) = (100% / 20) * 2 \s= 10%Cost - Previous Depreciation * 10% = (83,600) Depreciation in First YearCost of machine: $83,600 Salvage Value = $ 4000 Net or Salvage Value = $ 83600 - $ 40 less the cost

To learn more about Depreciation refer to:

https://brainly.com/question/1203926

#SPJ4

which symptom of disease usually arises when an infection or nervous stimulation irritates the bowel wall, resulting in increase peristalsis?

Answers

The symptom of disease usually arises when an infection or nervous stimulation irritates the bowel wall, resulting in increase peristalsis is diarrhea.

What is peristalsis?

This is seen as an uncontrollable contraction and relaxation of a canal's muscles, either in the intestine or elsewhere, resulting in wave-like movements that force the canal's contents forward.

Therefore, in regards to the case above, Viruses and even tainted food occasionally cause diarrhea. A less common possibility is that it's a symptom of another condition like irritable bowel syndrome or inflammatory bowel disease. Constipation that is loose, watery, and possibly more frequent is known as diarrhea.

Learn more about diarrhea from

https://brainly.com/question/2331919
#SPJ1

Other Questions
I need help what is Three times a number is less than twice the number added to 8 ? nerve and hormone signals regulate the secretion of gastric juice so that it is discharged only when there is food in the stomach. you are a new lenovo service provider and need to use the recovery utility information on the lenovo support website. this information is restricted and is only available to users with service provider accounts. who should you contact to request a service provider user id and password? The figure shows a 23 cm -long metal rod pulled along two frictionless, conducting rails at a constant speed of 3.3 m/s . The rails have negligible resistance, but the rod has a resistance of 0.75 .(Figure 1)A) What is current in the rod?B) What is magnitude of force required to keep the rod moving at a constant speed?C) Direction of the force? a relational database model allows relationships between data to be considered without concern for the . 2. how did hill respond to the klan's visit to his home? The ______ legislation includes $65 billion in investments in broadband internet access. a.j. is an african american man who is walking his dog in a city that has an ordinance to make sure people clean up after their dogs. of course, a.j. has never seen this ordinance enforced, so he doesnt pick up his dogs waste because he forgot a bag that night. a rookie patrolman observes his failure to clean up after his dog. a.j. walks around the corner to find a whole wall of freshly painted graffiti and spray paint cans on the ground. he picks one up to put it in the trash just as the patrolman is walking around the corner to give a.j. an ordinance violation ticket. a.j. is arrested for destruction of property and a municipal ordinance violation. he pleads with the patrolman and tries to tell him that he was just attempting to clean up the neighborhood. a.j. is ultimately sentenced to the fine of $500 for the dog waste and community service hours until he removes all of the graffiti. he is going to appeal his sentence. which court will review his appeal? I need help thank you. (pls give a proper explanation) here is the question I need this asap pls answer quick............................... why did al qaeda think the four members of the hamburger cell were more valuable than their normal members? marcy just started her freshman year of college and has made friends with a group of women in her residence hall. her new friends are very into fitness and go to the gym regularly. even though marcy has never been into exercising before, she starts working out with her new friends and becomes a regular at the gym. sociologists would describe this situation as an example of . what element in the first piece of pictures at an exhibition helps depict the composer walking through an art gallery? Which postulate of natural selection is deliberately enforced by dog breeders using artificial selection?. organic matter with a ratio results in a low net release of nutrients during decomposition. this is because microbial growth is more limited by than it is by . if your mass is 60 kilograms on earth, what would your mass be on the moon? if your mass is 60 kilograms on earth, what would your mass be on the moon? 10 pounds 60 kilograms 60 pounds 10 kilograms 360 kilograms if the real estate taxes for last year were $4,567, what is the prorated tax entry for this year's taxes for a september 11 closing? the a researcher proposes a study and wants to recruit subjects from health care clinics in jamaica. the survey will be conducted by the u.s. researchers at the clinic. the nurses at the clinic will inform prospective subjects about the availability of the research, but will not consent the subjects nor perform any research procedures (even screening procedures). are the nurses engaged in the research according to federal regulations?age of majority in international research is determined by the would you expect the tert-butyl bromide or the tert-butanol to have a higher boiling point? describe the intermolecular forces present in each to justify your answer (5 pts). A ceiling fan has 18-inch blades and turn at a rate of 45 revolutions per minute (rpm). What is the linear speed of the blades in feet per hour?. Pfizer is one of the largest pharmaceutical companies in the world and has a patent on a drug that treats heartburn. If the patent is about to expire, then pfizer has two options: it can continue to charge a high price for its product or charge a low price. After the patent expires, a drug company that produces generic drugs must decide whether to enter the market or not enter the market. The profits for each scenario are given in the accompanying payoff table