Students with names and top note
Create a function that takes a dictionary of objects like
{ "name": "John", "notes": [3, 5, 4] }
and returns a dictionary of objects like
{ "name": "John", "top_note": 5 }.
Example:
top_note({ "name": "John", "notes": [3, 5, 4] }) ➞ { "name": "John", "top_note": 5 }
top_note({ "name": "Max", "notes": [1, 4, 6] }) ➞ { "name": "Max", "top_note": 6 }
top_note({ "name": "Zygmund", "notes": [1, 2, 3] }) ➞ { "name": "Zygmund", "top_note": 3 }

Answers

Answer 1

Here's the Python code to implement the required function:

def top_note(student_dict):

   max_note = max(student_dict['notes'])

   return {'name': student_dict['name'], 'top_note': max_note}

The top_note function takes a dictionary as input and returns a new dictionary with the same name and the highest note in the list of notes. We first find the highest note using the max function on the list of notes and then create the output dictionary with the original name and the highest note.

We can use this function to process a list of student dictionaries as follows:

students = [

   {"name": "John", "notes": [3, 5, 4]},

   {"name": "Max", "notes": [1, 4, 6]},

   {"name": "Zygmund", "notes": [1, 2, 3]}

]

for student in students:

   print(top_note(student))

This will output:

{'name': 'John', 'top_note': 5}

{'name': 'Max', 'top_note': 6}

{'name': 'Zygmund', 'top_note': 3}

Learn more about code here:

https://brainly.com/question/31228987

#SPJ11


Related Questions

HELP ME PLEASE PLEASE PLEASE!!!! IM BEGING YOU!!!!
In your own words, describe in detail the different types of image licensing. How does image metadata play a role in these licenses and why is that important.

Answers

Answer:

Photo metadata is a set of data describing and providing information about rights and administration of an image. It allows information to be transported with an image file, in a way that can be understood by other software and human users.

Explanation:

you plan to deploy the following azure web apps: webapp1, that uses the .net 6 runtime stack webapp2, that uses the asp.net v4.8 runtime stack webapp3, that uses the java 17 runtime stack webapp4, that uses the php 8.0 runtime stack you need to create the app service plans for the web apps. what is the minimum number of app service plans that should be created?

Answers

Since you need to create the App Service plans for the web apps, the minimum number of App Service plans that must be created is option A-1.

How does Azure webapp work?

Without needing to deploy, set up, and maintain your own Azure VMs, you may create an app in Azure using the platform offered by Azure Web Apps. The ASP.NET, PHP, Node. js, and Python may all be used to create web applications. Additionally, they incorporate well-known coding environments like GitHub and Visual Studio.

Microsoft developed and maintains Azure Web Apps, a platform for hosting websites based on cloud computing. It is a platform as a service that enables the publishing of Web apps using several frameworks and different programming languages, including proprietary ones from Microsoft.

Therefore, You can support up to 10 Web Apps by creating one App Service Plan. Any additional use of the other resources is unnecessary and not specified as a prerequisite.

Learn more about  azure web apps from

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

See full question below

You plan to deploy the following Azure web apps:

WebApp1, which uses the .NET 5 runtime stack

WebApp2, which uses the ASP.NET V4.8 runtime stack

WebApp3, which uses the Java 11 runtime stack

WebApp4, which uses the PHP 8.0 runtime stack

You need to create the App Service plans for the web apps.

What is the minimum number of App Service plans that must be created?

A-1

B-2

C-3

D-4

Security Technology Incorporated (STI) is a manufacturer of an electronic control system used in the manufacture of certain special-duty auto transmissions used primarily for police and military applications. The part sells for $61 per unit and STI had sales of 24,300 units in the current year, 2021. STI had no inventory on hand at the beginning of 2021 and is projecting sales of 26,900 units in 2022. STI is planning the same production level for 2022 as in 2021, 25,600 units. The variable manufacturing costs for STI are $22, and the variable selling costs are only $0.40 per unit. The fixed manufacturing costs are $128,000 per year, and the fixed selling costs are $560 per year.
Required:
1. Prepare an income statement for each year using full costing.
2. Prepare an income statement for each year using variable costing.

