PLZ HELP IM DOING 2 other 100 work and I’m running out of time for school 1. Imagine you are a screenplay writer Discuss some possible activities or techniques you
could use to improve your character creation and development
2. Do you think it's possible for an entire film to be shot using only one camera angle?
Explain why or why not and how this might impact the film.
3. The unit says that in film you must show, not tell. Is this always true? When might it be
better to tell rather than show? Explain
4. You learned that lighting can play an important role in films and animation but is the
same true of your everyday life? How does lighting impact your daily life and how do you
use it to improve/change your surroundings?
5. After becoming more familiar with the various roles that people play when making an
animated film – such as writer artist
, director assistant director lighting, sound eto-
which do you think that you would enjoy most and why? Which do you think would be the
most difficult and why? Explain your answers

Answers

Answer 1
My mans this is to long to read ); I got u tho lemme pick

Related Questions

Explain ways in which we can create strings in Python?​

Answers

Answer:

Strings can be created by enclosing characters inside a single quote or double-quotes. Even triple quotes can be used in Python but generally used to represent multiline strings and docstrings.

Explanation:

Strings can be created by enclosing characters inside a single quote or double-quotes. Even triple quotes can be used in Python but generally used to represent multiline strings and docstrings.

Which of the following is not an acceptable inventory costing method? a. Specific identification b. Last-In, First-Out (LIFO) c. First-In, First-Out (FIFO) d. Average cost e. Next-In, First-Out (NIFO)

Answers

e. Next-In, First-Out (NIFO) is not an acceptable inventory costing method.

The acceptable inventory costing methods commonly used in accounting are specific identification, Last-In, First-Out (LIFO), First-In, First-Out (FIFO), and average cost.

methods help determine the value of inventory and the cost of goods sold. However, "Next-In, First-Out" (NIFO) is not a recognized or commonly used inventory costing method. It is not considered an acceptable method in accounting practices. NIFO is not based on any standard accounting principles or widely accepted conventions. It is important to adhere to recognized and generally accepted inventory costing methods to ensure consistency, accuracy, and comparability in financial reporting.

Learn more about accounting  here:

https://brainly.com/question/32789402

#SPJ11

Your company emphasizes the important of conserving (not wasting)
resources. How can you support that value when you print an 8-page report
you were asked to bring to your department's monthly meeting?
A. Use the Save option to choose a format readers can open.
B. Post the report online before printing it.
C. Use the Print option to create extra copies.
D. Use the Print option for two-sided printing.
SUBMIT

Answers

Answer:

D. Use the Print option for two-sided printing.

Explanation:

ape x

Answer:

D

Explanation:

"Jon is a DJ and he spends a lot of time traveling around the country to perform at concerts and festivals. He has a large music collection which he must be able to easily transport with him wherever he goes.” What is the best storage device for him?

Answers

Answer:

hard disk

Explanation:

it is used to store information

When do I use while loops

Answers

Answer:

When you dont know how long the loop is going to run for

Explanation:

what is the best combos for Nix in Brawlhalla (PS4)?​

Answers

I have never played the game but chose the good ones.

Answer:

sycthe is simple. Do down light and then turn them around. Then do chase dodge to neutral air. its an infinite combo

Explanation:

what is 14.10 to the tenth power​

Answers

what i remeber is that when your trying to figure out to the tenth power u have to multiply it like for example:\(3^{2}\)power would be 9 because u had to multiply 3, 2 times so i think the answer is 310,592,615,939.35/310,592,615,939.4

Case 3: Mia earns a generous salary as a professor of veterinary medicine. She is usually busy and spends very little time at home. Due to a recent grant opportunity, she will move to a larger university that is located several hours away, but her grant is only guaranteed for two years at that university.

Answers

This is a financial decision problem. Mia should Lease. Buying a home is a long-term investment, and a two-year commitment is not enough time to see a return on the investment.

What is the justification for the above response?

Since Mia's grant is only guaranteed for two years, it would not be wise for her to purchase a home.

Buying a home is a long-term investment that requires more than a two-year commitment to see a return on the investment. Additionally, buying a home comes with additional expenses such as property taxes, maintenance costs, and closing fees.

Leasing a home or apartment would provide Mia with a more flexible and cost-effective solution since she may have to move again after the two-year grant period.

Learn more about Financial Decisions at:

https://brainly.com/question/28500235

#SPJ1

Full Question:

