Which of the following is not a method of data management?

Answers

Answer 1

Answer:

I believe the correct answer is Formulas!

Explanation:

Please give me a Thanks if you found this at all helpful :)

Answer 2

Graphing is a method of visualizing and presenting data but is not primarily a method for managing data itself. Sorting, filtering, and formulas are all techniques used to manipulate, organize, and analyze data in various ways. Therefore, option D is correct.

Data management refers to the process of collecting, storing, organizing, and controlling data in a structured and efficient manner. It encompasses a set of practices, technologies, and strategies aimed at ensuring that data is accurate, available, secure, and useful for various purposes within an organization or system.

Effective data management is essential for organizations. Therefore, option D is correct.

Learn more about data management, here:

https://brainly.com/question/32148709

#SPJ3

Your question is incomplete, most probably the full question is this:

Which of the following is not a method of data management?

A- sorting

b- filtering

c- formula's

d- graphing


Related Questions

does anyone go to holtville middle school

Answers

Answer:

nah

Explanation:

i go to homeschool now...

Answer:

No

Explanation:

I'm in AZ and I'm in distance learning! :)

According to the Bureau of Labor Statistics, how
many new technical positions will be created in
the IT field by 2020?
One thousand
Ten thousand
One million
One billion

Answers

According to the Bureau of Labor Statistics, the number of new technical positions created in the IT field by 2020 is C. One million.

What is the Bureau of Labor Statistics?

The US Bureau of Labor Statistics is an agency that gathers, examines, and publishes labor, economic, and social data.

The agency gathers data about employment, compensation, worker safety, productivity, and price changes.

The Bureau of Labor Statistics is an attached office of the Ministry of Labor & Employment, established in 1920 to collect, collate, and disseminate labor, employment, and price statistics.

The bureau also computes and publishes the Consumer Price Index for Industrial, Agricultural, and Rural Laborers.

Thus, Option C is correct.

Learn more about the Bureau of Labor Statistics at brainly.com/question/28535251

#SPJ2


What is the atomic number of neonWhat do the following results from the TEST FOR LIFE tab indicate about the sample

Answers

The atomic number for Neon is 10.

I do not see the info for the second part of the question

Hope goes through the steps of sorting a list. The resulting list is shown below.

Which step did Hope miss?
Press the Sort icon.
Sort the list by text.
Click the Header Row option.
Choose the Ascending button.

Answers

Answer:

Click the Header Row option.

Explanation:

Click the Header Row option is the step did Hope miss. Hence, option C is correct.

What is meant by Header Row?

Click anywhere on the table. On the Home tab of the ribbon, click the down arrow next to Table, then choose Toggle Header Row. — OR— On the Table Design tab, choose Header Row under Style Options.

Table headers are the rows at the top of a table that identify each column. The table below, for instance, has three columns with the headings "Name," "Date of Birth," and "Phone."

The grey row with the letters. used to identify each column in the spreadsheet serves as the column heading or column header in Excel and Sheets. The column header appears after row 1 in the worksheet.

Select the row you want to make the header for, then use the right-click menu to choose Table Properties. At the top of each page, select the Row tab and check Repeat as header row.

Thus, option C is correct.

For more details about Header Row, click here:

https://brainly.com/question/14479218

#SPJ2

100 POINTS + BRAINLYEST FOR FIRST PERSON THAT GETS IT RIGHT!!!! While writing a formula, what are some ways to insert a cell reference into the formula? CHECK ALL THAT APPLY

hovering the mouse pointer over the cell to reference


typing the cell name, such as "B4"


clicking the cell to reference


zooming in on the cell to reference

Answers

Answer:

Line second and third i.e, "typing the cell name, like "B4"  and clicking the cell to reference " the correct answer.

Explanation:

It relates to some kind of set of cells on the worksheet, which could be used to calculates the formula. It also helps to locate the information, which you want to analyze in the calculation. It can also provide the cell reference in  more than one formula in the same worksheet, that relates to Information on many other workbooks, and wrong choices can be described as follows:

Hovering provides the basic details, in which we hover, that's why it is wrong .Zooming is used in projection, it can't be used in the cell reference, that's why it is wrong.

Answer:

typing the cell name such as b4 and clicking the cell to reference or band c

Explanation:

Write a method called dangerousDescent that determines whether there is a downhill section in the hiking trail with a gradient of more than -5%. The gradient is calculated by the rise in elevation over the run in distance. For example, the last kilometer section has a gradient of -1% because the rise in elevation is 40 - 50 = -10 meters. The distance covered in 1000 meters. -10 / 1000 = -1%.


Your method should return true if there exists a dangerous descent in the given array, false otherwise.

Answers

Answer: the explanation gives you the code used

Explanation:

There are several ways to go about this, here is just one way to carry out this computation.

#include <iostream>

using namespace std;

bool dangerousDescent(int* elevationArray , int sizeOfElevationArray)

{

  //we calculate gradient throughout elevationArray and if any one of them is more than -5%

  //then return true else return false

  //gradientOfSectionX = rise in elevation/Distance covered in merters

  //where rise in elevation is (elevationOfX - elevationOfX_previous)

  bool isDangerousDecent = false;

  float gradient = 0;

  int threshold = -5;

  float riseInElevation = 0;

  for (int i = 0; i < sizeOfElevationArray && isDangerousDecent == false; i++)

  {

      if (i > 0)

      {

          //check to avoid array out of bound error

          riseInElevation = (elevationArray[i] - elevationArray[i - 1]);

          gradient = riseInElevation / 1000; //1000 meters = 1km because every marker is at 1 kilometer distance

          gradient = gradient * 100; //percentage

          if (gradient > threshold)

          {

              isDangerousDecent = true;

              cout << "There is a gradient of " << gradient << "% on section " << elevationArray[i] << " of hiking trail " << endl;

          }

      }

      //first section not included because that was starting point with 0% elevatoin

     

  }

  return isDangerousDecent;

}

int main()

{

  int elevationArray[] = { 100,50,20,30,50,40 };

  int size = sizeof elevationArray / sizeof elevationArray[0];

  if (dangerousDescent(elevationArray, size) == true)

  {

      cout << "There is a dangerous decent of gradient more than -5% in hiking trail " << endl;

  }

  else

  {

      cout << "There is no dangerous decent of gradient more than -5% in hiking trail " << endl;

  }

  system("pause");

}

What do newly PivotTables look like?

Answers

When creating a new PivotTable in Excel, you start with an empty grid and a 'Pivot Table Field List' panel to format the data. After selecting the data range and choosing a new worksheet, you customize the table using this panel, which could include calculating averages. You can also create PivotCharts for graphical data presentation.

When you create a new PivotTable, it typically starts as an empty grid in a new worksheet, with a panel on the right side called the Pivot Table Field List. This panel is where you format and arrange your data fields. The process of creating a PivotTable involves selecting all the data you wish to analyze, including data labels, and then choosing PivotTable from the Insert menu. After specifying a new worksheet, you can drag and drop fields to arrange your data and perform functions like calculating averages. The resulting table is a powerful tool that summarizes the data, allowing for advanced analysis such as comparing means or evaluating other statistics.

Using additional features such as PivotChart, you can also visually represent the summary data by selecting the PivotChart option from the Tools toolbar once your PivotTable has been constructed. The Excel interface may differ by version, but these general steps apply for creating a summarizing and powerful presentation of data. The final PivotTable presents a concise summary of the data arranged as per the user's specifications.

Answer: the answer is empty

Explanation:

What is one characteristic of good reference material?
a. It is provided by an anonymous source.
b. It is provided by a reliable source.
c. It is fictional.
d. It is out-of-date.

Answers

B.- it is provided by a reliable source.
B- by a reliable source

Which of the following is the amount of space available on a screen to display information?
a. bread crumbs
b.drop-down menus
c. screen real estate
d. tabbed menus

Answers

Answer:

C.) Screen real estate

Explanation:

It is the amount of space available on a display for an application to provide output.

A system might help managers to