Answers

1. Under full costing, STI's income statement for the current year shows sales revenue of $1,486,300, cost of goods sold of $779,500, and a net income of $259,800. For the projected year, sales revenue is estimated to be $1,641,400, cost of goods sold to be $812,800, and a net income of $328,800.

2. Under variable costing, STI's income statement for the current year shows sales revenue of $1,486,300, variable expenses of $657,900, and a net income of $294,200. For the projected year, sales revenue is estimated to be $1,641,400, variable expenses to be $712,600, and a net income of $342,800.

Under full costing, all manufacturing costs, both variable and fixed, are included in the cost of goods sold. This means that the income statement reflects the complete cost of producing each unit, including the allocation of fixed costs. In the current year, STI had sales of 24,300 units, which generated sales revenue of $1,486,300 (24,300 units x $61 per unit). The cost of goods sold was $779,500, calculated as (24,300 units x $22 variable manufacturing cost) + $128,000 fixed manufacturing costs. Subtracting the cost of goods sold from sales revenue gives a net income of $259,800.

For the projected year, STI estimates sales of 26,900 units, which would generate sales revenue of $1,641,400 (26,900 units x $61 per unit). The cost of goods sold is estimated to be $812,800, calculated as (26,900 units x $22 variable manufacturing cost) + $128,000 fixed manufacturing costs. Subtracting the cost of goods sold from sales revenue gives a projected net income of $328,800.

Under variable costing, only the variable manufacturing costs are included in the cost of goods sold, while fixed manufacturing costs are treated as period costs and are not allocated to the units produced. In the current year, the variable expenses amounted to $657,900, calculated as 24,300 units x $22 variable manufacturing cost. Subtracting the variable expenses from sales revenue gives a net income of $294,200.

For the projected year, the variable expenses are estimated to be $712,600, calculated as 26,900 units x $22 variable manufacturing cost. Subtracting the variable expenses from sales revenue gives a projected net income of $342,800.

Learn more about income statement

brainly.com/question/14890247

#SPJ11

Which function would you insert to organize large or complex sets of information that are beyond the capabilities of lists?.

Answers

The function that you would insert to organize large or complex sets of information that are beyond the capabilities of lists is known as table.

What is the function of table in database?

All of the data in a database is stored in tables, which are database objects. Data is logically arranged in tables using a row-and-column layout akin to a spreadsheet. Each column denotes a record field, and each row denotes a distinct record.

A user-defined function that returns a table is known as a table function (also known as a table-valued function, or TVF). Anywhere a table may be used, so can a table function. Although a table function can take parameters, it behaves similarly to views.

Note that one can use tables to put together large or complex group of information, that are beyond the power of lists.

Learn more about Table function from

https://brainly.com/question/3632175

#SPJ1

You want to allow RDP 3389 traffic into your network for a group of users to access a particular workstation that has a special application in your office. Which endpoint security tool would you use to make this happen

Answers

Firewall Rules often monitor the control information that is present in individual packets. The endpoint security tool would you use to make this happen is firewall rules.

Rules are often known to be guarding looks into the control information.

The Rules often block or allow those packets using the rules that are spelt out on these pages.

It is also given mainly to computers or to policies that are assigned to a computer or collection of computers.

Learn more from

https://brainly.com/question/15681183

How do “right to work” states impact workers? (Select all that apply.) They have strengthened unions. They have given unionized workers more protections. They have made it possible to fire workers for any reason or no reason, so long as they are not fired for federally prohibited reasons. They have increased dues-paying union membership by as much as two-thirds. They have banned union-security agreements.

Answers

Answer:

"Right-to-work" states impact workers through;

They have banned union-security agreements

Explanation:

"Right-to-work-laws" are state laws that ban union security agreements that allows the trade or labor union to demand employees of an establishment to join the trade or labor union including the obligation of the employer to collect union dues on the union's behalf to reduce the effect of the free-rider problem as the benefit of union negotiation benefits non-union members who are also employees

The "right-to-work laws" prohibits agreements between employers of labor and employees which are members of the unions from stipulating the requirement that the cost of union representation is to be payed for by the workers

