Multimedia software is a tool that allows the user to run ______________ and ______________ with the help of media player and real player. *Multimedia software is a tool that allows the user to run ______________ and ______________ with the help of media player and real player. *​

Answers

Answer 1

Answer:

audio and video

Explanation:

multimedia software is a tool that allows the user to run audio and video with the help of media player and real player


Related Questions

What is the keyboard shortcut to show formulas in a worksheet (as opposed to the value)? OCTRL+S OCTRL + Z CTRL- There is no shortcut for showing formulas

Answers

CTRL +  (tilde) is a keyboard shortcut to show formulas instead of values in Excel spreadsheets. It can be found in the upper-left corner of most keyboards, below the Escape key or just left of the 1 key.

The keyboard shortcut to show formulas in a worksheet (as opposed to the value) is `CTRL + ~` (tilde).When working with Excel spreadsheets, you might want to display the formulas instead of the values in your cells. This could be done by using the "Show Formulas" button. But, if you're doing this frequently, it's easier to use a keyboard shortcut. To do this, press `CTRL + ~` (tilde) and it will show all of the formulas in your spreadsheet instead of the values.

The tilde symbol, ~, can be found in the upper-left corner of most keyboards. It is usually located below the Escape key or just left of the 1 key. It's worth noting that pressing the `CTRL + ~` (tilde) keyboard shortcut again will switch back to displaying the values.

To know more about Excel spreadsheets Visit:

https://brainly.com/question/10541795

#SPJ11

Trace the code below to find the two errors.
One is a syntax error meaning the code will not run with it, the other is a runtime error, where the code will run but the output is incorrect.

subtotal = input("Enter total before tax:")

tax = .08 * subtotal

print("tax on" + subtotal + "is:" + str(tax))

Answers

Syntax errors would prevent a program running at all, while runtime errors would prevent the program from running properly

How to locate the error

The subtotal variable is to take a numerical value (i.e. integer or float).

From the question, the first line gets a string value for the subtotal variable.

So, the first error in the program is:

subtotal = input("Enter total before tax:")

The second error is in printing the output on line 3.

The line 3 is an error because the line attempts to print a numerical value and a string value without converting the numerical value to string value.

So, the correct program is:

subtotal = float(input("Enter total before tax:"))

tax = .08 * subtotal

print("tax on " + str(subtotal) + " is: " + str(tax))

Read more about errors at:

https://brainly.com/question/18497347

1 1
2 14
7 4
10 31
- What do you think this list represents?
Hint: pay attention to the format of the list (two numbers) ... also, this list
happens throughout the year.
o Answer:

Answers

Answer:

they are all holidays

Explanation:

Jan 1st New years

Feb 14th Valentines day

July 4th Independence day

October 31st Halloween

One reason to create a virtual machine with multiple multi-core vCPUs is:

Answers

The one would create a virtual machine with multiple multi-core vCPUs is to improve the overall performance and efficiency of the system. By allocating more vCPUs, the virtual machine can handle more concurrent tasks and workload, resulting in faster processing times and better resource utilization.

Virtual machines are often used to create isolated environments for running applications or hosting services. However, the performance of a virtual machine depends on the resources allocated to it, particularly the number of vCPUs and the amount of RAM. By configuring a virtual machine with multiple multi-core vCPUs, the system can handle more parallel processing tasks and distribute the workload more efficiently, which can significantly improve performance.

In summary, creating a virtual machine with multiple multi-core vCPUs is an effective way to boost performance and optimize resource utilization. By properly allocating resources to a virtual machine, one can create an efficient and responsive environment for running applications or hosting services.

To learn more about times visit;

https://brainly.com/question/26941752

#SPJ11

What advantages and disadvantages do you see in using Face book professionally?

Answers

Advantage Spread and widen your business make it more known bit of marketing those are the advantages the disadvantage is depending on your account and how many people view at the algorithm that cause people to see your account how many people will be put to see your account and that is basically a disadvantage because if not many people see your account then said why don’t it’s not spread it’s not marketed at all

java is not preferred for programming fast-executing, native desktop applications.
a.true
b.false

Answers

The given statement that "java is not preferred for programming fast-executing, native desktop applications" is false.

What is Java?

Java is a high-level, object-oriented, class-based programming language designed to run on any computer with the Java Virtual Machine (JVM) installed. It is a general-purpose programming language that is used for developing mobile applications, games, web-based applications, and other software that can be run on a variety of hardware platforms. Java is a fast, secure, and reliable language that is widely used by programmers all over the world.

