Which type of storage disk and disk drive can you use in the given situation?

Amy wants to borrow an interesting movie from Bruce so that she can watch it in her leisure time. Amy can hand over a (BLANK) to Bruce to copy 900 MB file. Bruce needs to have a (BLANK) drive to record data on the used DVD.


BLANK 1

CD
hard disk
DVD

BLANK 2

DVD-RR
DVD-recordable
DVD-RW​

Answers

Answer 1

I : DVD

II:DVD-R

A DVD-RW would work too.

Answer 2

The types of storage disk drives that can use in the given situation are as follows:

Amy can hand over a DVD to Bruce to copy a 900 MB file. Bruce needs to have a DVD-RW drive to record data on the used DVD.

What do you mean by Storage disk?

Storage disk may be defined as a type of hardware device that can be used to store and save digital data and applications which may be in the form of images, video, audio, etc. For example, CDs, DVDs, hard disks, pen drives, etc.

Hard disks generally store a large quantity of data like 120GB to 30.72 TB. But here the data required to be stored is only 900 Mb, so DVD is the most accurate choice for this storage. It stores 500Mb of data to 8.5 Gb. A single-layer HD-DVD stores up to 15GB of storage capacity.

Therefore, Amy can hand over a DVD to Bruce to copy a 900 MB file. Bruce needs to have a DVD-RW drive to record data on the used DVD.

To learn more about Storage Disk, refer to the link:

https://brainly.com/question/14762201

#SPJ2


Related Questions

what is a feature only used in powerpoint

Answers

I think powerpoint is the only presentation maker in which you can use 3D objects

Answer:

Slide transitions

Explanation: cause i got right

i'm sure 100%

In full verbatim, a person wants to say that they admitted him to a hospital last month. He makes a mistake about the date and quickly corrects himself. How should a correct sentence look like?

Answers

He should cancel the date and move to another country semis how he screwed up his work, hope this helped

The advancements in which of the following technologies has most changed the American job market in recent years?
A.
computer and Internet
B.
manufacturing
C.
transportation
D.
health care

Answers

Computer and internet

This is the answer because over the years the computer have gotten smaller and more efficient. Internet has gotten better because it’s faster and they’ve made 5G.

A company was asked to develop a smartphone app to help people locate a car of their choice to purchase from a complex of more than thirty used car dealers who all share a huge car lot. Name two features that that would be useful to potential customers.

Answers

Answer:

the gps and a map

Explanation:

Answer:

I think. it could be GPS and maps to but I may be wrong so yeah

How many passes will it take to find the five in this list?

1, 5, 10, 15, 20, 22, 30
3

1

4

2

Answers

Answer:

1 im prety sure

Explanation:

Answer:

2

Explanation:

is the correct answer

good luck

For which discipline is it most important to study computer technical support and networking?

Answers

Answer:

Studying computer technical support would contribute most to the disciplines of computer engineering and information technology.

have an amazing day! =)))

PLEASEEEEEEEEEEE HELPPPPPPPPPP MEEEEEEEEEEE
This software application can be used to organize, analyze, and illustrate data. Which one is it?

a.Excel
b.Outlook
c.PowerPoint
d.Word

Answers

The answer is excel

Hope this helps

Question 8 of 10
What can be defined as an information technology environment?
A. The tools and processes that surround us to gather and interpret
data
O B. The rules and regulations that government and businesses must
follow to be secure from hackers
C. The energy used to create and maintain technology
D. The buildings and materials that house computer services
SUBMIT

Answers

Answer:

C. The energy used to create and maintain technology

#Carry on learning po

Which task would you use CSS when making a webpage?
O Creating a paragraph
O Creating an unordered list
O Creating an ordered list
O Changing the font size

Answers

Changing the font size.

HTML you use to 'mark up' plain text. It tells the text what its purpose should be : an unordered / ordered list, a paragraph etc.

CSS is for formatting that marked up content.  With CSS, you can control the colour, font, the size of text, the spacing between elements, how elements are positioned and laid out, what background colours are to be used, different displays for different devices and screen sizes and more.

