Donna is a member of a team trying to select the best type of database for a business problem. If the database must handle a variety of data, she would like to store the data on a group of servers, and the data structures must be very flexible, what would you suggest

Answers

Answer 1

The suggestion that I would make is that they use  NOSQL database that can be a good fit instead of a relational database.

What is NoSQL database?

NoSQL databases  is known to be a form of non-tabular databases and it is one that store data in a more different way when compared to relational tables.

Know that NoSQL databases are of different types and they are often based on their data model and it is one that will be better for Donna's team.

Learn more about database from

https://brainly.com/question/518894


Related Questions

Direction: Complete the sentence by choosing the correct WORD

Answers

Answer:

Maybe try guestimating?

Explanation:

That's what I do sometimes.

Answer:

1. alcohol

2. tighten

3. crosshead

4. dust

5. ammoniated

6. bolts

7. loosen

Dropbox and Microsoft's OneDrive are both popular applications for storing files. What is a fundamental difference between Dropbox and OneDrive

Answers

The difference is that Dropbox  offers just 2 GB free storage space while  Microsoft's OneDrive gives 5 GB in terms of free storage space.

What is Microsoft OneDrive?

This  is known to be a file hosting software and it also does synchronization service given by Microsoft.

Some other  fundamental difference between Dropbox and OneDrive in terms of  Business is that Dropbox is known to often give unlimited storage for about $20 to paid user/month while OneDrive is said to only give unlimited storage for $10 per paid user/month.

Learn more about Dropbox from

https://brainly.com/question/20935392

The final step in the software development life cycle involves.

Answers

Answer:

Operation and maintenance

Explanation:

It involves maintenance and regular required updates.

A(n) _____ is a flexible tool used to analyze data using reports that do not have a predetermined format.

Answers

Answer:

decision support system

Explanation:

A pivot table is a flexible tool used to analyze data using reports that do not have a predetermined format. The correct answer is the pivot.

A pivot table is a data summarization tool in spreadsheet software that allows users to rearrange and analyze data dynamically.

It provides a flexible way to aggregate and organize data based on different variables without requiring a predefined report structure.

Therefore, A pivot table is a flexible tool used to analyze data using reports that do not have a predetermined format. The correct answer is the pivot.

To know more about the pivot:

https://brainly.com/question/31261482

#SPJ4

A computer ______ is a potentially damaging program that affects a computer or device negatively by altering the way it works.

Answers

Hello!

The answer would be: virus.

Explanation, if you’d like to read it:
A computer virus is a type of program that can cause damage to a computer by causing a system failure, corrupting data, and wasting computer resources, among other things.

I hope that this helps you!

A checkbox may ask if you want to receive news and updates or participate in surveys from the site. When creating or browsing websites, this checkbox is referred to as an

Answers

When creating or browsing websites, this checkbox in the above scenario is referred to as Opt-in and Opt-out.

What is Opt-in and Opt-out?

“Opt-in” is known to be the act that entails a positive action that is needed for one to be able to subscribe as a user to a given program or a newsletter  while “Opt-out” is the opposite.

Conclusively,  When creating or browsing websites, the Opt-in and Opt-out checkbox can help one to have the right to be in or out of that service as it is not mandatory.

Learn more about checkbox from

https://brainly.com/question/20347398

#SPJ1

PLEASE HELP!

Make a code that should prompt the user for the prices and quantities of three items. The code should calculate the subtotal of the items. After the subtotal is calculated for your list your code should automatically calculate the sales tax using a tax rate of 5%.
Print out the line items with the quantity and total, and then print out the subtotal, tax amount, and total.

Answers

Answer:

subtotal = 0total = 0tax_rate = 6.5for i in range(1,4):   price = float(input("Enter the price for item " + str(i) + ": "))   quantity = int(input("Enter the quantity for item " + str(i) + ": "))   subtotal += (price * quantity)tax = subtotal * tax_rate/100total = tax + subtotalprint("Subtotal: " + str(subtotal) + ", Tax: " + str(tax) + ", Total: " + str(total))

Explanation:

- Initialize the variables- Create for loop that iterates 3 times- Ask the user for the price and quantity of each item- Calculate the subtotal with given inputs- When the loop is done, calculate the tax and total- Print the subtotal, tax, and total

A _________________is a weakness that can be exploited either because it is protected by insufficient security controls, or because existing security controls are overcome by an attack. A. Confidentiality B. Integrity C. Authenticity D. Vulnerability

Answers

Has to be D. Vulnerability

If you really had no idea look at your options and notice that D is the only noun too

You are troubleshooting a DHCP server and discover that it is not dynamically updating DNS records for DHCP clients. What is the most likely cause for this issue

Answers

The most likely cause for this issue is that the DNS server and DHCP server can be seen or found in different domains.

