Son los inventarios en proceso que hacen parte de la operación en curso y que se deben tener en cuenta antes de empezar a transformar el material directo.

Answers

Answer 1

Answer:

When an inventory is purchased the goods are accounted in the raw material but when this raw material is to be converted in finished goods it is transferred from raw material to processing of raw material into finished goods and when the process is completed when the raw material turns into finished goods the goods are then accounted for as finished goods.

Explanation:

When an inventory is purchased the goods are accounted in the raw material but when this raw material is to be converted in finished goods it is transferred from raw material to processing of raw material into finished goods and when the process is completed when the raw material turns into finished goods the goods are then accounted for as finished goods.


Related Questions

Which wireless protocols would provide the fastest connection with the longest range?

Answers

The wireless protocols that would provide the fastest connection with the longest range are Wi-Fi 6 and 5G.

What is Wi-Fi 6?

Wi-Fi 6 is the most recent Wi-Fi standard, which also known as 802.11ax. Wi-Fi 6 technology delivers faster wireless networking speeds, lower latency, and higher data capacity while also requiring less power than earlier Wi-Fi versions.

It also has the advantage of extending wireless range.What is 5G?5G stands for "fifth generation" wireless technology, which provides lightning-fast speeds and minimal latency. It offers download speeds of up to 20 Gbps, which is around 20 times faster than 4G.

It also allows more simultaneous connections without impacting speed, which means that several people in the same area can use it without slowing down the connection. It has a greater range, which allows it to transmit data over greater distances with minimal attenuation.

Learn more about WIFI at:

https://brainly.com/question/32117578

#SPJ11

artificial intelligence involves the development of machines and computer systems that can simulate human intelligence processes. t or f

Answers

The statement "artificial intelligence (AI) involves developing computer systems and machines which simulate human intelligence processes" is true.

AI is the ability of a computer or machine to emulate or coy human intelligence. AI is the computer system that does jobs requiring human intelligence or power and gets things done fast, in most cases, easy jobs. Learning systems, expert systems, vision systems, robotics, neural networks, and natural language processing are all part of the great artificial intelligence field.

AI requires data and experience from humans to improve their intelligence. The Significant points in AI are self-correction, learning, and reasoning. AI was developed to help in enriching knowledge. AI learning proves is not always ordered by human beings, but it can learn by itself based on the AI experience when people use it.

Self-correction means that the AI is programmed to learn and correct and learn by itself all mistakes it does.

Read more about Artificial Intelligence from: https://brainly.com/question/22678576

#SPJ4

A technology specialist is investigating a computer infected with malware. The investigator discovers that a data leak, which reveals the religious and political beliefs of a high-profile executive, results from the malware. Which data type did the malware compromise

Answers

The data type that was compromised by the malware is personally identifiable information (PII).

What is a PII?

PII is an acronym for personally identifiable information and it can be defined as a type of information (data type) that can be used by business firms (companies) on its own or with other relevant data, so as to identify a specific individual.

The examples of PII.

Some examples of personally identifiable information (PII) include the following:

Social Security numbersEmail addressHome address.Full nameReligious and political beliefs.

In conclusion, the data type that was compromised by the malware is personally identifiable information (PII).

Read more on PII here: https://brainly.com/question/24439144

