Match the type of secondary storage devices to their examples.
CD
hard disk
flash memory
magnetic storage devices
arrowRight
optical storage devices
arrowRight
solid-state storage devices
arrowRight

Answers

Answer 1

Answer:

1. CD: optical storage devices.

2. HDD: magnetic storage devices.

3. flash memory: solid-state storage devices.

Explanation:

A storage device can be defined as a computer hardware that is typically used for the storage of data or any computer related information such as images, videos, texts, music, codes and folders.

Some examples of storage devices used in the field of computer science are;

1. Optical storage devices: it is circular in shape and includes compact disk (CD), DVD, Blu-ray disk etc. A compact disc (CD) is a small digital-optical disc that is used to store computer data using a laser beam. It is able to store digital data because it is made up of a polycarbonate (a tough-brittle plastic) with one (1) or more metal layers.

2. Magnetic storage devices: this is one of the most widely used storage devices and it comprises of hard disk drive (HDD), floppy diskette, magnetic strip etc.  

3. Solid-state storage devices: it is typically made up of integrated circuits and uses flash memory to store data.


Related Questions

Write a program that computes and prints the average of the numbers in a text file. You should make use of two higher-order functions to simplify the design.

Answers

Answer:import functools

# open your file

file = open("integers.txt", 'r')

file = file.read()

# put numbers into a list

file = file.split()

# convert list into integers

file = list(map(int, file))

# use lambda function to get average.

print(functools.reduce(lambda x, y: x+y / len(file), file, 0))

Explanation:

The process of auditing the source code for an application to verify that the proper security controls are present, that they work as intended, and that they have been invoked in all the right places is known as

Answers

Answer:

Security code review.

Explanation:

The process of auditing the source code for an application to verify that the proper security controls are present, that they work as intended, and that they have been invoked in all the right places is known as security code review.

The main purpose of security code review is to ensure that all the necessary security measures or procedures are adopted (available), to confirm the level of accuracy of its operations, and verify that all loopholes for unauthorized access or use by attackers is prevented.

Hence, various software developers employ the security code review process in order to ensure that the integrity and safety of their software applications or programs are present.

Code review is the process for auditing the source codes and is a an application that is used for verification of the proper security control that are present and that they are intended to use.

The code review is to assure the quality of the software and verity the activity that checks the program mainly for viewing the parts of code.

Learn more about the source code for an application to verify that the

brainly.com/question/24749514.

_______ workplace cultures emphasizes everyone being in agreement.

Answers

Answer:

Calm

Explanation:

_____ software enables team members to prioritize and track tasks by providing features such as boards, timelines, and calendars.

Answers

Answer:

task management

Explanation:

Someone please help?!



Drag the tiles to the correct boxes to complete the pairs.
Match the soft skills with their descriptions.
to foster approachability among team members
to come up with creative but practical solutions
to set priorities and accomplish goals
to identify and effectively use a team's potential
to accomplish goals
leadership
analytical thinking
coordination
2
time management

Answers

Answer:

i think the 1st one is for leadership

Answer:

im taking it right now

Explanation:

funny

AM GIVING BRAINLIEST! Assume you have entered the following after a prompt. >>> import time
How would you pause a program for 5 seconds?

pause(3)
time.pause(5)
time.sleep(5)
sleep(3)

Answers

Answer:

time.sleep(5)

Explanation:

For Python, not sure what program your teacher is asking about.

The Python time sleep function is used to delay a program's execution. To stop the running of the program for a certain amount of time in seconds, we can use the sleep function in Python. Thus, option C is correct.

What time sleep () in Python?

Python comes with built-in functionality for sleeping your program. The sleep() function in the time module allows you to pause the caller thread's execution for however long you choose.

The current thread's execution can be paused for a given amount of time in milliseconds by using the sleep() function. The millisecond argument value cannot be negative. If not, it raises an Illegal Argument Exception.

The current thread is put on hold for a set amount of time via sleep. This is an effective way to give other threads of an application or other apps that could be executing on a computer system access to processor time.

Therefore, time.sleep(5) pause a program for 5 seconds.

Learn more about Python here:

https://brainly.com/question/178238