Mia earns a generous salary as a professor of veterinary medicine. She is usually busy and spends very little time at home. Due to a recent grant opportunity, she will move to a larger university that is located several hours away, but her grant is only guaranteed for two years at that university. Should she buy or lease a home?

can you please provide a Python code to make this structure shown on the image?

The green rectangle is 300 by 100 and the largest pentagon has sides of 60. and provides a suitable name for it

can you please provide a Python code to make this structure shown on the image? The green rectangle is

Answers

A Python code that uses the Turtle module to create the structure described in the image is given.

How to depict the code

import turtle

# Create a turtle object

t = turtle.Turtle()

# Set the speed of the turtle

t.speed(10)

# Function to draw a pentagon

def draw_pentagon(side_length):

   for _ in range(5):

       t.forward(side_length)

       t.right(72)

# Function to draw the entire structure

def draw_structure():

   # Draw the green rectangle

   t.color("green")

   t.begin_fill()

   for _ in range(2):

       t.forward(300)

       t.right(90)

       t.forward(100)

       t.right(90)

   t.end_fill()

   # Draw the pentagons

   side_length = 60

   for i in range(4):

       draw_pentagon(side_length)

       t.penup()

       t.forward(80)

       t.pendown()

       side_length -= 10

   # Hide the turtle

   t.hideturtle()

# Call the draw_structure function

draw_structure()

# Keep the turtle window open

turtle.done()

Learn more about Python on

https://brainly.com/question/26497128

#SPJ1

A particular series (fib) is defined by the following recurrence relation: fib(n) = n, if n <= 2 fib(n) = fib(n-1) + fib(n-2) + fib(n-3) if n >= 3 (valid n values are greater than or equal to zero) what is the value of fib(14)? 2632 Undefined 235 996

Answers

In mathematics, a series refers to the sum of a sequence of numbers. In this particular problem, we are given a sequence that is defined by the recurrence relationfib(n) = n, if n ≤ 2fib(n) = fib(n-1) + fib(n-2) + fib(n-3) if n ≥ 3.

And, we are asked to determine the value of fib(14). Therefore, we can use the above formulae to determine the values of fib(n) for n ≤ 2, and then use the recurrence relation to determine the values of fib(n) for n ≥ 3.

fib(0) = 0 (given)fib(1) = 1 (given)fib(2) = 2 (given)fib(3) = fib(2) + fib(1) + fib(0) = 2 + 1 + 0 = 3fib(4) = fib(3) + fib(2) + fib(1) = 3 + 2 + 1 = 6fib(5) = fib(4) + fib(3) + fib(2) = 6 + 3 + 2 = 11fib(6) = fib(5) + fib(4) + fib(3) = 11 + 6 + 3 = 20fib(7) = fib(6) + fib(5) + fib(4) = 20 + 11 + 6 = 37fib(8) = fib(7) + fib(6) + fib(5) = 37 + 20 + 11 = 68fib(9) = fib(8) + fib(7) + fib(6) = 68 + 37 + 20 = 125fib(10) = fib(9) + fib(8) + fib(7) = 125 + 68 + 37 = 230fib(11) = fib(10) + fib(9) + fib(8) = 230 + 125 + 68 = 423fib(12) = fib(11) + fib(10) + fib(9) = 423 + 230 + 125 = 778fib(13) = fib(12) + fib(11) + fib(10) = 778 + 423 + 230 = 1431fib(14) = fib(13) + fib(12) + fib(11) = 1431 + 778 + 423 = 2632.

Therefore, the value of fib(14) is 2632.

To learn more about value :

https://brainly.com/question/30145972

#SPJ11


A programmer has a need to round many numeric values to the nearest integer. Which of the following best explains the benefit of using a list as a data abstraction in this situation

Answers

Answer:

Keeping the numeric values in a list makes it easier to apply the same computation to every data element.

Explanation:

A list or array in programming is a data structure, that has the location for each item it holds indexed. It eliminates the need to constantly create a variable to compute items of the same data types.

The list can store items of the same data type and iterate over them to compute the same calculation on each of them.

Lists are values which are seperated by commas and populated within square brackets. They are mutable and values could be easily accessed, appended, deleted or replaced. Hence, the use of a list for data abstraction is beneficial in that the round function could be easily applied to all the values in the list.

Rounding the values in the list coukd be easily done using for loop which takes each value in the list one at a time, rounds them to the nearest integer and places them into another list.