Who watches Riverdale ? if you do can we be friends(pLEASE DON'T DELETE) and also who is your fav character from Riverdale

Who watches Riverdale ? if you do can we be friends(pLEASE DON'T DELETE) and also who is your fav character
Who watches Riverdale ? if you do can we be friends(pLEASE DON'T DELETE) and also who is your fav character
Who watches Riverdale ? if you do can we be friends(pLEASE DON'T DELETE) and also who is your fav character
Who watches Riverdale ? if you do can we be friends(pLEASE DON'T DELETE) and also who is your fav character
Who watches Riverdale ? if you do can we be friends(pLEASE DON'T DELETE) and also who is your fav character

Answers

Answer:

I have watched it before

Answer:

my fav is veronica lol

Explanation:

that, given a string s representing the total excess billables and an array b consisting of k strings representing the undiscounted bills for each customer. the return value should be an array of strings r (length m) in the same order as b representing the amount of the discount to each customer.

Answers

Using the knowledge in computational language in python it is possible to write a code that  a string s representing the total excess billables and an array b consisting of k strings.

Writting the code:

def solution(A):

answer = 0

current_sum = 0

#Currently there is one empty subarray with sum 0

prefixSumCount = {0:1}

for list_element in A:

   current_sum = current_sum + list_element

   if current_sum in prefixSumCount:

       answer = answer + prefixSumCount[current_sum]

   

   if current_sum not in prefixSumCount:

       prefixSumCount[current_sum] = 1

   else:

       prefixSumCount[current_sum] = prefixSumCount[current_sum] + 1

if answer > 1000000000:

   return -1

else:

   return answer

See more about python at brainly.com/question/18502436

#SPJ1

that, given a string s representing the total excess billables and an array b consisting of k strings

1)write a python program to check wheter the given number is even or odd
2) write a python program to add any 5 subjects makrs, find sum and average (average=sum/5)
3)write a python program to print numbers from 1 to 100 using loops

Answers

Answer:

n = 16

if n%2:

 print('{} is odd'.format(n))

else:

 print('{} is even'.format(n))

m1 = 5

m2 = 4

m3 = 6

m4 = 8

m5 = 9

sum = m1+m2+m3+m4+m5

average = sum/5

print("The sum is {}, the average is {}". format(sum, average))

for i in range(1, 101): print(i, end=",")

Explanation:

Above program does all three tasks.

Answer:

1) num1 = int(input("Enter the number to be checked: "))

if num1%2==0:

   print("Your number is an even number!")

else:

   print("Your number is not even!")

2) maths = int(input("Enter your maths mark: "))

english = int(input("Enter your english mark: "))

social = int(input("Enter your social mark: "))

science = int(input("Enter your science mark: "))

computer = int(input("Enter your computer mark: "))

Sum =  maths + english + social + science + computer

average = Sum / 5

print("Sum of your marks are:",Sum)

print("average of your marks are:",average)

3) num = 0

while num <= 99:

   num+=1

   print(num)

Explanation:

Welcome.

This is your code.

>>> a = [5, 10, 15]
>>> b = [2, 4, 6]
>>> c = ['dog','cat', 'bird']
>>> d = [a, b, c]
How do you refer to 15?

responses
#1 d(0,2)
#2 d[0] [2]
#3 d[0,2]
#4 d(0) (2)

Answers

d[0][2] refers the value of the third element of a, which is 15.

The correct option is: #2 d[0] [2]

How do you refer to 15?

To refer to 15 in the code you provided, you can use :

d[0][2]

This code will first access the first list in the list d, which is a. Then, it will access the third element of a, which is 15. Finally, it will print the value of 15.

Below is an explanation of d[0][2] :

d is a list that contains three other lists: a, b, and c.

d[0] refers to the first list in d, which is a.

a[2] refers to the third element of a, which is 15.

d[0][2] refers the value of the third element of a, which is 15.

Learn more about list in coding on:

https://brainly.com/question/15062652

#SPJ1

modern computer systems enable users to work with more than one program at the same time as a way to improve their efficiency. this technique is known as

Answers

Modern computer systems enable users to work with more than one program at the same time as a way to improve their efficiency. This technique is known as a) multitasking.

The Benefits of Multitasking in Modern Computer Systems

In the digital age, multitasking has become an essential part of modern computer systems. This technology enables users to work efficiently and effectively by allowing them to work on multiple tasks and programs at the same time. With this capability, users can maximize their productivity and optimize their workflow. In this essay, we will discuss the advantages of multitasking in modern computer systems.

The primary benefit of multitasking is increased efficiency. By being able to work on multiple tasks simultaneously, users can save time and get more done in a shorter period. Additionally, multitasking can help users to stay organized, as they can keep track of multiple tasks and programs at the same time. Furthermore, multitasking can help users to be more productive, as they can quickly switch between tasks and complete them more quickly and efficiently.

Complete Question:

4) Modern computer systems enable users to work with more than one program at the same time as a way to improve their efficiency. This technique is known as _____.

a) multitasking.b) multi-methods.c) multiprocessing.d) multi-procedures.

Learn more about Computer sustems:

https://brainly.com/question/22946942

#SPJ4

PLEASE HELP !!!!!!!!!!

An assignment my gaming and animations teacher gave me said to explain (insert game)’s objectives, operation, obstacles, and outcomes. I don’t know what an operation means here. Please help