Xcode, Swift, and Appy Pie are all tools for doing what? A: Writing code in Java. B: Creating smartphone apps. C: Creating apps to run on a desktop or laptop. D: Writing code in C#​

Answers

Answer:

Creating smartphone apps

Explanation:

Took the test, got 100, read the lesson on slide 3 towards the bottom

NBA bank uses centralized client server database that is accessed by all its nationwide branches. All customers' records are stored on the database. There are no copies at the branches. The building that holds this database and all the equipment went up in flames and was destroyed.

Answers

Answer:

NBA bank data is completely destroyed since it has not maintained any backup.

Explanation:

All businesses should maintain backup of important records. NBA bank has centralized client server database. This database record should be backup at different system which is only accessed when there is some problem in the original data. The backup system is initiated when the original database is destroyed.

describe how you would open a new open word processing document

Answers

Answer:

open the program by clicking on the icon or finding it in your program. Once you have opened it you can either use the blank page that has opened or you can go to the file tab and click new word document or new document.

Explanation:

Which file format is most often used with the CMYK color model and allows the image to be increased or decreased in size with minimal loss in quality?

GIF
PNG
TIFF
JPEG

Answers

The file format  that is most often used with the CMYK color model and allows the image to be increased or decreased in size with minimal loss in quality is option C: TIFF.

What is the purpose of a TIF file?

Computer files called TIFFs, which stand for Tag Image File Format, are used to store raster graphics and image data. If you want to avoid lossy file formats, TIFFs, which are a favorite among photographers, are a useful option to keep high-quality photographs before editing.

Hence, With a high color depth of up to 32 bits per color component, the format supports both the RGB and CMYK color models. Transparencies, masks, and layers can also be stored. You may copy or save data without sacrificing quality thanks to lossless compression.

Learn more about  file format from

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

Help me. its due tonight

Help me. its due tonight

Answers

d- enjoy
b- national service !

Objects in an array are accessed with subscripts, just like any other data type in an array.
True
False

Answers

True. Objects in an array are accessed with subscripts, just like any other data type in an array.

Objects in an array are accessed with subscripts, also known as indices, just like any other data type in an array. The subscript is used to refer to a specific element within the array, and it is an integer value that indicates the position of the element in the array. For example, suppose we have an array arr of integers and we want to access the third element in the array. We would use the following code:

int arr[] = {1, 2, 3, 4, 5}; int thirdElement = arr[2]; // access the third element (index 2) in the array

In this code, the subscript 2 is used to access the third element in the array. The resulting value is assigned to the thirdElement variable.

Learn more about array here-

https://brainly.com/question/30757831

#SPJ11

The most common cause of foodborne illness is

Answers

Answer:

Food posioning

Explanation:

According to the Food and Drugs Administration (FDA), the most common cause of foodborne illness is food poisoning.

What is a foodborne illness?

A foodborne illness can be defined as a type of disease that is generally caused due to the consumption of a contaminated food or any food material that has been poisoned.

According to the Food and Drugs Administration (FDA), the most common cause of foodborne illness around the world is food poisoning such as when bacteria and other pathogens grow on a food.

Read more on food poisoning here: https://brainly.com/question/27128518

#SPJ2

on the average, a customer must wait for 2.3333 2.5333 2.8333 3.5333 none of the above

Answers

The mean waiting duration for the entire 4-day span was about 2. 8083 minutes

How to solve

To solve this, we would average the averages, giving equal weight to each day:

(2.3333 + 2.5333 + 2.8333 + 3.5333) / 4 = 2.8083 minutes

Therefore, the mean waiting duration for the entire 4-day span was about 2. 8083 minutes

Mean waiting time is the average duration spent in a queue for a certain occurrence or assistance.

The mean waiting time can be obtained by adding up the waiting durations of all individuals and then dividing the sum by the total number of individuals.

The average time spent waiting is a frequently utilized metric in a range of fields, including queue management theories, evaluations of customer service performance, transportation design, and optimizing scheduling practices, all with the ultimate goal of enhancing efficiency and customer contentment.

Read more about Mean waiting time here:

https://brainly.com/question/16016469

#SPJ4