Using the a python list comprehension thus:

Given a list of numeric Values :

my_list = [1.2, 1.4, 1.5, 1.7]

rounded_int = [round(x) for x in my_list]

Learn more : https://brainly.com/question/20533392

Complete the sentence.
One way to increase the reliability of a hard disk drive is by making it part of ____
an optical array
a capacitator
a RAID
an analog ray

Answers

I think it is the capacitor

Answer: It is raid

Explanation:

Took the test for edge

Select the correct answer. Which engineering professional communicates potential flaws in product design? A. maintenance engineer B. design engineer C. analysis engineer D. inspection engineer E. field engineer

Answers

the correct answer is the letter C. plz mark me the brainliest!!1

Answer:

the answer is c

Explanation:

Make the other dude/girl brain list, he answered first after all, and I got it right on the test thx to him.


Write about Alarm System and evacuation protocol in detail
( WRITE BY USING COMPUTER PLEASE !!! )

Answers

Alarm systems and evacuation protocols play a vital role in ensuring the safety of individuals by promptly detecting hazards and facilitating organized evacuations during emergencies.

An alarm system is a mechanism that uses an alert to warn people of a potential danger. The most frequent use of an alarm system is to warn of a fire, but it may also be used for other purposes, such as notifying of a break-in or detecting dangerous gasses.

The system may be designed to detect the occurrence of an event or to provide an audible or visual signal when a predetermined threshold has been surpassed, such as when a sensor registers a certain level of heat or smoke. An evacuation protocol, on the other hand, is a sequence of procedures that are followed in the event of an emergency or catastrophe, such as a fire or gas leak. The goal of an evacuation protocol is to safely and efficiently evacuate individuals from a hazardous area and to provide them with the appropriate care and assistance.

The procedures in an evacuation protocol vary depending on the nature of the emergency, but the general process typically includes a warning signal, an assessment of the situation, and a plan to evacuate. For example, if a fire alarm system is activated, the evacuation protocol may involve sounding an alarm, alerting emergency personnel, and evacuating individuals to a designated safe area.

To know more about Alarm systems visit :

https://brainly.com/question/29834691

#SPJ11



what type of data structure associates items together?


A. binary code


B. dictionary

C. interface

D. editor ​

Answers

The  type of data structure associates items together is dictionary.

A dictionary, additionally known as a map or associative array, is the structure of a record that shops statistics in key-price pairs. It permits green retrieval and manipulation of data by associating a unique key with each price.

In a dictionary, the key serves as the identifier or label for a selected price. This key-cost affiliation permits brief get admission to values based on their corresponding keys. Just like an actual-international dictionary, where phrases (keys) are related to their definitions (values), a dictionary data shape allows you to appearance up values with the aid of their associated keys.

The gain of using a dictionary is that it affords rapid retrieval and green searching of facts, as it makes use of a hashing or indexing mechanism internally. This makes dictionaries suitable for eventualities wherein you need to quickly get admission to or replace values based on their unique identifiers.

Therefore, whilst you want to associate items collectively and retrieve them using their corresponding keys, a dictionary is the right facts structure to apply.

Read more about dictionary at:

https://brainly.com/question/17197962

For questions 1-3, consider the following code: x = int (input ("Enter a number: ")) if (x != 8): print ("A") if (x >= 10): print ("B") if (x < 10): print ("C") if (x % 2 == 1): print ("D") What is output if the user types in 13?

Answers

Answer:

ABD

Explanation:

13 not equal 8, greater than 10 and odd. Ifs will be executed step-by-step

How many bit make a byte .​

Answers

Answer:

It is easy .8 bits.You have to note this

Answer: 8

1 byte = 8 bit

Question 8 of 10
Which type of computer operating system would be best for a large
corporation?
O A. Single-user, multitasking
B. Multi-user, multitasking
C. Single-user, single-tasking
D. Real-time

Answers

Answer: B. Multi-user, multitasking.

Explanation:

Multiuser/Multitasking operating system refers to an operating system that's powerful and supports more than one user at a time, and can also perform more than one task at a time.

The operating system allows many users to use the programs which are running concurrently on a single network server. It is the computer operating system that would be best for a large corporation. An example is UNIX.

The four main parts of a computer system are the Input, output, processor, and:
O A core.
OB. hardware.
OC. software.
OD. storage.

Answers