What is DHCP server?

A DHCP Server is known to be a kind of a network server that is said to function by automatically giving and placing IP addresses, default gateways and other kinds of parameters of a network to the computers of their client devices.

Note that  when the DNS server and DHCP server can be seen or found in different domains, the issue of updating automatically can arise.

Learn more about DHCP server from

https://brainly.com/question/10097408

#SJ1

An arrangement in which local businesses team up with schools, hiring students to perform jobs that use knowledge and skills taught in their school classes is called a _____. a. vocational education program b. cooperative program c. internship d. service learning

Answers

An arrangement in which local businesses team up with schools, hiring students to do jobs that use skills taught in their classes is called a cooperative program.

What is cooperative program.

The cooperative program in which different firms cooperate with schools to balance the classroom study and practices, enhancing the practical knowledge and develop required skill of students.

Advantages of cooperative program-

Practical learning-Apart from theory learning, in the cooperative program students get the knowledge of practical working and concepts.Experience-In this program, students get the working experience before they graduate.Enhance Network-The students can enhance their network with cooperative team members, with the help of this program.

Thus, an arrangement in which local businesses team up with schools, hiring students to do jobs that use skills taught in their classes is called a cooperative program.

Learn more about the cooperative program here;

https://brainly.com/question/9794781

Answer:

b

Explanation:

im a knower

Write a C program to do the following tasks:

a) Read the grades of students in the class from the keyboard (assume the grades are

integer in the range 0 to 100).

b) Find the average of the grades that are less than 50. If there are no grades less than 50, then display the message "No grades < 50".

c) Find the average of the grades that are greater than or equal 50. If there are no

grades greater than or equal to 50, then display the message "No grades >= 50".


The program should terminate if the input grade is negative. (Hint: Use sentinel-controlled repetition structure). Note that average of the grades might not be an integer and design your program considering that

Answers

Answer:

#include<stdio.h>

void main()

int marks;

printf("Enter your marks ");

scanf("%d",&marks);

if(marks<0 || marks>100)

printf("Wrong Entry");

else if(marks<50)

printf("Grade F");

else if(marks>=50 && marks<60)

printf("Grade D");

else if(marks>=60 && marks<70)

printf("Grade C");

else if(marks>=70 && marks<80)

printf("Grade B");}

else if(marks>=80 && marks<90)

printf("Grade A");

else:

printf("Grade A+");

#may need to replace spaces with tab

Explanation:

it works ( I hope, if it doesn’t tell me what the error is)

_____ oversee the work of various types of computer professionals and must be able to communicate with people in technical and nontechnical terms.

Answers

Systems analysts oversee the work of various types of computer professionals and  communicate with people in technical and nontechnical terms.

Who works in an information systems?

The information systems field is known to be made up of people in a firm who set up and build information systems, the individuals who use those systems, and the people who are known to managing them.

Note that there is high demand for IT staff whose common example includes programmers, business analysts, systems analysts, etc.

Learn more about computer from

https://brainly.com/question/24540334

You are using Linux and need to perform a reverse lookup of the IP address 10.0.0.3. Which command would you use to accomplish this

Answers

Answer:

nslookup

Explanation:

you could also use ping or tracert

To perform a reverse lookup of the IP address 10.0.0.3 in Linux, you would use the nslookup command.

What is the nslookup command

The nslookup command is a network administration tool used to query the Domain Name System (DNS) to obtain domain name or IP address mapping information.

To perform the reverse lookup, open a terminal and type the following command:

nslookup 10.0.0.3

After running this command, you should see the corresponding domain name (if available) associated with the IP address 10.0.0.3. If there is a valid DNS entry for the given IP address, it will be displayed in the output. If there is no DNS mapping for the IP address, the command will indicate that no information is available.

Learn more about Linux  at

https://brainly.com/question/12853667

#SPJ2

How have computer technology entrepreneurs such as steve jobs and jeff bezos most directly affected the twenty-first-century economy?.

Answers

Answer:

Explanation:

Steve Job and Jeff Bezos has the uniques idea brought into the world, which both of them have similar ideas of how the future of technology should be like, Steve helps push with new innovations like smart devices that we uses, while Jeff use those devices to help people or consumer able to trade like buying and selling on the internet with ease, and behind the scenes, there were trillion of dollars moving around (just the number). Because of their ideas people start to believe or take an advantages of it right away since it was already there for us to be using.

Which of the following is considered true regarding the future of technology?

It is evolving quickly and always changing.
There will be limited jobs in the future.
Only programmers will work in the computer science industry.
It will replace the need for human workers.

Answers

Hello!

The answer is:
-It is evolving quickly and always changing.

I hope that this helps you!