Answers

Answer:

Operation means what does the game do? What is the purpose. If you press left arrow key what happens...etc. That is what operation is in "gaming" sense.

Hope i helped!

What is the difference between Volatile and Non-Volatile Memory? (A) They are both same types of memory. (B) Volatile memory loses its contents when there is no electricity while non-volatile memory retains its content with or without electricity. (C) Non-volatile memory loses its contents when there is no electricity while volatile memory retains its content with or without electricity. (D) None of these

Answers

The difference between Volatile and Non-Volatile Memory is that volatile memory loses its contents when there is no electricity, while non-volatile memory retains its content with or without electricity. The correct option is B.

Volatile memory is a type of computer memory that requires an electrical charge to maintain the information stored. In contrast, non-volatile memory does not require an electrical charge to store data and retains information even when power is off.Examples of volatile memory include RAM (Random Access Memory) and Cache Memory. These are used to store data temporarily while the computer is running. Once the power is turned off, the contents of volatile memory are lost.On the other hand, non-volatile memory examples include ROM (Read-Only Memory), Flash Memory, and hard drives. These are used to store data permanently and retain information even when power is off. This makes non-volatile memory an ideal choice for long-term data storage such as operating system files, media files, and documents.

To know more about Volatile memory click here,

https://brainly.com/question/32217854

#SPJ11

Hurrryyy pleasee!!!!

Hurrryyy pleasee!!!!

Answers

Answer:

Show the answer choices

Explanation:

Show the answer choices please

The ________ built-in function is used to read a number that has been typed on the keyboard.

Answers

The input() method receives keyboard input and produces a string. A built-in function is utilized to read a number written on the keyboard.

In Python, which function is used to read a number written on the keyboard?

The input() built-in method in Python may read user input from the keyboard. The user's input is read as a string and assigned to a variable. We must press the "Enter" button after inputting the value from the keyboard. The user's value is then read by the input() method. In Python, the operator that may be used to execute exponent arithmetic is **. It performs the exponential computation given two real number operands, one on either side of the operator (2**5 translates to 2*2*2*2*2). The backslash () is the line continuation character in IPL and JavaScript. This character is used to indicate that the code on the next line is a continuation of the current statement. The line continuation character assists you in formatting your policies to make them easier to understand and manage.

Learn more about Python from here;

https://brainly.com/question/18502436

#SPJ4

Comment on the validity of the following statement and explain whether it is true or false: "The dises in the spine function as a shock absorber and act to cushion the spine against dynamic loads"

Answers

The intervertebral discs in the spine function as shock absorbers, therefore it is true that they act to cushion the spine against dynamic loads. The statement is valid, and it is supported by the structural composition of the intervertebral discs.

The intervertebral discs are located between the vertebral bodies in the spine. They are composed of a tough outer layer of fibrocartilage known as the annulus fibrosus, which surrounds a gel-like substance called the nucleus pulposus. The annulus fibrosus is responsible for resisting tension and the nucleus pulposus resists compression.In this way, the intervertebral discs play a significant role in the spine's biomechanics.

The spine is subjected to various dynamic loads, such as lifting, bending, twisting, and jumping. These loads place significant stress on the spinal column, which could cause significant injury if not absorbed and distributed appropriately. The intervertebral discs absorb a significant amount of these forces, allowing for even distribution and preventing the spine from experiencing an excessive load in one specific area.If the intervertebral discs do not function correctly, it could result in back pain or other spinal conditions. Some of these disorders include herniated discs, degenerative disc disease, and sciatica. This underscores the importance of having a healthy spine and functional intervertebral discs.An adequate diet and regular exercise can help to maintain spinal health. The use of proper lifting techniques, such as using the legs instead of the back, could also help to prevent spinal injury. Regular spinal checkups are also advised to detect any potential problems early on.

Learn more about intervertebral discs here:-

https://brainly.com/question/33843618

#SPJ11

write common ICT tools​

Answers

computers laptops printers scanners software programsdata projectorsand interactive teaching box.

What is the key sequence to copy the first 4 lines and paste it at the end of the file?

Answers

Press Ctrl+C after selecting the text you want to copy. Press Ctrl+V while holding down the cursor to paste the copied text.

What comes first in the copy and paste process for a slide?