A customer service call center has tracked call wait times over a 4 day period. On Day 1, the average wait time was 2.3333 minutes, on Day 2, it was 2.5333 minutes, on Day 3, it was 2.8333 minutes, and on Day 4, it was 3.5333 minutes. What was the overall average wait time over the 4 day period?

Which of the following is a true statement about milestones?
O A. Meeting milestones contribute to the meeting of a key deliverable.
O B. Milestones are the high level events or actions in a schedule.
O C. Milestones are a helpful but not essential part of a schedule.
O D. Most milestones concern the delivery of a product.

Answers

Answer:

B option

Explanation:

my stones are the high level events are actions in a schedule.

In a day, a car passes n
kilometers. How many days does it take to travel a route of length m
kilometers?

The program receives as input in the first line a natural number n
and in the second line a non-negative integer m
. Python code

Answers

#Calculate days.

def calculateDay(m, n):

   assert isinstance(m, int) and m >= 0, "m should be a natural number."

   assert isinstance(n, int) and n > 0, "n shouldn't be negative."

   return m/n

   

#Main function

def Main():

   m, n = input().split()

   print(f'Result: {calculateDay(int(m),int(n)):.2f} days.')

   

#Point.

if(__name__ == "__main__"):

   Main()

In a day, a car passes n kilometers. How many days does it take to travel a route of length m kilometers?The

why is it important to consider messages, senders, and receivers?

Answers

It is important to consider messages, senders, and receivers in communication because they are the key elements that make communication possible.

Messages: The message is the information or content that is being communicated. It is important to consider the message because it conveys the purpose of the communication and provides the recipient with the necessary information.Senders: The sender is the person or entity that is initiating the communication. It is important to consider the sender because their motivations, perspectives, and intentions will influence the content and tone of the message.Receivers: The receiver is the person or entity that is receiving the communication. It is important to consider the receiver because their needs, expectations, and perspectives will impact how they interpret and respond to the message.

By considering these elements, you can ensure that the message is effectively communicated and that the sender and receiver are both able to achieve their communication goals. This can improve the accuracy, clarity, and effectiveness of communication, and help to avoid misunderstandings and miscommunications.

Learn more about Messages here:

https://brainly.com/question/28508271

#SPJ4

Analytical crm applications are based on data from _____________________.

Answers

Analytical CRM applications are based on data from various sources within a company's databases, customer interactions, and external data sources. These applications focus on analyzing customer data to improve customer relationships, enhance customer satisfaction, and streamline business processes.

The data used in analytical CRM comes from several sources, including transactional CRM systems, which record customer interactions and transactions across different channels such as sales, customer service, and marketing. This data provides insights into customers' purchasing habits, preferences, and behaviors, allowing businesses to develop targeted marketing campaigns and personalized offers.External data sources, such as social media, demographic data, and market research, can also be integrated into the analytical CRM system. This data helps companies understand their customers better, identify trends, and anticipate customer needs, leading to more effective marketing strategies and improved customer retention.Analytical CRM applications use data mining, predictive analytics, and business intelligence tools to analyze the gathered data, enabling businesses to gain valuable insights into customer trends, preferences, and behavior patterns. This information allows businesses to identify opportunities for cross-selling and up-selling, target specific customer segments, and implement customer-centric strategies to improve overall business performance.In summary, analytical CRM applications are based on data from various sources, including transactional CRM systems, customer interactions, and external data sources. By analyzing this data, businesses can enhance customer relationships, improve customer satisfaction, and optimize their marketing and sales strategies.

For more such question on demographic

https://brainly.com/question/29503700

#SPJ11

Which statement assigns the value 98 to the variable myScore in Python?
myScore << 98
myScore = 98
x == 98
x! = 98

Answers

myScore = 98 is the correct choice.

Answer:

b

Explanation:

If intermittent and difficult-to-diagnose wireless communication errors occur, ____ might be the culprit.

Answers

Intermittent and difficult-to-diagnose wireless communication errors can be caused by the presence of electromagnetic interference (EMI). EMI comes from a variety of sources such as electronic devices, power lines, and even the environment. Its presence can disrupt the wireless signal and cause reduced range, dropped connections, and slow transmission speeds. Identifying and locating the source of EMI can be challenging, but solutions include shielding, cable routing, and using specialized EMI filters. Regular monitoring and maintenance of wireless networks can also help identify and address any potential EMI issues.