The range of cells receiving copied content is called the ____ area. A. fill B. range C. location D. paste

Answers

Answer:

The answer is paste.

D. paste

Dear, ( Name of Iphone store)
As soon as I bought my Iphone and got home, it didn't work. If I send it back, can you tell me what is wrong with it or get me a new one?
Thanks!
From ( Your Name )

Answers

Answer:

Yes! The apple store will help you

Explanation:

They will choose the design team on 2 April. (change this into passive voice)

Answers

Answer:

On 2 April the design team would be choosen by them

What kind of specialized monitor is used for cell phones with screens that wrap around the edges of the phone and for curved monitors whose edges wrap toward the viewer

Answers

The kind of specialized monitor used for cell phones with screens that wrap around the edges of the phone are flexible screens.

What are flexible screens?

The  flexible screens example is  OLED screens. They are known to be made through the medium of organic materials that is said to often brings out light when electricity is said to be passed through it.

Note that the use of these screens do not need any form of backlights to function as they are produce to be thin enough to the give the place or point where they are said to be of  flexible screens.

Learn more about monitor from

https://brainly.com/question/1590202

what is a set of algorithms that uses past user data and similar content data to make recommendations for a specific user profile?

Answers

Answer:

online recommendation engine

Explanation:

Jhon bought a new printer for his desktop computer. It does not work even though he checked all the cables and cords. What do you think he forgot to connect? *


A. The installer
B. The ports and plugs
C. The Device Driver
D. The Utility Software

Answers

i think it’s d sorry if it ain’t ..

An ethical code may not address specific issues because…


A. Technology is such a broad area that a code cannot cover it all.


B. Technology evolves so quickly so the code may not be up to date


C. It tests the ethics of personnel and addresses general issues


D. Ethical codes have no legal authority to penalize offenders

Answers

An ethical code may not address specific issues because, technology evolves so quickly, so the code may not be up-to-date.

What is a code of ethics?

A code of ethics is the combination of ethical guidelines and the honest practices which needs to be followed in an organization.

The technology changes at a high rate. It effects on work ethics with the same rate. An ethical code may not address specific as technology moves so fast.

The options of the given problem are,

A. Technology is such a broad area that a code cannot cover it all.B. Technology evolves so quickly so the code may not be up-to-dateC. It tests the ethics of personnel and addresses general issuesD. Ethical codes have no legal authority to penalize offenders

Here, the second option is correct, which talk about the pace of technology.

Thus, an ethical code may not address specific issues because, technology evolves so quickly so the code may not be up-to-date.

Learn more about the ethical code here;

https://brainly.com/question/24606527

#SPJ1

Answer:Below

Explanation:

When developing an output control system, it is important to implement output standards that: (Choose all that apply.)

Answers

When creating an output control system, it is important to implement output standards  or targets that managers think will have good measure efficiency, quality, etc.

What is this system about?

In an output control system, it is important for  managers to first make sure that they set of goals or output performance standards or targets that they believe will best measure in terms of efficiency, quality, etc., for their firm.

Note that this system often acts as a behavior control systems that helps in providing methods that can be used to ensure that workers do well in ways that make the work to be efficient.

Learn more about control system from

https://brainly.com/question/27334060

Type the correct answer in the box. Spell all words correctly.
Which is a network of devices built around a person, typically within 10 meters of range?
А
is a network of devices built around a person, typically within a diameter of 10 meters
Reset
Next

Answers

Answer:

A PAN (Personal Area Network) is a network of devices built around a person, typically within a diameter of 10 meters

Explanation:

Choose one answer for each statement, whether it is True or False:
a) CPU stands for Computer Processing Unit
b) The CPU processes all of the data and instructions that make a computer system work
c) The CPU carries out the fetch-decode-execute cycle
d) The clock speed, number of processor cores and cache size all affect CPU performance

Answers

a) false
b) true
c) true
d) true

What is a program that migrates through networks and operating systems, typically attaching themselves to different programs and databases?.

Answers

A software program that moves through networks and operating systems (OS) by attaching themselves to different programs and databases is a: virus.

What is a virus?

A virus refers to a malicious software program that is typically designed and developed to move through computer networks and the operating systems (OS) installed on a computer (host), specifically by attaching themselves to different software programs, links and databases.

This ultimately implies that, a virus is simply a malicious software program that has the ability to cause severe damage to a computer, databases and user files, if not detected on time and properly managed.

Read more on a virus here: https://brainly.com/question/26128220

______ is used to extract knowledge from sources of data-NoSQL databases, Hadoop data stores, and data warehouses-to provide decision support to all organizational users. chapter 14

Answers

Q:

__ is used to extract knowledge from sources of data—NoSQL databases, Hadoop data stores, and data warehouses—to provide decision support to all organizational users.

A:

data analytics

How to unlock hp laptop forgot password without disk.

Answers

On the sign-in screen, press and hold the shift key, click the power icon , select Restart, and continue pressing the shift key until the Choose an option screen displays. Click Troubleshoot. Click Reset this PC, and then click Remove Everything. Click Only the drive where Windows is installed.

Or you can take it to a person who is a specialist in this situation.

I don’t know I don’t know I don’t know I don’t know

9. With each element of the list defining both a key exchange algorithm and a CipherSpec, the list that contains the combination of cryptographic algorithms supported by the client in decreasing order of preference is the __________ .

Answers

The list that contains the combination of cryptographic algorithms supported by the client in decreasing order of preference is the CipherSuite.

What is CipherSuite?

CipherSuite can be defined as a group of instructions used to produce network connections in a secure manner.

CipherSuite is associated with Transport Layer Security, which involves the usage of algorithms to protect data.

Transport Layer Security can be defined as a computational cryptographic protocol aimed at protecting information.

Learn more about Transport Layer Security here:

https://brainly.com/question/14425531

If a password is entered wrongly three times the computer will

Answers

Answer:lock

Explanation:its a sicuraty thing

Other Questions
Nico is having trouble sleeping. Which drug would the doctor MOST likely prescribe to treat this issue? A. benzodiazepines B. stimulants C. empathogens D. opioids how can you separate sand and water without filter paper Say that a company has treated you unfairly or dishonestly. which of the following options could help you resolve the issue? i. report them to the better business bureau. ii. speak to their corporate consumer department. iii. seek the help of the department of hhs. a. i and ii b. ii and iii c. i and iii d. ii only please select the best answer from the choices provided a b c d In recent decades, most major Latin American countries have turned to democracy,except...oVenezuela and CubaoCuba and ArgentinaoVenezuela and BraziloChile and Brazil What were the critical turning points in the realignment Calculate the interest rate for an account that wascompounded semi-annually, had an initial deposit of$9,000 and was worth $13,373.53 after 10 years. HELP ASAP!! Person A leaves a $16 tip for a meal that costs $123. Person B leaves a tip of $12 for a meal that costs $89. Who is the better tipper? Explain. are the phrases "Very Interesting" and "Very Exciting" the Same? how is sound produced What is the main theme in this story from Aesops Fables?The Fox and the CrowA Fox saw a Crow fly off with a piece of cheese in its beak and settle on a branch of a tree."That's for me, as I am a Fox," said Master Reynard, and he walked up to the foot of the tree."Good-day, Mistress Crow," he cried. "How well you are looking to-day: how glossy your feathers; how bright your eye. I feel sure your voice must surpass that of other birds, just as your figure does; let me hear but one song from you that I may greet you as the Queen of Birds."The Crow lifted up her head and began to caw her best, but the moment she opened her mouth the piece of cheese fell to the ground, only to be snapped up by Master Fox."That will do," said he. "That was all I wanted."A. Any excuse will serve a poor leader.B. Do not trust those who flatter you.C. Gratitude and greed go together.D. A good act deserves to be rewarded. The Gupta period also produced notable achievements in the sciences. Mathematicians worked out the concept of zero, which enabled them to handle large numbers much more easily; zero is closely associated with the decimal system, which was probably also an Indian invention. The Arabic numbers (ten digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9) that are used universally today also originated in Gupta India, so far as historians can determine. Source: World Civilizations, page 186. 5. Which of the three contributions by Gupta mathematicians has had the most long-lasting impact on modern mathematics? explain how i got them wrong and its punctuation assessments Help!! I need to pass this class by the end of this week!!!! What were the Goals of the US in the War of 1812? ( choose all that apply )A) Conquer CanadaB) Take over British Colonies in the Western HemisphereC) End conflicts with Natives in the FrontierD) End Impressment DO 7. Choose the best answer. can someon3 help me with this it like 4 or 5 minutes Find the perimeter of the figure. Recognizing the need for physical activity, healthy foods, and adequate sleep is known as: 1 Healthy habits2 External barriers3 Physical wellness4 Physical activity Write TRUE if the statement is correct and FALSE if it is wrong. Write your answers in a separate sheet of paper. ___________1. An implement used to cut the cuticles is called Cuticle Nipper. ___________2. A Foot Spa Basin is a flat container where all the necessary tools and implements are placed for use by the manicurist. ___________3. A foot spa machine is an electronic gadget used for soaking, bathing and massaging the feet. ___________4. A trolley is a wheeled cart used for transferring different nail care equipment. ___________5. A safety goggles is used to protect the clothes from stains and other harmful chemicals. Serafina put a total of 42 cupcakes into packages. She put 6 cupcakes into each package. What is the total number of packages Serafina used for these cupcakes?