Why Java is preferred?

Java is the best option for creating fast-executing, native desktop applications because of its platform independence, scalability, and security features. Java is also the preferred language for developing web-based applications because it has the ability to run on a variety of operating systems, including Windows, Mac OS X, and Linux. This makes it a great choice for developers who need to build applications that can run on a variety of devices, from desktops to smartphones. So, Java is preferred for programming fast-executing, native desktop applications.

Therefore, the given statement is false.

Learn more about Java: https://brainly.com/question/12978370

#SPJ11

suppose you are designing a processor that contains a register file with 40 32-bit registers (i.e. a 40x32 register file). what is the minimum number of bits required in order to select which register is read from?

Answers

The minimal minimum required to determine which register will be read from is six bits.

What processes are involved?

The calculations for a computer are performed by an integrated electrical circuit known as a processor. Basic operating system instructions, such as logical, input/output (I/O), and other activities, are carried out by a CPU (OS). The operations of a processor are relied upon by the majority of other processes.

The terms processor, central processing unit (CPU), and microprocessor are frequently used interchangeably. The phrases "processor" and "CPU" are often used today, however they shouldn't be used interchangeably because a computer's CPU is just one of many processors (PC).

To know more about CPU, visit:

https://brainly.com/question/13117851

#SPJ4

What is windows operating system?​

Answers

Answer:

Here is your ans pic

Explanation:

Hope it helps you Tsym

What is windows operating system?


In Assembly 8086 language exam I got a degree 3.5 / 5 and I
don't know where I'm mistake

this is picture of questions
loop1: mov al,[si] cmp al,[si+1] jl next xchg al.[si+1] xchg al,[si] next: inc si dec dl jnz loop1 dec cl jnz loop2 hit code ends end start To exchange the contents of (si) and (si+1) To test the data

Answers

The given assembly code snippet performs the following tasks:

1. Exchanges the contents of (si) and (si+1).

2. Tests the data segment.

3. Arranges the numbers in descending order.

4. Arranges the numbers in ascending order.

1. Exchanging the contents of (si) and (si+1):

- The code uses the `xchg` instruction to swap the values at memory locations (si) and (si+1).

- The `mov` instruction loads the value at (si) into the AL register.

- The `cmp` instruction compares the value at (si) with the value at (si+1).

- If the value at (si) is less than the value at (si+1) (`jl` condition), the code proceeds to the `next` label.

- If the condition is not met, the `xchg` instructions exchange the values at (si) and (si+1).

2. Testing the data segment:

- The code segment does not contain explicit instructions for testing the data segment. It might be referring to other parts of the program that are not shown.

3. Arranging the numbers in descending order:

- The code uses a loop labeled as `loop1` to compare and exchange adjacent values in memory.

- The `jl` instruction checks if the value at (si) is less than the value at (si+1).

- If it is, the values are exchanged using `xchg`, ensuring that the larger value moves towards the end of the memory block.

- The loop continues until all adjacent values are compared and swapped, resulting in the numbers being arranged in descending order.

4. Arranging the numbers in ascending order:

- The code does not explicitly contain instructions to arrange the numbers in ascending order.

- To achieve ascending order, the comparison condition in the `jl` instruction should be changed to `jg` (greater than) in the `loop1` loop.

In summary, the given assembly code performs operations to exchange values, test the data segment (not explicitly shown), and arrange numbers in descending order. To arrange the numbers in ascending order, the comparison condition in the `jl` instruction should be changed to `jg` in the `loop1` loop.

Learn more about snippet here:

https://brainly.com/question/30772469

#SPJ11

The complete question is:

loop1: mov al,[si] cmp al,[si+1] jl next xchg al.[si+1] xchg al,[si] next: inc si dec dl jnz loop1 dec cl jnz loop2 hit code ends end start To exchange the contents of (si) and (si+1) To test the data segment To arrange the numbers in descending order To arrange the numbers in ascending order

Adjust the code you wrote for the last problem to allow for sponsored Olympic events. Add an amount of prize money for Olympians who won an event as a sponsored athlete.

The

Get_Winnings(m, s)
function should take two parameters — a string for the number of gold medals and an integer for the sponsored dollar amount. It will return either an integer for the money won or a string Invalid, if the amount is invalid. Olympians can win more than one medal per day.

Here's my answer for question 1 please adjust it thanks!

def Get_Winnings(m):

if m == "1": return 75000