Answer:D) Storage

Explanation:

When would you use database software instead of spreadsheet or word processing software?​

Answers

Answer: When I need to see table relationships and sort data by custom fields.

Explanation:

Answer: When I need to see table relationships and sort data by custom fields.

Explanation: took the quiz

Which of the following statements best explains how multitasking works in the human mind?

Answers

Multitasking is a myth—everyone can only process information one piece at a time.

Answer: He's right

Explanation: I got the answer too

uml (unified modeling language) is another name for a flowchart that uses classes. question 18 options: true false

Answers

UML (Unified Modeling Language) is another name for a flowchart that uses classes is a false statement.

What is UML?

The Unified Modelling Language (UML), which is used in the field of software engineering, is a standard method that developers use to generate, visualize, and record the attributes of a software system. In this way, visual models of the software application are created. The first category of UML consists of diagrams that depict the structural details of a software system (Class and object diagrams, for example). The diagrams in the second category, on the other hand, show how the system behaves (Activity and Use case diagram ).

However, flowcharts are only one way to depict a work-flow or an algorithm, which is the process of addressing a problem step-by-step. Despite the fact that both employ symbols to express events, they are distinct.

To learn more about UML visit:

https://brainly.com/question/14971526

#SPJ4

A type of computer that forwards data across a networka. router b. internet protocol (IP)c. pathd. bandwith

Answers

The correct answer is a router.

What is a Router?

A router is a type of computer that forwards data packets between networks.

It determines the best path for data to take based on network conditions, such as traffic congestion and availability of resources.

Routers use the Internet Protocol (IP) to communicate with other devices on the network and to make decisions about how to send data to its intended destination.

Bandwidth, on the other hand, refers to the amount of data that can be transmitted over a network in a given time period, while a path is the sequence of routers and switches that data must traverse to reach its destination

Read more about computers here:

https://brainly.com/question/28498043

#SPJ1

_____ is the process of creating a series of bogus Web sites, all linking back to the pages one is trying to promote.

Answers

The process of creating a series of bogus web sites, all linking back to the pages one is trying to promote, is called link farming.

Link farming is a black hat search engine optimization (SEO) technique that involves creating multiple low-quality or spammy websites with the sole purpose of linking back to the target website in order to manipulate search engine rankings. The idea behind link farming is to artificially inflate the number of inbound links pointing to a website, which can improve its search engine ranking.

Link farming is considered an unethical and manipulative practice by search engines, and can result in penalties, including the potential for a website to be banned from search engine results pages (SERPs). This is because search engines aim to provide the most relevant and useful results for their users, and link farming manipulates the system to achieve higher rankings, rather than providing value to users.

Instead of link farming, businesses and website owners should focus on building high-quality, relevant, and valuable content that naturally attracts inbound links from other reputable websites. This approach, known as link earning, is a more sustainable and ethical way to improve search engine rankings and drive traffic to a website.

Learn more about web sites here:

https://brainly.com/question/8775665

#SPJ11

Checking account a charges a mouthly service fee $23 and wire transfer fee of $7.50 while checking account b charges a monthly service fee of $14 and wire transfer fee of $9.50 which checking account is the better deal if four wire transfers are made per month

Answers

Answer:

Checking account b is the better deal, because the total monthly fees amount to $52, while those for checking account a amount to $53.

Explanation:

Given:

monthly service fee of checking account a = $23

wire transfer fee of a = $7.50

monthly service fee of checking account b = $14

wire transfer fee of b = $9.50

To find:

which checking account is the better deal if four wire transfers are made per month?

Solution:

If four wire transfers are made per month then total monthly fees of both accounts is computed as follows:

Account a:

service fee of a + four wire transfers fee of a

23 + 4(7.50) = 23 + 30 = $ 53

Account b:

service fee of b + four wire transfers fee of b

14 + 4 (9.50) = 14 + 38 = $ 52

From the above results checking account b is the better deal because the total monthly fees amount to $52 while total monthly fees for checking account a amount to $53.

A school that proves it is providing high quality education that will meet the student’s needs is called???
there are no multiple choice options, please help

Answers

A private school or a prep school
I’m pretty sure

A school that proves it is providing high quality education that will meet the student’s needs is called private school.

Private school

A standard school is a school of learning that has the required standard needed so as to impact quality education on their students.

For a school to provide high quality education for their student such school must possess the following :