Answers

Answer:Decisions are only as valid as the information on which they are based. Management information systems improve your decision-making, because they provide information that is accurate, timely, relevant and complete.

Explanation:

Decisions are only as valid as the information on which they are based. Management information systems improve your decision-making, because they provide information that is accurate, timely, relevant and complete.

____enables you to temporarily hide all the open windows except the one you are viewing.

Answers

Answer:

well there is multiple ways to do that but the way i do it is swipe 4 fingers up on the mouse pad and it shows diffrent tabs.

Explanation:

Alex and Ben both use their credit cards for purchases each month. They both have a grace period and make sure to pay their bills in full every
month before the due date. In August, Ben also uses his card for a cash advance. Which of the following is true?
Select the best answer from the choices provided.
A Only Ben will pay interest in August.
B. Only Alex will play interest in August.
C. Both Ben and Alex will pay Interest in August
D. Neither Ben nor Alex will pay interest in August.

Answers

Answer:

C. Both Ben and Alex will pay Interest in August

Explanation:

both of them would have to pay it or else it wouldn't be fair for the one who had to pay

mark me as brainliest when you can please

Prompt
What are hackers?

Answers

Answer:

hackers are people who get into other people's data and destroy/steal it

Answer:

hope this helps

Explanation:

a person who uses computers to gain unauthorized access to data.

An example of an asset is:

A. Time
B. Money
C. A Car
D. All of the above

Answers

Answer:

D

Explanation:

All of these things have value in some sense. Time helps us keep track of, say, an important meeting. Cars help us get places in such a fast way. Money we literally require to pay for things in today's modern world. So therefore, all of these things are assets.

In what ways are outlook notes useful for personal or professional use?

Answers

Final answer:

Outlook notes are useful for making quick notes, organizing tasks, and can sync across devices, aiding in both personal and professional productivity. They can also assist in the drafting and refining of professional emails, reflecting well on the individual and organization.

Explanation:

Outlook notes are an essential tool for both personal and professional use. They serve a variety of purposes, such as enabling users to make quick and informal notes, jot down tasks, and even record audio. The advantages are manifold: these notes can be synced across devices for access anytime, anywhere—increasing efficiency and productivity in any work environment. In today's business context, effective verbal and written communication are crucial, and using tools like Outlook notes helps maintain organization and clarity.

When sending professional emails, it is important to use a professional language and maintain a formal tone, as emails often serve as a reflection of both the individual and the company they represent. Outlook notes can be used to draft and perfect such correspondence before sending. Moreover, by tagging and organizing emails and notes efficiently, professionals can enhance their email management practices to ensure timely and accurate information flow within and outside the organization. Using notes in conjunction with emails can help to plan projects, create reminders for follow-ups, and collate information received or to be sent, thereby streamlining workplace productivity.

Miriam is very detail oriented within the first month of her new job as a network support specialist she became very good at diagnosing and fixing problems with the network Miriam’s motivation to improve soon earned her a raise

Answers

Final answer:

Miriam's success as a network support specialist highlights the importance of being detail-oriented and motivated to achieve professional growth and earn rewards. Employers can foster such development through mentorship programs and clear communication, while employees can contribute by setting clear goals and actively engaging in their roles.

Explanation:

Miriam's story exemplifies how professional growth and retention are fostered by being detail-oriented and motivated in a technical role. Through her dedication to diagnosing and fixing problems as a network support specialist, she demonstrated her ability to quickly adapt and excel, which naturally earned her a raise. This aligns with the notion that to maximize your first year on the job, one should set specific and measurable goals, remain flexible, and develop not just technical, but also collaboration and teamwork skills. Miriam's proactive approach and motivation to improve suggest she is setting herself up for a successful long-term career in IT.

Organizations can support such career development by developing workplace mentor programs, offering flexible work options, and maintaining open communication. Moreover, individuals can support their own career progress by remaining open to feedback, being resourceful, and actively participating in their work environment. By understanding where one fits in the organizational chart and establishing clear lines of communication with supervisors, an employee like Miriam can navigate the complexities of a workplace effectively and reach her potential more swiftly.