#SPJ2

In which area is composing for games different from composing for movies?
A. looping scores
B. royalties earned
C, temp tracks
D. adaptive scores

Answers

Answer: royalties earned

Explanation:

In areas such as the looping scores, temp tracks and adaptive scores, there are similarities when composing for games and when composing for movies.

The area where there is difference when composing for games and composing for movies is the royalties earned. The interest that is earned on royalties for both cases are different.

How long does it take to send a 19 MiB file from Host A to Host B over a circuit-switched network, assuming:

Answers

Answer:

58.4 ms

Explanation:

How long does it take to send a 14 MiB file from Host A to Host B over a circuit-switched network, assuming:

Total link transmission rate = 31.1 Gbps.

Network is TDM, with 11 permitted users, each with an equal time slot size.

A link connection requires a setup time of 51.7 ms.

Solution:

For TDM transmission, the bandwidth is divided equally between the users for transmission.

Transmission rate of each user = 31.1 Gbps / 11 users = 2.83 Gbps = 2830 Mbps

Time taken for file transmission = file size / transmission rate = 19 Mb / 2830 Mbps  = 0.0067 seconds = 6.7 ms

Total time taken = Set up time + transmission time  = 51.7 ms + 6.7 ms = 58.4 ms

The total transmission time is 58.4 ms

A medical record that contains computer-generated reports, collects data, and shares data with outside agencies is a

Answers

Answer:

Electronic Health Record

Explanation:

ELECTRONIC HEALTH RECORD is a medical record which helps to collect patients data pertaining the patients medical information and history such as the patient diagnosis, the treatment that was given to the patient and the medication given to the patient, by then sharing the collected and store medical data or information with external agencies in order to reduce any medical mistakes that may want to arise and to as well provide high quality health care service to the patient as regards to the patient already stored medical history on the ELECTRONIC HEALTH RECORD.

Queries in Access are utilized by users to enter data into tables and view existing records true false

Answers

Answer:

False.

Explanation:

Microsoft Access can be defined as a software application or program designed by Microsoft corporation to avail end users the ability to create, manage and control their database.

A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to create, store, modify, retrieve and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.

Database schema is the logical design of a database. In database management, the term "schema" is used to denote a representation of data while the term "instance" is used to denote an instance of time.

A database schema is a structure which is typically used to represent the logical design of the database and as such represents how data are stored or organized and the relationships existing in a database management system. There are two (2) main categories of a database schema; physical database schema and logical database schema.

Datasheet View in Access are utilized by users to enter data into tables and view existing records.

Write a flowchart and C code for a program that does the following: Within main(), it asks for the user's annual income. Within main(), it calls a function called printIt() and passes the income value to printIt().

Answers

Answer:

Write a flowchart and C code for a program that does the following: Within main(), it asks for the user's annual income. Within main(), it calls a function called printIt() and passes the income value to printIt().

Explanation:

You will write a flowchart, and C code for a program that does the following:1. Within main(), it asks for the user’s annual income.2. Within main(), it calls a function called printIt() and passes the income value to printIt().  3. The printIt() function evaluates the income, and if the number is over 90000, prints a congratulatory message.  If the income is not over 90000, it prints a message of encouragement, like “You WILL make $50,000, if you keep going.”Here is what the output looks like.File SubmissionUpload your Flowgorithm file, your .c file, and a screen shot of your code output saved in a Word document including the path name directory at the top of the screen into the dropbox for grading.

what is active transport​

Answers

Answer:

the movement of ions or molecules across a cell membrane into a region of higher concentration, assisted by enzymes and requiring energy.

Here ya go ;)

Consider all of the ways that you interact with the internet during a normal month in your life: websites, banking, apps, etc. Of all of those interactions, explain which one you think is LEAST secure and describe how much “risk” you experience using it. Then explain which interaction you feel is MOST secure?

Answers

Answer:

Website, are probably the least secure because depending on what site you click on it can be an add for a different website. You can risk ending up on a site you didn't want to. I think that banking apps are the most secure, because its mostly through your bank so it would have to be secure.

Explanation:

How many questions have you seen so far other than this one?