Think of HTML as the abstract text and images behind a web page and CSS as the page that actually gets displayed.

Which statement best describes the pros and cons of lack of regulation for cloud-based technology? Lack of regulation enables people to collaborate without the extra cost of paying a service provider; however, there is an increased opportunity for cybercrime. Lack of regulation speeds up the process of invention, but requires individuals to back up their own data. Lack of regulation encourages open innovation, but is not always secure. Lack of regulation encourages greater collaboration, but can lead to increased cost from price increases.

Answers

Answer:

3.) Lack of regulation encourages open innovation, but is not always secure.

Explanation:

Got it right in Introduction to Careers in Arts, A/V Technology and Communications

What feature is part of design for manufacturability (DFM)?

A.
using a large variety of tools
B.
using the minimum number of parts to form a product
C.
using the maximum number of parts to form a product
D.
creating different parts for the left and right sides of a product

Answers

Answer: I am actually pretty sure its C.

ten(10) examples of wearables or wearable technologies?​

Answers

Answer:read

Explanation:

airpods

headphones

earbuds

AirPods  pro

watch

fitbit (type of watch that counts your miles) &you can say workout watch&

VR set

technology bracelet

smart glasses

Smart ring

You want to use the dist() method. Which line will allow you to enter the following code in IDLE?
>>>dist([2.5).(5.9))
5.0
from dist import math
from math import dist
from random import dist
from dist import random

Answers

Answer:

from math import dist

Explanation:

The dist() method is a part of the math module. So, to include it you have to use the following line of code:

from math import dist

hope this helped :D

The line which will allows you to enter the following code in IDLE is from math import dist.

What is dist() method?

The dist() function can be used to calculate a distance matrix, which shows the distances between the rows of a matrix.

The dist() method is a part of the mathematics module. Then, for

>>>dist([2.5).(5.9))

5.0 ,

we have to use code in IDLE as;

from math import dist

Thus, the line which will allows you to enter the following code in IDLE is from math import dist.

Learn more about dist() method.

https://brainly.com/question/25373810

#SPJ2

Describe the scope of the variables in this code.

class pet:
def __init__(self,strSpecies,strName):
self.species = strSpecies
self.petName = strName

def __str__(self):
return self.species + " named " + self.petName

def changeName(self, newName):
self.petName = newName

class petCarrier:
size = 'medium'
color = 'red'

The scope of petName ______.

The scope of color is ______.

Accessible to the entire program
limited to the petCarrier class
limited to the pet class


(both of the blanks need one of those answers)

Answers

The scope of petName is local to the class pet.

The scope of color is accessible by all parts of the program.

How to interpret programming variables?

The variable petName is local to the class; This isdue to the fact that the variable was created in a function whose name begins with two underscores.

The variable color; This is created in the petCarrier class and is accessible to the entire function. This was not created in a function whose name begins with an underscore.

Read more about programming variables at; https://brainly.com/question/9238988

#SPJ2

Answer:

The scope of petName limited to the pet class

The scope of color is accessible to the entire program

Explanation:

edge

What does the following loop do?

val = 0
total = 0

while (val < 10):
val = val + 1
total = total + val
print(total)

Prints the numbers backwards from 10 to 1.

Prints the sum of the numbers from 1 to 10.

Finds the average of the numbers between 1 and 10.

Prints the numbers from 1 to 10.

Answers

Answer:

Prints the sum of the numbers from 1 to 10.

Explanation:

YOU NEED BETTER INDENTATION

Total is the sum.

Each loop it's added

:)

Images, symbols, and diagrams are types of

art objects
Graphs
graphics
presentation objects

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is :

Graphics

Because Graphics are the visual representation of information without text. Images, symbols, and diagrams are types of graphics. These graphics can be used in presentations to present information visually.

While other options are not correct because:

Art objects are some images or painting that is the artistic creation of aesthetic value. While graphs are the visual presentation of data and there are different presentation objects in PowerPoint such as images, symbols, text, and diagrams, etc. But it is noted that images, symbols, and diagram are not types of presentation objects but it is a type of graphics elements/objects.