If intermittent and difficult-to-diagnose wireless communication errors occur, interference might be the culprit.

RF interference can occur in various ways, such as from nearby electronic devices, physical obstructions, or other wireless signals operating on the same frequency band. For instance, microwave ovens, cordless phones, and Bluetooth devices can all cause RF interference with wireless communication. Physical obstructions such as walls, floors, and ceilings can also weaken or block wireless signals, leading to communication errors.

To diagnose and resolve RF interference, various methods can be employed. One approach is to identify potential sources of interference and eliminate or mitigate them. This can involve moving electronic devices away from the wireless router or using shielding materials to block interference. Additionally, changing the wireless channel or frequency band used by the wireless signal can help avoid conflicts with other wireless signals.

To learn more about wireless communication, visit:

https://brainly.com/question/25633298

#SPJ11

You would like your presentation to toggle to the Internet to play a news clip. Which feature will accomplish this?
a)broadcast
b)create a video
c)video from file
d)video from website ​

Answers

Answer:

Video from website

Explanation:

Answer:

D is correct.

Explanation:

On Edge.

2. Write a 7-10 sentence paragraph explaining the concept of a spreadsheet. 10​

Answers

Answer:

Explanation: A spreadsheet is considered a configuration of rows and columns. It can also be called a worksheet. Spreadsheets are used for calculating and comparing numerical and financial data.

The values in the spreadsheet can be either basic or derived. Basic values are independent values and the derived values are the outcome of any function or an arithmetic expression.

Spreadsheet applications are computer programs that allow users to add and process data. One of the most widely used spreadsheet software that is used is Microsoft Excel.

A file in an excel sheet is referred to as a workbook and each workbook consists of worksheets where the data is entered for further processing.

The concept of the spreadsheet can be understood with the following terminologies, which are as follows.

Label: Text or special characters are treated as labels for rows, columns, or descriptive information. There is no way of treating the labels mathematically, i.e labels cannot be multiplied or subtracted, etc.

Formulas: Formula refers to a mathematical calculation that is performed on a set of cells. Formulas are represented with an equal sign at the start of the spreadsheet.

Realiza una tabla acerca de los escenarios de usos más comunes de Excel.

Answers

Answer:

Microsoft Excel es una hoja de cálculo producida por Microsoft. La aplicación es ampliamente utilizada en empresas e instituciones, así como por usuarios domésticos. Su uso principal es realizar cálculos (por ejemplo, gastos) compilados en forma tabular. Para este uso, se aplican numerosas funciones matemáticas, financieras y de base de datos disponibles en el programa. La duplicación semiautomática de las fórmulas creadas con el uso de diferentes variantes de direccionamiento (direccionamiento relativo, direccionamiento absoluto, direccionamiento mixto) también es de gran importancia. Microsoft Excel también se utiliza para crear muchos tipos de gráficos, útiles, entre otros, en física, matemáticas y economía. También incluye un sistema para la elaboración de informes utilizando el llamado tablas dinámicas, utilizadas en la realización de análisis comerciales.

The infix expression 1^ 2 - 3 * 4 is converted to postfix. What is the order in which operators are popped from the stack in the infix to postfix algorithm?
^-*
*-^
-*^
^*
None of the above
Which of the following types of expressions requires knowledge of precedence rules?
Infix and postfix
Intfix only
Postfix only
Neither infix or postfix
Which one of (a)–(d) does not indicate an error when checking for balanced parenthesis?
a. . b. . c. In the end, stack is empty d. . e.
In the end, the stack contains one left parenthesis
In the end, the stack contains one right parenthesis
The next symbol is right parenthesis and the stack is empty
all of the above indicate an error
Which of the following represents an infix expression followed by the postfix equivalent?
a + b - c and a b c - +
a + b * c and a b c * +
a + b * c and a b c + *
a + b * c and a b + c *
Which of (a)–(d) is false?
A postfix expression does not require parenthesis to specify evaluation order
For every infix expression, there exists an equivalent postfix expression
or every postfix expression, there exists an equivalent infix expression
Evaluation of a postfix expression can be done in linear time.
All of the above are true.