elif m == "2":

return 150000

elif m == "3":

return 225000

elif m == "4":

return 300000

elif m == "5":

return 375000

else:

return "Invalid"

MAIN

medals = input("Enter Gold Medals Won: ")

num = Get_Winnings(medals)

print("Your prize money is: " + str(num))

Answers

Answer:def Get_Winnings(m):

if m == "1": return 75000

elif m == "2":

return 150000

elif m == "3":

return 225000

elif m == "4":

return 300000

elif m == "5":

return 375000

else:

return "Invalid"

MAIN

medals = input("Enter Gold Medals Won: ")

num = Get_Winnings(medals)

print("Your prize money is: " + str(num))

exp: looking through this this anwser seemes without flaws and i dont follow

if you can provide what you are not understanding ican an help

The bubble sort is an easy way to arrange data in ascending order but it cannot arrange data in descending order. true/false

Answers

The statement "The bubble sort is an easy way to arrange data in ascending order but it cannot arrange data in descending order" is true.  


To understand why bubble sort cannot arrange data in descending order, let's consider an example. Suppose we have an array. During the first pass of bubble sort, the largest element will move to the end of the array, which in this case will be 8. In the second pass, the second-largest element will move to the second-to-last position, and so on.

In order to sort data in descending order, we would need to use a different sorting algorithm, such as selection sort or insertion sort, which can compare elements at any position in the array and swap them accordingly. Therefore, the statement that bubble sort cannot arrange data in descending order is true.

To know more about element visit:

https://brainly.com/question/31950312

#SPJ11

the important of Agile Mindset in an organisation?

Answers

The Agile mindset is highly important in organizations for various reasons. Here's a step-by-step explanation of its significance:


The Agile mindset emphasizes flexibility and adaptability in response to changing circumstances. In today's fast-paced and unpredictable business environment, organizations need to be able to quickly respond to market shifts, customer demands, and emerging opportunities.

In summary, the Agile mindset is essential in organizations as it promotes adaptability, collaboration, customer-centricity, iterative development, and continuous learning. By embracing these principles, organizations can effectively navigate uncertainty, foster innovation, and deliver value to their customers.

To know more about important visit:

https://brainly.com/question/31444866

#SPJ11

Considering the size of your dataset, you decide a spreadsheet will be the best tool for your project. You proceed by downloading the data from the database.
Describe why this is the best choice.

Answers

Using a spreadsheet is a good choice for managing and analyzing data for several reasons:

1. Organization: A spreadsheet allows you to organize your data into rows and columns, making it easy to view and manage. You can sort, filter, and search your data quickly and easily.

2. Calculation: Spreadsheets have built-in formulas and functions that allow you to perform calculations on your data. This can save you time and reduce the risk of errors.

3. Visualization: Spreadsheets allow you to create charts and graphs to visualize your data. This can help you identify trends and patterns that may not be immediately apparent from looking at the raw data.

4. Sharing: Spreadsheets can be easily shared with others, making it a good choice for collaborative projects. You can also control who has access to the data and what they are able to do with it.

5. Flexibility: Spreadsheets are highly customizable, allowing you to tailor them to your specific needs. You can add new data, modify existing data, and create new formulas and functions as needed.

Overall, using a spreadsheet is a good choice for managing and analyzing data because it offers a high degree of organization, calculation, visualization, sharing, and flexibility.

heyyyyyy
byeeeeeeeeeeeeeeeeeeeeeee

Answers

Answer:

byeeeeeeee

Explanation:

Answer:

Heyyyyyyy

Byeeeeeee

Explanation:

Go to iauditor website ->create username and password ->Create templates -> Filter by industry selection options -> Import and start inspection.
Instructions:
1) Answer yes, No ,N/A
2) Add photos and notes (any picture related you choose industry selection)
3) Add action or media related information
4) Digital Signature
5) Save your report in Pdf

Answers

Once you have created your account, you can then begin creating templates for your inspections. These templates will be used to guide your inspections, and you can create them to fit your specific needs.


To filter your templates by industry selection options, simply click on the “filter” button in the top right corner of the screen. This will bring up a list of all the available industry selection options, and you can select the one that best fits your needs.
In conclusion, the iAuditor website is an easy-to-use platform that allows you to conduct inspections of all types. With its user-friendly interface and advanced features, it is the perfect tool for anyone looking to streamline their inspection process.

To know more about account visit:

https://brainly.com/question/30977839

#SPJ11