Tenim tres resistors en sèrie, calcula la tensió que hi haurà a cadascuna d'elles sabent que una d'elles és de 680 Ω i les altres són de 220 Ω. El generador té una tensió de 12V.

Answers

Resposta:

Per a càrrega de 680Ω: 7,27 volts

Per a les dues càrregues de 220Ω: 2,36 volts cadascuna

Explicació:

Segons la llei d’ohms

E = IRt

E és la força electromotriu = 12V

I és el corrent total que circula al circuit

Rt és la resistència equivalent total

Com que els 680Ω, 220Ω i 220Ω estan en sèrie;

Rt = 680 + 220 + 220

Rt = 1120Ω

Obteniu el corrent total del circuit:

Recordem que: E = IRt

I = E / Rt

I = 12/1120

I = 0,0107A

Tingueu en compte que el mateix corrent flueix a través de resistències connectades en sèrie, però tensions diferents.

Obteniu les tensions individuals;

Per a càrrega de 680Ω;

V = IR

V = 0,0107 * 680

V = 7,27 Volts

Per a la càrrega de 220Ω

V = IR

V = 220 (0,0107)

V = 2,36 volts

Per tant, les tensions de les dues càrregues de 220Ω seran de 2,36 volts cadascuna

One advantage of putting information into a database is that you can filter the data.
O True
O False

Answers

Answer:

True.

Explanation:

One of the purposes of databases is to allow data lookup through queries, which is basically filtering data, using efficient algorithms too.

Answer:

True

Explanation:

Makayla is cre iting a brochure for her computer consulting company. She designed the layout and placed a banner containing the
company name in the center of the page. Being unsatisfied with the effect, she has decided to move the text box containing the name
to the top of the page. In 3-5 sentences, describe the procedure Makayla will use to move the banner.

Answers

The procedure depends on the software and methods she uses.

In photoshop or InDesign she might need to fdrag and drop the title to the new location.

In Word/Publisher she has to cut and paste the title to the new location or to drag the box to the top.

Eric would like to have a callout text box that makes it look as if the character in an image is speaking. Which object should he insert into the Word document?
standard text box
WordArt
callout
shape
picture

Answers

Answer:

C: Callout shape

Explanation:

The object that should he insert into the Word document is the callout function. The correct option is b.

What is Microsoft Word?

A component of Microsoft Office is Microsoft Word. The office is a collection of Microsoft products that can be used on Windows or macOS and contains Word, PowerPoint, Excel, Outlook, and numerous other tools for both private and professional usage. They aren't the same thing; Microsoft Word is merely one of such app.

A callout function is one of the functions that specifies a callout and is implemented by a callout driver.

The following collection of callout functions makes up a callout: a notification processing notifying function. A function called classifying handles classifications.

Therefore, the correct option is b. callout.

To learn more about Microsoft Word, refer to the below link:

https://brainly.com/question/2579888

#SPJ5

This road sign means
O road work ahead
vehicle breakdown
O service stations
O construction zone has ended

Answers

Answer:

A

Explanation:

Uh, yeah, I sure hope it does (to everyone who watched vine)

Construction zone has ended is the correct answer

What do microphone means

Answers

Answer:

A tiny phone

Explanation:

It means a tiny phone

1 Which of the following could work as bits for a binary system?
А The flip sides of a coin
B The fingers on one hand
C The days of the week
D The colors of the rainbow​

Answers

It’s B you can count it on ur fingers

Tell me everything that happened in the fortnight galactics event. WHO EVER HAS THE BEST EXPLANATION WILL GET BONUS POINTS AND WILL BE MARK BRAINLYNESS

Answers

Answer:

people still play fortnight?!?!

Explanation:

psn: Smallboy_life

List any ten keyboard symbols.​

Answers

Answer:

Esc- Esc (escape) key.

F1 - F12 What are the F1 through F12 keys?

F13 - F24 Information about the F13 through F24 keyboard keys.

Tab Tab key.

Caps lock- Caps lock key.

Shift- Shift key.

Ctrl - Control key.

Fn- Function key.

Alt- Alternate key (PC only; Mac users have an Option key).