Hire qualified and quality teacherProvide learning instrument that are qualityConducive learning environment etc

Therefore a school that proves it is providing high quality education that will meet the student’s needs is called private school.

Learn more about private school here: https://brainly.com/question/24289862

#SPJ2

why organization keep documents in word format and publish them in pdf format?

Answers

Organizations keep documents in Word format and publish them in PDF format because of the following reasons: Reasons to keep documents in Word format1. Easy to edit: Word documents are designed to be edited. They can be opened, edited, and saved with ease.2.

Formatting: Word documents offer a wide range of formatting options. The formatting options are easier to use than in other formats.3. Collaboration: Word documents can be shared and edited by many people. Multiple authors can work on the document simultaneously. Reasons to publish documents in PDF format1. Preserves formatting: PDF documents preserve the formatting of the original document.

They are designed to ensure that the document appears the same regardless of the device it is viewed on.2. Security: PDF documents can be secured by password or digital signature. This ensures that the document is not altered by unauthorized people.3. Size: PDF documents are smaller in size compared to Word documents. This makes them easier to transfer over the internet.

Learn more about Word format at https://brainly.com/question/31983788

#SPJ11

The definition of "HTML element" _____. defines the whole document and has a start tag (< xtml >) and end tag (< /xtml >) defines the partial document and has a start tag (< html >) and end tag (< /html >) defines the whole document and has a start tag (< html >) and end tag (< /html >) defines the partial document and has a start tag (< xtml >) and end tag (< /xtml >)

Answers

I believe the “” element defines the whole document as it is used in the first line of code and has a start tag and end tag which is .

I hope this is correct. I’m not quite sure with the question, but I think this is right.

what is the full form of BASIC​

Answers

Answer:

BASIC, in fullBeginner's All-purpose Symbolic Instruction Code, computer programming language developed by John G.

When should you not get a patent?

Answers

You should not get a patent if you do not have an invention that is eligible for a patent. This means that the invention must be new and non-obvious and must be able to be produced or used in some type of industry. Additionally, a patent can be expensive and time-consuming to obtain, so you may want to consider other forms of protection such as trade secrets or copyrights before investing in a patent.

1. If your invention is not novel, meaning it has already been invented or is obvious to someone with ordinary skill in that area, then you should not get a patent. For example, if you invent a new type of chair but someone has already invented a similar chair, then getting a patent would be fruitless.

2. If your invention does not meet the criteria of patentability, such as it is not useful, novel, or non-obvious, then you should not get a patent. For example, if your invention is something that does not have a practical purpose, like a perpetual motion machine, then it would not meet the criteria for patentability and you should not get a patent.

3. If the cost of getting a patent is higher than the potential value of the invention, then you should not get a patent. For example, if you invent a new type of mousetrap but the cost of patenting it is very high, then you would be better off not getting a patent.

4. If the invention is not patentable subject matter, then you should not get a patent. For example, if you invent a new type of business model, then it would not be patentable subject


The first person to invent a claimed invention—even if a later inventor beats the first inventor to the patent office.A patent is an exclusive right granted for an invention, which is a product or a process that provides, in general, a new way of doing something, or offers a new technical solution to a problem. To get a patent, technical information about the invention must be disclosed to the public in a patent application.

To learn more about PATENT Visit here : https://brainly.com/question/28943800

#SPJ4