Select the slide you wish to copy from the thumbnail pane, then hit Ctrl+C on your keyboard. Move to the location in the thumbnail pane where you wish to paste the slide, then hit Ctrl+P on your keyboard.

What comes first in the copying process of a segment?

The secret to copying a line segment is to open your compass to that segment's length, then mark off another segment of that length using that amount of opening.

To know more about copy visit:-

https://brainly.com/question/24297734

#SPJ4

Translate the following statements into symbolic form using the provided translation key to represent affirmative English sentences.
Translation Key S= Sam exercises. Y= Yuliet exercises. L= Leonid exercises. O= Olivia exercises. J= Jordan likes to travel. V= Jordan likes to watch travel TV shows. E= Travel is expensive. Q= Quinn likes to travel. D=Quinn can drive her car. T= Quinn gets a speeding ticket. W= Quinn wrecks her car. I= Quinn's car insurances rates go up. U= Quinn is in a hurry. P= There is a police speed trap. M= it is a great meal. C= someone is a great cook. F= there are good friends. I= Xavier cooks excellent dinner. X= Xavier has a headache. H= Xavier feels hot. R= Xavier is dehydrated.

Sam doesn't exercise.

Answers

The symbolic representation of the given sentence is ∼S.This sentence can be interpreted as “It is not the case that Sam exercises.” Hence, option A is the correct answer.

Translation key:S= Sam exercises. Y= Yuliet exercises. L= Leonid exercises. O= Olivia exercises. J= Jordan likes to travel. V= Jordan likes to watch travel TV shows. E= Travel is expensive. Q= Quinn likes to travel. D= Quinn can drive her car. T= Quinn gets a speeding ticket. W= Quinn wrecks her car. I= Quinn's car insurances rates go up. U= Quinn is in a hurry. P= There is a police speed trap. M= it is a great meal. C= someone is a great cook. F= there are good friends. I= Xavier cooks excellent dinner. X= Xavier has a headache. H= Xavier feels hot. R= Xavier is dehydrated.The provided sentence is “Sam doesn't exercise.”To represent this sentence in symbolic form, it can be represented as:∼SWhere ‘∼’ symbolizes negation or NOT.

Learn more about symbolic representation here :-

https://brainly.com/question/30105596

#SPJ11

why does a wooden spoon not get hot when used in stirring hot liquids​

Answers

Answer:

Explanation:

A wooden spoon does not get hot when used in stirring hot liquids​ is because its an insulator.

What is the first step when creating a 3-D range name?

Open the New Range window, and click 3-D.
Press the Shift key while selecting the new sheet .
Open the Name Manager, and click New.
Click a cell to insert the cell reference.

Answers

Answer:

Open the Name Manager, and click New.

Explanation:

The ________ group on the Design tab is useful for adjusting the data source of a chart.
Chart Styles
Current Selection
Data
Chart Layouts

Answers

The "Data" group on the Design tab is useful for adjusting the data source of a chart.

This group includes options to change the range of data being used in the chart, switch rows and columns, and edit the data series. By using the "Select Data" option in this group, you can add or remove data from the chart and adjust the labels for each data series. This is particularly useful if you have made changes to the original data source and need to update the chart accordingly. Additionally, the "Data" group also includes options to switch between different chart types, such as bar or line charts, which can help to visualize the data in different ways. Overall, the "Data" group on the Design tab is a powerful tool for manipulating and customizing the data source of a chart.

To know more about columns visit :

https://brainly.com/question/17291724

#SPJ11

Write an LMC program as follows instructions:
A) User to input a number (n)
B) Already store a number 113
C) Output number 113 in n times such as n=2, show 113
113.
D) add a comment with a details exp

Answers

The LMC program takes an input number (n) from the user, stores the number 113 in memory, and then outputs the number 113 n times.

The LMC program can be written as follows:

sql

Copy code

INP

STA 113

INP

LDA 113

OUT

SUB ONE

BRP LOOP

HLT

ONE DAT 1

Explanation:

A) The "INP" instruction is used to take input from the user and store it in the accumulator.

B) The "STA" instruction is used to store the number 113 in memory location 113.

C) The "INP" instruction is used to take input from the user again.

D) The "LDA" instruction loads the value from memory location 113 into the accumulator.

E) The "OUT" instruction outputs the value in the accumulator.

F) The "SUB" instruction subtracts 1 from the value in the accumulator.