Spacebar- Spacebar key.

Hope this helps, have a great day/night, and stay safe!

Logical are functions used when looking for an entry or value in the spreadsheet. what is it?

Answers

The Logical function would allow you to use the spreadsheets to identify whether a scenario is True/False.  It can choose among two options depending on the outcomes of that test, and the further discussion can be defined as follows:

These selections could be used to show information, do complex calculations, or run additional tests.It offers decision-making tools for spreadsheet information. It allows to let you examine the contents of a cell or do a computation, and afterward compare the output to a specified number or value.

Learn more:

brainly.com/question/8953037

Compare and contrast the advantages and disadvantages of the Windows, Apple and Linux operating systems.

Answers

In apple, you may do other things that windows can not provide. Yet, Windows are good aswell since it has better things than apple. I’m so sorry if i’m wrong.

WILL GIVE BRAINLIEST!!!!!!
New space suits are being designed for future trips to the moon.

True

False

Answers

This is very much True

Answer:

True

Explanation:

Today, NASA unveiled its designs for future spacesuits that astronauts will wear during trips to the lunar surface.

Robert is risk manager at TPT Bank has been asked to implement an updated badge reader system for addressing access control risk. Even though the risk was migrated, Robert observes some remaining risk linked with access control. What type of risk has been observed by Robert

Answers

Answer:

Disruption of computer service

Explanation:

Access control is a method or technique used by network administrators to organize and limit access to resources in a network. In a computer network, there several threats and risk experienced by users and technician, that threatens the confidentially of information and other resources.

The configured badge reader system needs data and draws bandwidth. When this bandwidth is in use, it reduces the network efficiency and computer services causing low productivity in the organization.

Which design perspective best describes memory and storage requirements?

Data modeling
IT infrastructure
Prototype
The system model

Answers

Data modeling is perspective best s
Other Questions
Moving through trophic levels _______.a.energy decreasesb.entropy increasesc.biomass decreasesd.all of the above Provide anexample of how energy from the sun affects patterns of movement in the ocean. Help picture shown !!!! please. I really need help!!Complete the table for n= -1 and n= 7. The answers must be in order for f(n) Species which use camouflage as a defense have an appearance that helps them blend into their surroundings. TrueFalse The sum of the tens digit and the hundreds digit of a number is three times the units digit. 1/5 of the sum of all three digits is 1 less than the units digit. Find all three-digit numbers that satisfy these conditions. Im doing a percent equation and I need help here is the question 90% of blank =72 What is the definition of "cope" This is for my sister she is begging me to help and I dont want to so can yall help a sista out?Why did some missions use force when interacting with Native Americans?A. To integrate them into Spanish culture B. to share meal with them C. to show off their powerD. to teach them how to build houses HURRY!!!Urbanization can best be described by which of the following statements?A. The tendency for cities to develop large suburbsB. The decline of the inner city as residents move to the suburbsC. Adding green spaces to rural areasD. The growth of cities caused by the migration of people from rural areas to the cities question 11)Which events inspired American patriotic songs?the building of citiesthe discovery of new territorieswarsscientific discoveries The sum of two numbers is 22 their difference is 4 A dish that relies on deep-frying is _______. please answer please answer thank you A candy maker is mixing up some sugar syrup for use in making sweets. How much of 30% sugar syrup should she add to 12 liters of 20% sugar syrup to obtain a mixture that contains 26% sugar? Write your answer as a whole number or as a decimal rounded to the nearest tenth. Jada, Erika, and Andre each set goals for raising money for a holiday fundraiser. How much money did each student raise?(3a) Jada raised 60% of $20 goal. How much money did she raise? (3b) Erika raised 30% of $50 goal. How much money did she raise? Find the angle of rotation about the center of the square that maps A to C. Find the ratio of 2p per gram to 2.12 per kilogram Jeremy is making a healthy ice cream using only ripe bananas and peanut butter, the recipe makes 4 servings and calls for a ratio of 5bananas to 3 tablespoons of peanut butter if Jeremy has 30 bananas, how many tablespoons of peanut butter does he needTablespoons help me please! Did I do this right?