Answers

The option that does not indicate an error when checking for balanced parentheses is "c. In the end, stack is empty." The false statement among the given options is: "A postfix expression does not require parentheses to specify evaluation order."

In the infix to postfix conversion algorithm, the order in which operators are popped from the stack depends on their precedence. In this case, the order is ^-**-^-^^, where "^" denotes exponentiation, "*" denotes multiplication, and "-" denotes subtraction. This indicates the order in which the operators are applied when evaluating the postfix expression.

Expressions in infix notation require knowledge of precedence rules to determine the order of operations. Parentheses can also be used to explicitly specify the evaluation order when needed.

When checking for balanced parentheses, the option "c. In the end, stack is empty" does not indicate an error. This means that all opening parentheses have been matched with their corresponding closing parentheses, resulting in an empty stack at the end of the expression.

The infix expression "a + b * c" is converted to the postfix equivalent "a b c * +". The postfix notation represents the expression where operators are placed after their operands.

The false statement among the given options is: "A postfix expression does not require parentheses to specify evaluation order." In postfix notation, the evaluation order is determined solely by the order of the operands and operators, without the need for parentheses.

Learn more about algorithm here : brainly.com/question/28724722

#SPJ11

What CSS property do you use to determine whether flex items are displayed horizontally or vertically

Answers

Answer:

Flex direction

Explanation:

HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.

Generally, all HTML documents are divided into two (2) main parts; body and head.

The head (header) contains information such as version of HTML, title of a page, metadata, link to custom favicons and cascaded style sheet (CSS) etc.

On the other hand, the body of a HTML document contains the contents or informations that a web page displays.

Generally, the part of a HTML document where the cascaded style sheet (CSS) file is linked is the header.

A style sheet can be linked to an HTML document by three (3) main methods and these are;

I. External style.

II. Inline style.

III. Embedded (internal) style.

Flex direction is a CSS property that's used to determine whether flex items are displayed horizontally or vertically.

Check My Work An information system includes _____, which are programs that handle the input, manage the processing logic, and provide the required output

Answers

An information system includes applications, which are programs that handle the input, manage the processing logic, and provide the required output.

What are applications used in a computer system?

Applications are software program that helps a computer user to work effectively with the computer system.

It  helps the computer user by handling the input, managing the processing logic, and providing the required output.

Examples of application include:

Web browsersPresentation softwareSpreadsheetWord processors

Therefore, an information system includes applications, which are programs that handle the input, manage the processing logic, and provide the required output.

Learn more about application software here:

https://brainly.com/question/18661385

how do you open an application when there is not an icon on the desktop

Answers

Answer:

press the windows button and search for it

Explanation:

What goes in between the < > when declaring a new ArrayList?

A A class data type

B A class variable

C A primitive variable

D Any data type

E A primitive data type

Answers

Answer:

A, a class data type

Explanation:

Arraylists can only hold class data types such as String, Array, etc.

The statement of function that goes in between the < > when declaring a new ArrayList is the "A class data type." Thus, the correct option for this question is A.

What is Array list?

Array list may be characterized as a type of list that is significantly present in java. util package. It is a well-known data structure in Java programming language that is used to store elements or objects. It is generally the collection framework in Java.

If a user wants to declare an ArrayList, he/she must require to use the function or command, i.e. ArrayList<Type> name. Change the type to whatever type of objects you want to store in the ArrayList, for example, String as shown in the code below. Arraylists can significantly hold class data types such as String, Array, etc.

Therefore, the statement of function that goes in between the < > when declaring a new ArrayList is the "A class data type." Thus, the correct option for this question is A.

To learn more about ArrayList, refer to the link:

https://brainly.com/question/30000210

#SPJ2

Select the correct answer. Dawna is working on a term paper using a word processor. She has saved each draft of her paper as a separate version. She wants to include a section from an earlier draft in her current document. What should she do? ОА. refer to the earlier draft and type the section again in her current document cut the section from the earlier draft and paste it in the current document OB Oc. save the eadler draft with a new name and work in it OD copy the section from the earlier draft and paste it in the current document Reset Next​