G) The "BRP" instruction branches back to the "LOOP" label if the result of the subtraction is positive or zero.

H) The "HLT" instruction halts the program.

I) The "ONE" instruction defines a data value of 1.

The LMC program takes an input number (n) from the user, stores the number 113 in memory, and then outputs the number 113 n times.

To know more about LMC program visit :

https://brainly.com/question/14532071

#SPJ11

Assume a file containing a series of integers is named numbers.txt and exists on the computers disk. Write a program that calculates the average of all the numbers stored on the file. Write this in Python

Answers

Answer:Here is one way to calculate the average of all the numbers stored in a file named "numbers.txt" in Python:

Explanation:

# Open the file for reading

with open("numbers.txt", "r") as file:

   # Read all the lines in the file

   lines = file.readlines()

   

   # Convert each line to an integer

   numbers = [int(line.strip()) for line in lines]

   

   # Calculate the sum of the numbers

   total = sum(numbers)

   

   # Calculate the average by dividing the total by the number of numbers

   average = total / len(numbers)

   

   # Print the result

   print("The average of the numbers is", average)

When a customer states that black exhaust smoke is coming from the exhaust: Technician A says faulty oil rings may be the cause. Technician B says a faulty head gasket may be the cause. Who is correct?

Answers

Answer:

It is possible that either technician could be correct, as both faulty oil rings and a faulty head gasket can cause black exhaust smoke to come from the exhaust. However, it is also possible that there could be other causes for the black smoke. In order to accurately diagnose the issue, a mechanic would need to perform a thorough inspection of the vehicle and possibly run diagnostic tests. It is recommended to have the vehicle inspected by a qualified mechanic to determine the cause of the black smoke and to get the appropriate repair.

Explanation:

To display graphics a computer needs a monitor and a:.

Answers

To display graphics, a computer needs a monitor and a: B. graphics card or processor.

What is a computer hardware?

In Computer technology, a computer hardware is a physical component of a computer system or an information technology (IT) that can be seen, touched and replaced.

Generally speaking, there are various examples of a computer hardware and these include the following:

Monitor (screen)MouseMotherboardPower supply unit (PSU).Hard-disk driveKeyboardCentral processing unit (CPU).Network interface card (NIC).Memory module

In conclusion, we can reasonably infer and logically conclude that a graphics card or processor must be installed on a computer in order to enable it display graphics.

Read more on computer hardware here: brainly.com/question/959479

#SPJ4

Complete Question:

To display graphics, a computer needs a monitor and a(n):. a. expansion port. b. graphics card or processor. c. network card (NIC). d. sound card.


Select the correct answer from each drop-down menu.
Jeff writes a blog on digital photography. His most recent post was about visual artifacts. Identify the visual artifacts in the sentences below.
. A visual artifact of digital projectors is called
An inappropriate color difference in an image is called

Answers

Answer:

Screen-door effect

Explanation:

Answer:

An inappropriate color difference in an image is called: image noise

A visual artifact of digital projectors is called: fixed-pattern noise

Explanation:

trust me

The Quake, One of the first fully 3D games was released in the year? 1986 1996 1995​

Answers

It was released in 1996

please help me out with answering the questions

please help me out with answering the questions

Answers

10.

if "h" in letter:

   #do something

11.

if value >= 13.6:

   #do something

12.

if 5 < y < 11:

   #do something

13.

if num1 == num2:

   print("equal")

14.

num1 = int(input("Enter a number: "))

num2 = int(input("Enter a number: "))

if num1 > num2:

   print(num1)

else:

   print(num2)

15.

if number == 89 or number == 78:

   print("Your number is equal to 89 or 78")

I hope this helps! If you have any other questions, I'll do my best to answer them.

there are 2048bytes in4megabytes true or false​

Answers

Answer:

FALSE IS THE ANSWER.

I HOPE IT IS HELPFUL

a pointer is ... group of answer choices a variable that aliases a memory location a variable that stores an address a construct that points at memory a breed of dog that on scenting game stands rigid looking toward it.

Answers

a variable that stores an address**. In programming, a pointer is a variable that holds the memory address of another variable. Pointers are used to indirectly access and manipulate data stored in memory.

By storing the address of a variable, a pointer allows us to refer to and modify the actual data rather than just a copy of it. Pointers are particularly useful for tasks such as dynamic memory allocation, passing parameters by reference, and working with data structures like linked lists and arrays.