Answers

Answer:

18 other questions were answered by myself and Aristotle

Answer:

id.k

Explanation:

thanks for the points

why should technology be used. No plagiarism pls.

Answers

Answer:

Explanation:

mobile devices and the applications they help us in life devisec can individualize instruction. three specific reasons that technology is good is that it saves lives by improving medicine, keeps us connected to each other, and provides education and entertainment. One reason why technology is good is that it has saved many lives.

i have an answer, but it won’t let me type it because it says incorrect answer which is ridiculous. here’s what i had, though

2.Explain the differences between kernel applications of the OS and the applications installed by an organization or user.

Answers

Explanation:

Operating system is a system software, whereas,  Kernel is a part of operating system. Operating system acts as an interface between user and hardware. Kernel acts as an interface between applications and hardware. In Linux, for example, device drivers are often part of a kernel (specifically Loadable Kernel Modules).

Drag each tile to the correct box.
Match the device to its correct classification. Choose pairs that will use up all the tiles.
output
input
dual
peripheral
printer
monitor
modem
mouse

Answers

Answer:

Answers In explanation but don't know about dual

Explanation:

Input: mouse peripheral

Output: Monitor printer

Both: Modem

Answer:

Modem- Dual

Mouse- Input

Monitor- Output

Printer- Peripheral

Explanation:

I took the test

g How safe is to have a LinkedIn account where you have published all the important information about yourself

Answers

Answer:

LinkedIn is very safe

Explanation:

LinkedIn is very safe, that being said you should never post private information about yourself anywhere that you do not want others to see/know. LinkedIn is a job recruiting and networking site, meaning that all the information that you have or will be publishing there should be related to your career. There is no reason for you to publish private information such as document numbers, social security number, address, bank account info, etc.

Answer:

The concept you are looking for is "digital footprint" and it goes far beyond any one social network.

Any information that is public can be used against you. You have to make an assessment about the risk/reward of making data public, and once it is public, you have to treat anyone using that information as public, too. Too often people think that if someone knows something about them, then they can be trusted, an "insider".

Network footprinting is used to ______________________. Group of answer choices test for vulnerabilities determine what services are running determine what exploits have been committed determine what systems are up and running

Answers

Answer:

Network footprinting is used to ______________________.

test for vulnerabilities.

Explanation:

Network footprinting is the technique that reveals system vulnerabilities and how the vulnerabilities can be exploited.  Hackers use footprinting to determine the location and objective of a network.  The discovery of this specific information about the organization can lead to the hacking of the network.  Network footprinting relies on loopholes to create vulnerabilities in a network and plans for cyberattack.

If a folder exists on an NTFS partition, which permission is needed by a user who needs to set security permissions on the folder?

Answers

Answer:

Full control.

Explanation:

An access control can be defined as a security technique use for determining whether an individual has the minimum requirements or credentials to access or view resources on a computer by ensuring that they are who they claim to be.

Simply stated, access control is the process of verifying the identity of an individual or electronic device. Authentication work based on the principle (framework) of matching an incoming request from a user or electronic device to a set of uniquely defined credentials.

Basically, authentication and authorization is used in access control, to ensure a user is truly who he or she claims to be, as well as confirm that an electronic device is valid through the process of verification

Hence, an access control list primarily is composed of a set of permissions and operations associated with a NTFS file such as full control, read only, write, read and execute and modify.

Hence, if a folder exists on a new technology file system (NTFS) partition, the permission which is needed by a user who needs to set security permissions on the folder is full control.

The Matlab Script should:1. Clear the command window2. Clear the workspaceQuestion 1: Why do we clear the command window and workspace at the beginning of a script

Answers

Answer:

This is done for the simple reason of having more space to work on

Explanation:

This is done for the simple reason of having more space to work on. By clearing the command window and workspace you provide yourself with sufficient space to create new commands without the clutter of the previous commands. This also prevents your focus from shifting towards old commands and allows you to simply focus on the commands you are currently working on. This does not clear all variables from the script, it only clears the current screen but the previous commands can still be accessed by using the up-arrow key