Answers

Answer:

D. copy the section from the earlier draft and paste it in the current document

Explanation:

A word processor can be defined as a software application or program designed to avail the end users the ability to type and format text documents for various purposes.

Some examples of word processors are Microsoft Word, Notepad, etc.

In this scenario, Dawna is working on a term paper using a word processor. She has saved each draft of her paper as a separate version. She wants to include a section from an earlier draft in her current document.

Therefore, what she should do is to copy the section from the earlier draft and paste it in the current document.

A copy or cut is a formatting technique used for copying and cutting (removing) textual informations from a document respectively.

Hence, Dawna should copy the section from the earlier draft rather than cut, so as to maintain the information in the draft for any future reference or use.

Why do you think a graphic designer might have a hard time seeing eye to eye with a copywriter?

Answers

Answer:

brainliest me plsss

Explanation:

Graphic designers may not see eye to eye with a copywriter because they already work so closely together they may clash heads on ideas when it comes to blending the text and graphics to complete the final details on a project.

Other Questions
Which of the following is an example of a disease caused by bacteria? a Malaria. b Food poisoning. c Measles. d Influenza. what is[tex] \sqrt{81} [/tex] change the active sentence to passive 1) she will take a photograph2) they are baking cakes3)the teacher will give home work4)the old women were discussing the matter5) Susmita has bought new shoes6) we right funny poems7)you understand my problem8) she told many lies NEED HELP PLEASE............. Andrew Jackson and the states rights and native Americans1. Why did he hate the states rights and native Americans?2. What did he do about it? (states rights and native Americans) a 8.638.63 g sample of calcium sulfide was decomposed into its constituent elements, producing 4.804.80 g of calcium and 3.833.83 g of sulfur. which of the statements are consistent with the law of constant composition (definite proportions)? During a period of steadily rising costs, the inventory valuation method that yields the lowest reported net income is: Given f(x) = 3(x2 - 5) + 1 Find f(-3) (-8,-5) after a translation right 1 units and down 5 units? lemos, d. r., babaeijandaghi, f., low, m., chang, c.-k., lee, s. t., fiore, d., et al. (2015). nilotinib reduces muscle fibrosis in chronic muscle injury by promoting tnf-mediated apoptosis of fibro/adipogenic progenitors. nat. med. 21, 786794. doi: 10.1038/nm.3869 For the following word equations, write it as a chemical equation, then balance it.a) potassium + oxygen gas ------ potassium oxide A 9:3:3:1 ratio is obtained in the F2 generation of a dihybrid cross when alleles assort ___ from one another. Help corrections due in 3 hours! giving 25 points and brainlist What one of the following descriptions is not true?A. Cash-flow matching requires a relatively conservative rate of return assumption for short-term cash and cash balances may be occasionally substantialB. Cash-flow matching is essentially fully invested at the remaining horizon durationC. Funds from a cash-flow matched portfolio must be available when each liability is due because of the difficulty in perfect matchingD. Because the reinvestment assumption for excess cash for cash-flow matching extends many years into the future, a conservative interest rate assumption is appropriate Please help spanish midterm two points b and c are in a plane. let s be the set of all points a in the plane for which abc has area 1. which of the folllowing describes s? a. two parallel lines b. a parabola c. a circle d. a line segment e. two points The Shin family is eager to train their new puppy a couple of tricks. Explain how the Shins could use the following in their training: - Positive reinforcement - Schedules of reinforcement - Shaping What did the English Bill of Rights do tothe King's power to inflict cruel andunusual punishment?A. extended itB. increased itC. supported itD. limited it Which similarity existed between the religious practices of the Maya and Aztec in MesoAmerica? Why have some microbiologists proposed using ribosomal RNA as the basis for defining bacterial species?A) Ribosomal RNAs are highly conserved genetic sequences present in all prokaryotes.B) the "interbreeding population" criterion does not apply to bacteria.C) ribosomal RNA is the basis for domain assignment.D) bacteria vary too little in their physical and biochemical traits.E) bacteria are not interbreeding populations, and ribosomal RNAs are highly conserved genes present in all prokaryotes.