Other Questions
(Please help Asap)The _______ River is important to the Western region of the United States.A. MississippiB. ColumbiaC. Holston using the data you acquired from the tube in the dish containing 0.05 m naoh, about how long did you predict it would take for glucose absorbed in the gut to diffuse to muscles in your foot How do you think the slave trade impacted the region people were being shipped from, as well as the regions people were being shipped to? ( the Gold Coast slave trade) Transatlantic slave trade In baseball, David has 10 hits out of 14 at bats. Adam has 15 hits out of 21 at bats. For each player, write a ratio that represents his total number of hits out of times at bat.Are these ratios equivalent? who was edward teach? Which part(s) of CAIN is realized through the use of message digest functions and hashes? Value of the constant Write an equation in point-slope form for the given point and slope: (9, -3) and slope 7 ( \frac { y ^ { - 1 } } { x ^ { - 1 } } + \frac { x ^ { - 1 } } { y ^ { - 1 } } ) ^ { - 1 } What specific sections are required as part of an Affirmative Action plan and why? Per OFCCP the employer has to have how many employees, and how much in contacts, in order to be obligated to file an Affirmative Action Plan? What is required to prove under utilization? Florence has $400 in a savings account. The interest rate is 5% per year and is notcompounded. How much interest will she earn in 1 year?Use the formula i = prt, where i is the interest earned, p is the principal (starting amount),is the interest rate expressed as a decimal, and t is the time in years. A 5 inch x 7 inch photograph is placed inside a picture frame. Both the length and width of the frame are 2xinches larger than the width and length of the photograph. Which expression represents the perimeter of theframe?O 4x + 12O 8x + 24O 2x +24O 4x+24x+35Mark this and returnSave and ExitNextSubmit strong winds developing high heat outputs in active fire heads. a probable change in wind speed and direction. high winds aloft with the potential to surface. wind may spring back up in a different direction. the direction of fire spread Use the following table to answer the question below: Variable Total Marginal Average Quantity Cost Cost Cost Total Cost 1 1 17 1 17 2 4 20 3 10 3 25 5 8.33 16 32 7. 8 5 25 41 9 8.2 6 36 52 11 8.67 At which quantity does this firm experience diseconomies of scale? O Q=1 Q=2 Q=5 = 3 4 C o 9 Suppose that in a competitive market the market price is $10. This firm is operating at... Constant Returns to Scale None of these answers. Economies of Scale O Diseconomies of Scale According to the table, are workers working better together? Yes, they are working better together because the average total cost falls and then increases. Yes, they are working better together because the marginal cost increases as the quantity increases. No, they are not working better together because the average total cost falls and then increases. No, they are not working better together because the marginal cost increases as the quantity increases.Previous questionNext question i needthis asap!! helppppp Bea is buying pens and pencils. Pens cost $2 and pencils cost $1. She plans on spending no more than $10 and wants to buy at least 10 items. Which two inequalities model this situation? ____ was a colony of Denmark. si -x+y+z=75, entonces -(x+3)+(y-5)+(z-6)= what is the area of the cylinder rounded to the nearest whole number View Policies Current Attempt in Progress The following expenditures and receipts are related to land, land improvements, and buildings that were acquired for use in a business enterprise. The receipts are in parentheses 1. Money borrowed to pay a building contractor (signed a notel. ($274,6101 A payment for building construction from note proceeds $274.610 The cost of landfill and clearing $7,930 Delinquent real estate taxes on property, assumed by the purchaser, $6.810 5. A premium on a six-month insurance policy during construction, $5.900 6. Refund of one month's insurance premium because construction was completed early ($930) 7. An architect's fee on a building $21.970 8. The cost of real estate purchased as a plant site (land $199.900, building $49.975), $249,875 9. A fee paid to a real estate agency for finding the property, $8.770 relating to the land purchase (see 8) ENG 2. 3. 4. 11 AM MITTAD apter 10-F21pa Question 7 of 8 < > /10 B. The cost of real estate purchased as a plant site (and $199.900, building $49,975), $249.875 9. A fee paid to a real estate agency for finding the property, $8,770 relating to the land purchase (see 60 10. The installation of fences around a property, $3,780 11 The cost of razing (demolishing) and removing the building on the plant site (see item 8), $10,840 12. Proceeds from the salvage of the demolished building (54,670) 13. Interest paid during construction on money borrowed for construction, $12.970 14. The cost of parking lots and driveways. $18.630 15. The cost of trees that were planted (non-permanent in nature, to be replaced every 20 years), $13.660 Excavation costs new building, $2.810 16. 17. The recoverable GST on the excavation cost. $550 Identify each itern by number and list the items in columnar form, as shown below. Using the column headings that follow, enter the amount under the column heading where it would be recorded. For any amounts that should be entered in the Other Accounts column ENG 17 1 00 TESTAM 2022-06-12 Question 7 of 8 -/10 1 Identify each item by number and list the items in columnar form, as shown below thing the column headings that followed the amount under the column heading where it would be recorded. For any amounts that should be entered in the Other Accounts colan also indicate the account title. (Show the receipts in using either a negative sign preceding the number ea-15,000 or parentheses (15,000). If there is no entry in other accounts, select "No Entry for the account titles) Land Improvements Hem Land Building $ 1. 2 3 0 11 3823-06-12 Question 7 of 8 4. 5 9 6. NE 8. 6 10 11. 12 C -/10 1 1852 AM 9:00 2003-04-12