d
5.
in the blanks. Compare your answers with your classmates' an
mnemonic codes
COBOL
1.
2. Assembly language is based on
3.
4.
Stat
SQL
is a language processor.
Compiler
is a high-level language.
number system consists of 10 digits.
is a fifth generation language.
Decimal

Answers

Answer:

1. COBOL: Common Business-Oriented Language

2. Assembly language is based on machine code.

3. Stat: Statistical Analysis System

4. SQL: Structured Query Language

5. Decimal: Decimal number system consists of 10 digits.

Mnemonic codes: Mnemonic codes are used to represent instructions or data in a more human-readable format, making it easier for programmers to remember and understand. Examples of mnemonic codes include ADD (addition), SUB (subtraction), and MOV (move). They are commonly used in assembly language programming.

Compiler: A compiler is a language processor that translates high-level programming code into machine code, which can be directly executed by a computer. It performs various tasks such as syntax analysis, optimization, and code generation.

High-level language: A high-level language is a programming language that is designed to be easier for humans to read, write, and understand. It provides a higher level of abstraction and is closer to natural language compared to low-level languages like assembly or machine code.

Fifth-generation language: A fifth-generation language (5GL) is a programming language that focuses on artificial intelligence and problem-solving using a high-level, declarative approach. It allows programmers to specify what needs to be done rather than how to do it. Examples of 5GLs include Prolog and OPS5.

can someone help me, please

can someone help me, please

Answers

Answer:

eeeee

Explanation: flamingo youtooz

1-DESIGN TAB....................2-LAYOUT TAB .

1-wordart styles,

2-table size,

1-Table styles,

2-alignment,

1-draw borders,

2-rows and columns

1-DESIGN TAB....................2-LAYOUT TAB . 1-wordart styles,2-table size,1-Table styles,2-alignment,1-draw

Answers

design tab

wordart stylestable stylesdraw border

layout tab

table sizerows and columnsalignment

Answer:

The person above is correct.

Explanation:

1-DESIGN TAB....................2-LAYOUT TAB . 1-wordart styles,2-table size,1-Table styles,2-alignment,1-draw

What is an Action Button?

Answers

Answer:

Action buttons are built-in shapes you can add to a presentation and set to link to another slide, play a sound, or perform a similar action.

Explanation:

What is a function of Agile software development?

Answers

Agile software development refers to software development methodologies centered round the idea of iterative development, where requirements and solutions evolve through collaboration between self-organizing cross-functional teams.

10.3.5 Secure a Home Wireless Network You are working on a small network. You recently created a wireless network to allow the owner's laptop and mobile devices to make a connection to the wired network and the internet. However, without additional configuration, the wireless access point will allow connections from any laptop or mobile device. You need to secure the wireless network from unauthorized access.

Answers

A home network is a collection of gadgets that are connected to the Internet and one another, including computers, game consoles, printers, and mobile devices.

Home networks are linked a network that uses cables to link hardware such as printers and scanners a wireless network that connects gadgets without cords, such as tablets and e-readers.Creating a home network has several benefits. A few examples of what home networking enables you to achieve are as follows Connect to the Internet using a variety of devices, including mobile phones, game consoles, and laptops.Access all network-connected devices' files and directories.Use one printer to print from several different computers.All networked devices' security settings can be managed in one location.Read on if you want to learn more about home networking.

Learn more about Home Wireless Network here:

https://brainly.com/question/4458930

#SPJ4

________ is the process of obtaining, cleaning, organizing, relating, and cataloging source data. Data acquisition Data entry Data mining Data encryption

Answers

Answer:

_______ is the process of obtaining, cleaning, organizing, relating, and cataloging source data. A Data acquisition B Data mining C Data encryption D Data scrubbing E Data entry

✓ A Data Acquisition

Explanation:

Describe an example of organisms with different niches in an ecosystem.

Answers

Explanation:

Organism seems to have its own bearable environments for many ecological parameters and blends into an ecological system in its own unique way. A aquatic species' niche, for particular, can be characterized in particular by the salt content or saltiness, pH, and surrounding temperature it can absorb, and also the kinds of food it can consume.

In which of the following phases of filmmaking would a production team be focused on the
process of casting? (Select all that apply).
development
pre-production
distribution
post-production

In which of the following phases of filmmaking would a production team be focused on theprocess of casting?

Answers

I think it’s pre production! Goodluck :)

Answer:

Pre-Production

Explanation:

Once the film concept has been developed, the film company transitions to the production phases: pre-production, production, and post-production. In pre-production, the technical details are worked out, a schedule is set, and the resources to produce the film are assembled. This includes casting the film, filling the technical positions, and scheduling the production. The actual filming takes place during the production phase, followed by a post-production phase in which the footage is edited and the final film emerges.

What will compression do to an image?

reduce its file size
reduce the amount of space it takes up on the screen
increase its file size
increase the amount of space it takes up on the screen

Answers

Answer:

compressioh reduces the image's file size

Recently, there has been an increase in people buying wireless headphones. These headphones usually contain sealed batteries and connect to devices via Bluetooth.


Discuss the impact of people changing to wireless headphones.


In your answer, you might consider the impact on:


Ethical issues


Cultural issues


Environmental issues

Answers

The shift to wireless headphones has various implications on ethical, cultural, and environmental aspects. the transition to wireless headphones brings about ethical, cultural, and environmental considerations that must be carefully weighed by manufacturers, consumers, and policymakers.



1. Ethically, wireless headphones promote a throwaway culture due to their sealed batteries, which are difficult to replace. This may contribute to increased electronic waste when the battery degrades, and the headphones become unusable. Additionally, manufacturers may face ethical dilemmas in sourcing materials and labor for producing these devices.

2. Culturally, the widespread adoption of wireless headphones signals a shift in consumer preferences and technological advancements. This trend highlights society's increasing reliance on wireless technology and portability. As more people embrace wireless headphones, it may impact the way individuals interact in public spaces and their engagement with ambient sounds and conversations.

3. Environmentally, the production, use, and disposal of wireless headphones can have significant consequences. Manufacturing these devices consumes resources and energy, which contributes to the carbon footprint. The sealed batteries, often made of lithium-ion, pose disposal challenges and potential environmental hazards if not recycled properly.


Learn more about wireless; https://brainly.com/question/25633298

#SPJ11

Part B How could installing new technology, such as scrubber machines, affect the factories required to install them? Name a positive and a negative consequence. pls help need done by end of week

Answers

Answer:It will decrease harmful emissions, so the factories will no longer need to install them.

Explanation:

This helps improve the safety of the surrounding community and workers. But this technology is expensive and required time and effort to install.

Answer:

Installing new technology, such as scrubbers, in factories will decrease their harmful emissions. This helps improve the safety of the surrounding community and the workers. But this technology is expensive and requires time and effort to install.

Choose the word that matches each definition. : processed facts, how the output is used for making decisions : action performed by CPU to convert input into output : raw facts, input

Answers

Input devices accept data in a form that the computer can use; they then send the data to the processing unit. The processor, more formally known as the central processing unit (CPU), has the electronic circuitry that manipulates input data into the information people want.

I hope this helps you:)

The processing of the output units is explained below.

What is a processing of output?

The input device is used to give information to the computer. And these pieces of information are set to the CPU (Central Processing Unit) which analyses the information and send this to the storage devices.

After some time, from the storage, the desired information is sent to the output unit through the CPU.

More about the processing of the output link is given below.

https://brainly.com/question/25265909

#SPJ2

the truth value of an array with more than one element is ambiguous.

Answers

An array is a collection of elements that are of the same data type, and each of them has a unique identifier. In computing, it is used to organize data and for easy access. The truth value of an array with more than one element is ambiguous because a single condition cannot fully determine the truth or falsity of the entire array.

Consider an array with two or more elements. If we were to test the condition of the array to determine its truth value, we would have to test each element in the array. This is because a single element can be true or false, but the entire array cannot be true or false as a single entity. To overcome this problem, we can use a loop to iterate through each element in the array and test the condition.

If the condition is true for all elements in the array, then the entire array is considered true. However, if the condition is false for at least one element, then the entire array is considered false. In conclusion, the truth value of an array with more than one element is ambiguous, and we must test each element to determine its truth or falsity.

To know more about elements visit:

https://brainly.com/question/31950312

#SPJ11

in 100 word, tell me who is a significant public figure who has the job profile as a "set designer" and explain why

Answers

A significant public figure who holds the job profile of a set designer is Sarah Jones.

Sarah Jones is a highly regarded and influential public figure in the field of set design. With her exceptional talent and creativity, she has made a significant impact on the world of film and theater. As a set designer, Sarah Jones is responsible for conceptualizing and creating the visual environment of a production. She collaborates closely with directors, producers, and other members of the production team to bring their vision to life. Sarah's expertise lies in her ability to transform abstract ideas into tangible and captivating sets that enhance the overall storytelling experience.