The other answer choices provided are not accurate definitions of a pointer. The first choice describes a variable that aliases a memory location, which is not specific to pointers. The third choice mentions a construct that points at memory, which is a partial description but does not capture the complete nature of a pointer. The fourth choice is unrelated to programming and refers to a breed of dog.

Learn more about programming here:

https://brainly.com/question/14368396

#SPJ11

distributed processing shares a database's logical processing among two or more physically independent sites that are connected through a network

Answers

The given statement "distributed processing shares a database's logical processing among two or more physically independent sites that are connected through a network" is true because distributed processing involves sharing a database's logical processing among physically independent sites connected through a network.

In distributed processing, a single database's logical processing is shared among two or more physically independent sites that are connected through a network. This allows for multiple users to access the database simultaneously from different locations, improving efficiency and reducing the load on any one site.

Distributed processing can also improve reliability and fault tolerance, as the failure of one site does not necessarily mean the entire system will fail. However, distributed processing also introduces new challenges, such as ensuring data consistency across all sites and managing network latency.

"

Complete question

distributed processing shares a database's logical processing among two or more physically independent sites that are connected through a network

true or false

"

You can learn more about distributed processing at

https://brainly.com/question/29892335

#SPJ11

a data analyst is working with a data frame named salary data. they want to create a new column named wages that includes data from the rate column multiplied by 40. what code chunk lets the analyst create the wages column?

Answers

The code part is mutate(salary_data, hourly_salary = wages/40) . The data analyst can use the mutate() function to create a new column for wages divided by 40 called hourly_salary. The mutate() function can add a new column while leaving existing columns alone.

What is Data Analyst?

A data analyst collects, cleans, and interprets large amounts of data in order to answer questions or solve problems. They work in a wide range of industries, including business, finance, criminal justice, science, medicine, and government.

What Is the Role of a Data Analyst?

Data analysts are crucial in modern businesses, assisting in the reflection of the company's work and customer base, determining how these factors have affected profits, and advising leadership on how to move forward to grow the business.

To learn more about Data Analyst, visit: https://brainly.com/question/29308793

#SPJ1