9.
How many total numbers can be represented with an 8-bit binary (base-2) system?
Α. 127
Β. 128
C. 255
D. 256

Answers

Answer:

C. 255

Explanation:

The binary code for 255 is 11111111 which is the largest binary number that can be represented in 8 bits. This means you can represent a total of 255 numbers. (0-255)

All of the following are data providers included with .NET for accessing and manipulating data in databases, EXCEPT ____. Group of answer choices

Answers

Complete Question:

All of the following are data providers included with .NET for accessing and manipulating data in databases, EXCEPT ____.

Group of answer choices.

A. OLE DB

B. ODBC

C. SQL Server

D. Access

Answer:

D. Access

Explanation:

A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to create, store, modify, retrieve and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.

A data dictionary can be defined as a centralized collection of information on a specific data such as attributes, names, fields and definitions that are being used in a computer database system.

In a data dictionary, data elements are combined into records, which are meaningful combinations of data elements that are included in data flows or retained in data stores.

This ultimately implies that, a data dictionary found in a computer database system typically contains the records about all the data elements (objects) such as data relationships with other elements, ownership, type, size, primary keys etc. This records are stored and communicated to other data when required or needed.

Basically, when a database management system (DBMS) receives data update requests from application programs, it simply instructs the operating system installed on a server to provide the requested data or informations.

Some examples of data providers included with .NET for accessing and manipulating data in databases are;

A. OLE DB: this is an acronym for Object Linking and Embedding Database. OLE DB was designed and developed by Microsoft corporation and it comprises of various application programming interfaces (APIs) used for data access.

B. ODBC: it is an acronym for Open Database Connectivity and it was designed and developed by Microsoft corporation used for data access through structured query language (SQL).

C. SQL Server: it is a domain-specific language server designed and developed for managing the various data saved in a relational or structured database.

What item appears in a user’s My Unresolved items after synchronization using Salesforce for Outlook? (2 answers)

Answers

The avialble options are:

1. Notes not associated to a record

2. Emails not associated to a record

3. Contacts not assigned to an account

4. Cases not assigned to a contact

Answer:

1. Contacts not assigned to an account

2. Emails not associated to a record

Explanation:

Given that any items that are not automatically assigned to Salesforce records are found in My Unresolved Items.

Hence, usually, Items such as Contacts, Events, Emails, and Tasks are found in a user's My Unresolved Items after synchronization using Salesforce for Outlook.

Thereby, in this case, the correct answers are:

1. Contacts not assigned to an account

2. Emails not associated with a record

A company wants to build a new type of spaceship for transporting astronauts to the moon. What should the company do first?

Answers

Answer:

Think of some ideas of how their gonna create the new spaceship

Explanation:

Because I'm Smort (typo intended)

Answer: The steps: ask to identify the need and constraints, research the problem, imagine possible solutions, plan by selecting the most promising solution, create a prototype, test and evaluate the prototype, and improve and redesign as needed. Also called the engineering design process.

Explanation:

Write a program that reads a list of integers, and outputs whether the list contains all even numbers, odd numbers, or neither. The input begins with

Answers

Question:

Write a program that reads a list of integers, and outputs whether the list contains all even numbers, odd numbers, or neither. The input begins with an integer indicating the number of integers that follow. Assume that the list will always contain less than 20 integers.

Answer:

Written in Python

listlent = int(input("Length of List: "))

mylist = []

mylist.append(listlent)

for i in range(listlent):

    num = int(input(": "))

    mylist.append(num)

   

evens = 0

odds = 0

for i in range(1,listlent+1):

    if mylist[i]%2==0:

         evens=evens+1

    else:

         odds=odds+1

       

if(evens == 0 and odds != 0):

    print("All Odds")

elif(evens != 0 and odds == 0):

    print("All Even")

else:

    print("Neither")

Explanation:

This prompts user for length of the list

listlent = int(input("Length of List: "))

This initializes an empty list

mylist = []

The following iteration reads the list items from the user

mylist.append(listlent)

for i in range(listlent):

    num = int(input(": "))

    mylist.append(num)

   

The next two lines initialize even and odd to 0, respectively

evens = 0

odds = 0

The following iteration if a list item is even or odd