Sarah Jones' work is characterized by her meticulous attention to detail and her ability to capture the essence of a story through her designs. She carefully considers the mood, time period, and thematic elements of the production, ensuring that the set not only complements the performances but also adds depth and authenticity to the narrative. Sarah's portfolio includes a diverse range of projects, from period dramas to futuristic sci-fi films, each demonstrating her versatility and artistic vision.

In addition to her creative talents, Sarah Jones is known for her professionalism and effective communication skills. She understands the importance of collaboration and works closely with the entire production team to ensure a seamless integration of the set design with other elements such as lighting, costumes, and sound. Her ability to effectively translate ideas into practical designs, coupled with her strong organizational skills, makes her an invaluable asset to any production.

Learn more about job profile

brainly.com/question/884776

#SPJ11

Other Questions
Find health resources that you can access in your home, school, and community, and then determine when you would use each resource. Using complete sentences, answer the following questions.1. What health resources are available at your home? List at least three. a)b)c)2. In what circumstances would you use each resource at your home? a)b)c)3. What health resources are available at your school? List at least three. a)b)c)4. In what circumstances would you use each resource at your school? a)b)c) choose all that correctly interpret the parameter of the linear function Help pls on question 6 number 5 If a contract does not clearly specify that the satisfaction is to be personal, the ______________ standard applies. what is a quotation in the catcher in rye that shows the theme Alienating oneself as a form of protection factor by grouping: 12a8 9a? + 8a 6 meals his menas buy each week. The collected data are below:4 19 3 3 2 3 2 4Which measure of center is most appropriate for this situation, and what is its value?O Mean; 3O Mean; 5O Median; 3O Median; 5Question 3 (Multiple Choice Worth 1 points) Subtract 5 - 4i from 19 - 3i. Which dotted line best represents the trans Saharan trade network If the methane has a volume of 0.65 L when under 10 atm. of pressure and at a temperature of 305 K, find the mass of oxygen that is needed to use up all of the methane. y = -5x+6Given x = 5Y=? How could you test your hypothesis?Find the total mass of the water and the drypasta, then cook the pasta and measure themass of the cooked pasta and the water inwhich it is being cooked.Find the mass of the dry pasta, then cook thepasta, drain it, and find the mass of thecooked pasta. In their general theory of crime, Gottfredson and Hirschi consider the criminal offender and the criminal act as _______concepts le2. Amber is making a scratching post for her cat.scratching post is composed of two rectangularprisms with the dimensions shown. Amber plansto cover all exposed faces, except for the bottomface, with carpet. How many square inches ofcarpet does she need? in the context of an acquisition, when the acquiring firm buys the target firm despite the opposition of the target firm's board and top management, the result is called a . how does aristotle describe human nature? what is the role of politics in our nature? what is a regime? what are the types of regimes? what is the role of leisure in the ideal regime? 30 Pointsss!! How many states are NOT in the contiguous portion of the U. S.?a.) 13 Statesb.) 50 Statesc.) 2 Statesd.) 48 States Solve:3 + y = 5x-7when , y = 5Showyour work How many calories should you eliminate from your diet if you want to lose two pounds in two weeks?. Tomiko Morimoto was a 13-year-old schoolgirl. She recalls feeling no particular fear when she heard the lone B-29 bomber. "Everything started falling down; all the buildings started flying around all over the place. Then something wet started coming down, like rain. I guess that's what they call black rain. In my child's mind, I thought it was oil. I thought the Americans were going to burn us to death. And we kept running. And fire was coming out right behind us, you know." She says surviving the bombing of Hiroshima has made her appreciate even the smallest things. "I go out the first thing in the morning and look at the sky and the sun and I am very appreciative of everything I have right now. You don't always have that (ellipsis)." "(ellipsis) I would say never let there be another bombing like that. We all have to work towards peace. That's the only way I can summarize it." Ironically, she is not among those who believe that American forces should never have dropped the atomic bomb. Miss Morimoto believes that only a total unequivocal victory by the Allies would have convinced the Japanese population that their war effort was hopeless, that they must lay down their arms and try to move on.One way that Ms. Morimotos perspective is the same as President Trumans is the __________.A.belief that working for peace is something we should all doB.certainty that no other city should be bombed like Hiroshima wasC.belief that using the atomic bomb against Japan was necessary for ending the warD.appreciation of small things after having survived the warPlease select the best answer from the choices provided