Other Questions
which of the following is NOT one of the three main criteria that must be examined when choosing an appropriate map? A) Projection. B) water. C) scale. D) theme. is 25 meters longer then 35 yards A student leaves a sidewalk corner walks 3.0 blocks north then walks 3.0 blocks west.what is the students displacement from the starting position Kindly answer the Discussion Questions and Experiential Exercises questions based on chapter 9 Engagement Empowerment and Motivation.2. What might you see in an organization that provides evidence that employees are truly engaged?3. How might the concept of empowerment be employed in a classroom? You are searching online for the best price you can find for a hat that you really want to buy. The hat originally costs $20 at al three stores. Place the discounts in order of the best buy (at the top) to the worst buy (at the bottom). 1/5 off the price of the hat. 30% off the price of the hat. 5.00 off the hat Daryl Kearns saved $220,000 during the 25 years that he worked for a major corporation. Now he has retired at the age of 50 and has begun to draw a comfortable pension check every month. He wants to ensure the financial security of his retirement by investing his savings wisely and is currently considering two investment opportunities. Both investments require an initial payment of $188,500. The following table presents the estimated cash inflows for the two alternatives: Mr. Kearns decides to use his past average return on mutual fund investments as the discount rate; it is 12 percent. (PV of $1 and PVA of \$1) (Use appropriate factor(\$) from the tobles provided.) Required o. Compute the net present value of each opportunity. Which should Mr. Kearns adopt based on the net present value approach? b. Compute the payback period for each opportunity. Which should Mr. Kearns adopt based on the payback approach? Complete this question by entering your answers in the tabs below. Compute the net present value of each opportunity. Which should Mr. Kearns adopt based on the net present value approach? (Round your intermediate calculations and final answer to two decimal places.) The genotype of individual 2 could be Type the correct answer in the box. Use numerals instead of words.What is the length of the diagonal shown in the rectangular prism? Round your answer to the nearest tenth.7 ft5 ft4 ft A company is starting a scholarship fund for its employees. The company willadd to the fund on a yearly basis. Each year, it will increase the amount addedto the fund the previous year by 10%. The amount in the scholarship fundafter 4 years is $2,552.55.Part ATo the nearest dollar, how much did the company add to the scholarship fundin the first year?A $182 B $550 C $742 D $2,298Part BIf the company decided to change the amount added the first year to $1,000and then increase the amount added by 10% each year, what would be theaverage amount of whole dollars per year added to the fund over the first 10years? What part of speech is the bold word in the sentence below?Exhausted and breathless, Charlie navigated the wooded path, desperate to avoid capture.verbadverbadjectivenoun How many molecules are present in 17 gram of ammonia gas?. A 4-column table with 4 rows. Column 1 is labeled x. Column 2 is labeled y. Column 3 is labeled x + y = 56. Column 4 is labeled 2 x minus 7 = y. All rows are blank. Using the guess and check technique, find two numbers that satisfy both conditions. The sum of the two numbers is 56. The second number is seven less than two times the first number. What is the value of the first number, x? 19 21 31 35 A computer scientist is investigating the usefulness of twodifferent design languages in improving programming tasks. Twelve expert programmers, familiar with both languages, are askedto code to code a standard function in both languages, and asked tocode a standard function in both languages, and time (in minutes)is recorded. The data follow:(a) Is the assumption that the different in coding time isnormally distributed reasonable?TimeProgrammerDesign Language 1Design Language 2117182161432119414115182362421716108141392119102324111315121820(b) Find a 95% confident interval on the different in meancoding times. Is there any indication that one designlanguages is preferable? What is the area of the triangle pls help this was a model of how mutations may affect a phenotype. how is this similar to what happens in nature? how is it different? what revisions could be made to this simulation to make it more accurate? Exercise 1 Underline the adjective clause, and circle the noun or pronoun it modifies.The company that I worked for last summer went out of business. Groceries are expensive. There are ways to save money on food and to make your dollar stretch further. One way is to buy a pizza to split among your family. A large $10 pizza can go a long way to feeding a family of four for about $2.50 a person. Another way to save money is to buy meat, fish and poultry when they are on sale at the grocery store. Clipping coupons is another way to save money. To further those savings, look through the ads to compare prices and shop where you can get the best deals. This may mean going to several stores. Some stores will even double or triple the coupons you have! Another strategy is to not go grocery shopping while hungry. You will be likely to buy foods that you normally would not buy if you were not hungry.Evan just read the article above and is jotting down notes. He wants to title his notes with a phrase that briefly describes the article. Which of the following titles best paraphrases the article?Saving Money on Your FoodGrocery Prices RisingCoupon Clipping HelpsPizza Saves You Money Adherents of the residual view of public assistance advocate that preservation of the independence and self-respect of an applicant for assistance is a prime consideration of the administration of programs of relief. (True or False) LK LearnKeySales ProcessA sales process consists of repeatable steps that a salesperson can use to sellproducts or services. This process helps the sales team find clients, close sales,and retain customers. The seven steps are prospecting, preparation, approach,presentation, objection, closing, and follow-up. Each step is necessary to have asmooth sales process. It is important to maintain relationships with customers.The main role of customer service is to have positive interactions withcustomers. A large part of customer service focuses on negative feedback.Setting clear guidelines to respond to these situations is necessary.PurposeUpon completing this project, you will better understand the steps of a salesprocess.Steps for Completion1.In which step of the sales process would you address customerconcerns?2.In which step of the sales process would potential clients be contacted?a.ain 2 Lesson 3a.5. In which step of the sales process would potential customers be identified?a.Project fileN/AProject DeEstimated complet5 minutes3. In which step of the sales process would a customer decide to purchase a product?a.Video referenceDomain 2Topic: Sales ChannSubtopic: ElemeProcess; Role ofand Sales Strater4. In which step of the sales process would a presentation be shown to a customer?a.Objectives cover2 Marketing and Sale2.3 Identify sales c2.3.1 Identify elprocess2.3.4 Identify thservice and supstrategiesANEEntrepreneurship and Small Business V.2 P Data frames can be subset by a chosen value using ==.Ex: df[df.x == 5] gives all the rows in the data frame df for which the column x has a value of 5.Write a program that performs the following tasks:Load the file mtcars.csv into a data frame called dfCreate a new data frame df_cyl by subsetting the data frame based on a user defined value for the column cyl.Print the shape of the new data frame.