for i in range(1,listlent+1):

    if mylist[i]%2==0:

         evens=evens+1

    else:

         odds=odds+1

This checks and prints if all list items is odd        

if(evens == 0 and odds != 0):

    print("All Odds")

This checks and prints if all list items is even        

elif(evens != 0 and odds == 0):

    print("All Even")

This checks and prints if all list items is neither even nor odd

else:

    print("Neither")

Write a c program using loops to generate following output.

12 x 2 = 24
11 x 2 = 22
10 x 2 = 20
9 x 2 = 18
8 x 2 = 16
7 x 2 = 14
6 x 2 = 12
5 x 2 = 10
4 x 2 = 8
3 x 2 = 6
2 x 2 = 4
1 x 2 = 2

Answers

Answer:

#include <stdio.h>

int main()

{

for (int n = 12; n > 0; n--) {

 printf("%d x 2 = %d\n", n, n * 2);

}

}

Explanation:

Only one loop.

What name is given to the assurance that requested information is available to authorized users upon request

Answers

Answer:

Availability

Explanation:

With Data availability, it means that we are saying that information is accessible to users. This gives the assurance of the system and also the data being accessible to authenticated users anytime they have the need for it.

It is simply saying that information would be operable by users with authorization whenever they request to.

What is the difference between MySQL and MariaDB?

Answers

Answer:

Explained below

Explanation:

They are both server database.

MySQL Server database has two licensing options namely GPLv2 and Enterprise. Whereas, MariaDB Server database is one that has only one license which it is licensed to namely GPLv2.

Now, the license for both of them differs in that the one for MySQL Server database comes with some available features and support. Whereas, the one for MariaDB comes with the full-featured package.

is a colon (:) and semicolon (;) important in CSS declaration?

Answers

Answer:

YES

Explanation:

this is very important

Other Questions
Please answer this question it is due at 5:00 Based on textual evidence, what is Anne Frank's point of view on the German invasion of the Netherlands so far?The Nazis have a right to put restrictions on Jews.The restrictions have made Anne's life more difficult.Their restrictions are helpful to Anne and her family. The Nazi invasion does not affect her directly American Sign Language Where did the earliest record we have about Deaf education come from?a. from transcripts of the methods debateb. from a school in Leipzig, Germanyc. from the Benedictine monksd. from early speechreading manuscripts Question Progress1272Simplify the following surdsa) 18b) 12c) 32Will mark brainliest answer 2. The author's tone throughout the passage can best bedescribed as:frantic.nostalgiccandiddesperate We can think of 3 1/4 as the answer to the question How many groups of 1/4 are in 3? What is the answer to the question can someone please help me Review paragraphs 2-10, and identify closely related words and phrases repeats. a. 792 432,795What is 432,795 divided by 792 If 3 5x = 2, then x = May someone help me plsIn a survey of 40,000 students approximately 5% of the students have five or more siblings. Approximately how many students have five or more siblings? Which sentence below uses acolon correctly?A. Robert Frost once said: "How many thingshave to happen to you before something occursto you?"B. Robert Frost described poetry insightfully:"Poetry begins in delight ... and ends inwisdom."C. Frost declared: "Earth's the right place forlove. I don't know where it's likely to go better." how to become a artist? (drawing, painting) find each unit price which is the better buy explain electrical wire $1.89 for 3 ft 89 for 18 in How do leaders become leaders in direct democracy ? What was a "sit-in"? Where and how did it get its name? What is a theme in "Saving Tobe"?With great risk may come great reward.It is important to prepare for the future.By being stubborn, one can change the behavior of others.Sometimes the best action to take is no action at all. how did jews resist (fight against) the nazis ? The European red mite has been found in several early apple samples. You want to use an insecticide, but youre not sure which one to select. Insecticide 1 is known to kill all insects with one or two sprayings, but it takes a bit long to break down. Insecticide 2 breaks down to harmless components very quickly, but is more effective on arachnids than Insecticide 1. You want to kill mites, but not the predatory spiders that inhabit virtually every outdoor arena. Which insecticide would you use? Justify your reasoning. the spot directly above the focus on the surface of the earth