NEED HELP IN A TEST

what term describes the site-to-site VPN used by Kevin's company?

Kevin's company has offices located in different states. All the offices are connected to the head office through a site-to-site VPN connection. Kevin's company is using a(n) ____ VPN.

Answers

Kevin's company is using a site-to-site VPN to connect its office locations to the head office, securely linking them as part of the same local network. This VPN type allows geographically separate offices to maintain a secure and unified network environment.

The term that describes the site-to-site VPN used by Kevin's company, where all offices are connected to the head office through a VPN connection, is a site-to-site VPN. In essence, this setup allows for the secure linking of multiple office locations as if they were part of the same local network. This differs from a client-to-server (or remote access) VPN, where individual users connect to a network remotely. A site-to-site VPN is especially beneficial for organizations with geographically dispersed offices looking to maintain a cohesive, secure, and unified network infrastructure.

A VPN operates by channeling internet traffic through a VPN server, acts as an intermediary. This server conceals the originating IP address and encrypts data, making it difficult for external parties to monitor or intercept communications. The VPN thus serves as a secure 'tunnel' through the public internet, connecting different intranets and providing the security and functionality of a private network.

Which event on Earth led to the invention of Newtri?

Answers

i think it’s A not sure

The invention of agriculture led to the invention of Neolithic by providing a larger and more dependable food supply and allowing humans to settle down in villages and cities. This shift in lifestyle resulted in continued population growth and brought about significant changes in human society. Correct option is D. People didn't appreciate real food and wanted something different.

The invention of agriculture around 10,000 years ago led to the invention of Neolithic because it provided a larger and more dependable food supply.

With agriculture, humans were able to settle down into villages and cities, and this shift in lifestyle allowed for continued slow population growth.

Agriculture also brought about changes in how humans understood land, organized socially, and acquired wealth, ultimately leading to the establishment of sophisticated Neolithic settlements.

Correct option is D. People didn't appreciate real food and wanted something different.

The probable question may be:

3. Which event on Earth led to the invention of Newtri?

A. People didn't have time to cook a full meal.

B. After the bees died, people started starving.

C. After the forest fires, nothing grew on the land.

D. People didn't appreciate real food and wanted something different.

Where are all of your documents saved?
Computing Processing Unit (CPU)
Hard Drive (HDD)
Monitor
Hardware

Answers

Answer:

Hard Drive (HDD)

Explanation:

Answer:

Hard Drive

Explanation:

The Hard Drive is where most if not all storage is compiled, the Computing Processing Unit is how the PC functions.

stuff = []

stuff.append("emu")
stuff.append("frog")
stuff.append("iguana")

print (stuff)
What data type are the elements in stuff?

Answers

Answer:

stuff [] is a Python Array.

stuff [] informs python that it is an array and it will create a variable in the memory. However, It doesn't inform anything about data type that being stored in it.

Following snippet

stuff.append("emu")

stuff.append("frog")

stuff.append("iguana")

This will add these element information to the end of the array.

When you print stuff then it will print all the elements of the array. So Now, elements in the array are of datatype string.

Explanation:

Answer:

Stuffffffff

Explanation:

STUFFFFFFFFFFFFf

What is FireWire?

a type of connector often used for real-time applications
a type of connector used for fiber optic cable
a type of connector used to connect devices to the serial port on a computer
a type of connector used for coaxial cable

Answers

Answer:

i believe its a type of connector used to connect devices to the serial port on a computer

Explanation:

To plan a pizza party, one may want to order enough pizza for everyone. Use the slicesPerPizza, slicesPerGuest, and totalGuests variables to compute the total number of pizzas needed to feed all the guests and store the result in pizzasNeeded. The total may have a decimal place.

Answers

Final answer:

To determine the total number of pizzas needed for a party, multiply the slices each guest will eat by the total guests and divide by the number of slices per pizza, rounding up if necessary.

Explanation:

To plan a pizza party and ensure everyone is fed adequately, you need to use a basic calculation to determine the total number of pizzas needed. If you're given the number of slices each pizza has (slicesPerPizza), the number of slices each guest will eat (slicesPerGuest), and the total number of guests (totalGuests), you can calculate the number of pizzas you need to order using the following code (in a programming language like Python, for example):

pizzasNeeded = (slicesPerGuest * totalGuests) / slicesperPizza

print ("Total number of pizzas needed:", pizzasNeeded)

This code will store the calculated number of pizzas in the variable pizzasNeeded. If the result includes a decimal, you should round up, as you can't order a fraction of a pizz. In practice, this might mean using a function like math.ceil() to ensure you're ordering enough pizzas.

Here's an example with real numbers:

slicesPerPizza = 8
slicesPerGuest = 3
totalGuests = 20
pizzasNeeded = math.ceil((slicesPerGuest * totalGuests) / slicesPerPizza)

This would compute the pizzasNeeded as 8 pizzas.

Pat creates a table in a spread sheet

Answers

Answer:

Explanation:

Details?

Users in the Engineering Department need a higher level of access on their local computers than other users do. In addition, you want to set power options on mobile computers that Engineering users use. All Engineering Department user and computer accounts are in the Engineering OU. What should you configure to meet the following criteria?
• When an Engineering user signs in to a computer, the user account is added to the local Administrators group on that computer.
• Enable the hibernation power mode but only if the user’s computer is identified as a portable computer. Set the power scheme to hibernate mode if the laptop’s lid is closed or the power button is pressed.

Answers

Answer:

I assume you don't need a answer anymore?

Explanation:

PLEASE HELP Which of the following is considered a modern method of communication?

Hieroglyphics
Smoke signals
Tablet
Telegraphs

Answers

The answer would be telegraphs
Telegraphs because hieroglyphics were used by the ancient Egyptians and smoke signals are one of the oldest forms of long distance communication and clay tablets were used around 3000 years ago I believe so I think that telegraphs are considered a modern form of communication because it is the most recent made form out of all of the options

What type of camera is a cell phone camera

Answers

Answer:

A camera phone is a mobile phone which is able to capture photographs and often record video using one or more built-in digital cameras. It can also send the resulting image over the telephone function. The first commercial camera phone was the Kyocera Visual Phone VP-210, released in Japan in May 1999.

Explanation:

Hope this kinda helps you :)

Answer:The first camera phone was the Kyocera Visual Phone VP-210, released in Japan in May 1999. The camera had a 110,000-pixel front-facing camera.

Explanation:

What can be described as a measure of the amount of matter or material an object contains as well as taking gravitational pull into account?


density

volume

weight

mass

Answers

Answer:

The mass of an object is a measure of the object's inertial property, or the amount of matter it contains. The weight of an object is a measure of the force exerted on the object by gravity, or the force needed to support it. The pull of gravity on the earth gives an object a downward acceleration of about 9.8 m/s2.

HURYY PLEASE and please be the right answer!!!with reasoning
Which strategies can Carlos use to avoid frustration or burnout while studying for a test or working on a project? Check all that apply.

Study when rested.
Take breaks while studying.
Before beginning, ask for help from a tutor.
Get help early on from a teacher, parent, or friend.
Maintain the flow by not interrupting studying for any reason.

Answers

Answer:

- Study when rested

- Take breaks while studying

- Before beginning, ask for help from a tutor.

- Get help early on from a teacher, parent, or friend.

1,2,3,4

Explanation:

Completed quiz, Correct on EDGE.

Next, Jemima designates the selected heading as Heading 1.
Which property of her headings can Jemima modify based on the Styles task pane?

Answers

Answer: both paragraph and font styles

Explanation:

c

What is FireWire?

a type of connector often used for real-time applications
a type of connector used for fiber optic cable
a type of connector used to connect devices to the serial port on a computer
a type of connector used for coaxial cable

Answers

Answer:

a type of connector used to connect devices to the serial port on a computer

Explanation:

A type of connector used to connect devices to the serial port on a computer
Other Questions
Plant A and Plant B are heterozygous for a gene that expresses their tall trait (Tt). Upon crossing, what is expected in the offspring, assuming random chromosome segregation?A)They will always have the tall phenotype.B)They will always have the short phenotype.C)They are more likely to be tall plants than short plants.D)They are more likely to be short plants than tall plants. The zeros of a parabola are -5 and -3. The point (0, 60) is on the graph as represented by the equation. 60=a(0+5)(0+3)What is the value of a?7.5447.5 Your friend Dave says: "How can you stand to study the history of psychology? Every single one of those theories is basically the same: the brain controls our behavior." Given the history of psychology, evaluate Dave's claim using the following terms in their appropriate context:IntrospectionPsychoanalytic theoryBehaviorismHumanistic psychologyCognitive revolutionCognitive dissonance ConformitySocial-cultural perspective A ride at a carnival moves on a circular path with diameter 80ft. What is the approximate distance of one complete loop?5 points In the course reading this week there was a focus on noise preventing effective communication. Explain the different types of noise introduced and provide workplace scenarios describing situation where the noise could exist. Explain why change is hard for your employees. Describe how a Change Agent can help an organization navigate through difficulties. Find the sum of the first 16 terms of the series 20+27+34+41+... Need some help please "You measure 48.9 mL of a solution of sulfuric acid with an unknown concentration, and carefully titrate this solution using a 1.500 M solution of KOH. You find that 34.7 mL of the KOH solution is required to fully neutralize the acid. What is the concentration of the original sulfuric acid solution Fixed costs remain constant at $450,000 per month. During high-output months variable costs are $300,000, and during low-output months variable costs are $125,000. What are the respective high and low indirect-cost rates if budgeted professional labor-hours are 24,000 for high-output months and 5,000 for low-output months? This confuses me.Find the table values for y=x^3+x^2-6x Adnde compras un juguete para tu hermanito? Interest.Charlie invests $325 in an account that pays 8% simple interest for 15 years.Use the simple interest formula, I =P rt, to answer the following questions,How much interest will Charlie's initial investment eam over the 15-year period?How much money does Charlie have after the 15 years? Please help me solve the equation2c + 5 = 11 + 4a Using the techniques described in this chapter carefully read through the case study and determine the most accurate ICD-10-CM code(s) and external cause code(s) if appropriate. Remember, check the chapter specific, sub-chapter specific and category specific notations within the Tabular list.Patient: Lorraine ParnetePhysician: Jason Nuouri, MDJuly 16, 2018HistoryA well-established, 67-year-old female patient (since 1991) has controlled hypertension with no complications. She is a smoker [cigarettes, about one pack a day] and takes clonidine and HCTZ for her hypertension, and estrogen to address menopausal symptoms. Overall, she is well and fully active.ExaminationPatient presents with fatigue, about 1 month duration, associated with the withdrawal from estrogen because of published data suggesting an increased risk of breast cancer and other complications. Exam includes complete review of systems. CXR [chest x-ray] and PPD (tuberculin skin test) are negative except for the following:cough with minimal sputuma low grade fever to about 100F5 pound weight lossPlanOrder for CBC, glucose tolerance test, TSH.Patient to return to discuss lab results.Be sure to list the codes, one code per box, in the correct order, from top to bottom. Capitalization, punctuation, and spacing can impact whether or not your answer is correct. Follow coding best practices.What is/are the correct diagnosis code(s)? how do you feel about quaratine What issue has caused four different amendments to be added to the constitution since its initial ratification in 1790? What is the answer to 1/73 After 15 years with Ford Motor Corporation, one summer Cameron loses his job. His boss explained that his position has been downsized after the technological advances in automobile production. Ford no longer requires the skill that Cameron had.Cameron is best considered A) not in the labor force. C) frictionally unemployed. B) structurally unemployed. D) cyclically unemployed. Some photosynthetic organisms contain chloroplasts that lack photosystem II, yet are able to survive. The best way to detect the lack of photosystem II in these organisms would be to _____. what does kelp eat. this is for marine science but there is no option so I just put biology.