Input of ___________________ and generating _____________________ is an example of how a business uses data and processes it into meaningful information.

Answers

Answer 1

Answer:

Input of _______data______ and generating _____information (reports)____ is an example of how a business uses data and processes it into meaningful information.

Explanation:

The data processing is the transformation of data into actionable information to ease decision making. The steps involved in data processing include data collection, data preparation, data input, processing, and information output and storage.   These steps enable data to become useful to the user.  Without data processing, data and information may be too complex for usage.


Related Questions

i need help, thank you

Answers

Answer:

i think i might be the 3 answer

Explanation:

How do you get a free ps4

Answers

Answer:

By having very good luck and winning it in a giveaway!!!

Answer:

by just having luck and a person giving it to u :)

HURRY

I ONLY HAVE 4 DAYS LEFT

Select the correct answer.

A game design company develops a game in which players run a grocery store and need to keep tabs on the dollar amount of goods sold and received each day. Which statement best describes this game?

A.
It is an educational game that teaches economics.
B.
It is an educational game that teaches algebra.
C.
It is an educational game about health sciences.
D.
It is an inventory-management game.
E.
It is an educational game that teaches accounting.

Answers

E. It is an educational game that teaches accounting

When converting text to a table, which feature should be used?

Answers

i’m pretty sure it would be an insert tab

Answer: insert tab in ribbon bar

Explanation:

Please answer in Java
Sale! During a special sale at a store, a 10% discount is taken off of purchases over $10.00.
Create an application that prompts the user for the dollar amount of purchases and then
returns the discounted price, if any. The program should neatly display the subtotal before
the discount, the amount of money discounted (if any), the HST applied to the subtotal and
finally the total. The program should be able to handle negative numbers and give an
appropriate message.
Sample Run #1:
Enter the purchase amount: 9.45
No discount applied.
Subtotal: $9.45
HST: $1.23
Total: $10.68
Sample Run #2
Enter the purchase amount: 15.00
10% discount applied.
Subtotal: $15.00
Discount: - $1.50
HST: S1.76
Total: $15.26

Answers

Answer:

Scanner keyboard = new Scanner(System.in);

   

       

       

        double discount = 0;

        double productPrice;

        double subTotal;

        double salesTax;

        double saleTotal;

       

       

       System.out.printf("Enter the purchase amount:");

       productPrice = keyboard.nextDouble();

       

       if (productPrice > 10) {

          discount = 10;

}

       System.out.println( + discount + "% discount applied.");

       

       subTotal = (productPrice);

       salesTax = (subTotal * 0.14);

       saleTotal = (subTotal + salesTax - discount );

       System.out.printf("Subtotal: $%5.2f\n", subTotal);

       System.out.printf("Discount; -$%5.2f\n", productPrice - discount);

       System.out.printf("HST: $%5.2f\n", salesTax);

       System.out.printf("Total: $%5.2f\n", saleTotal + salesTax);

}

}

Explanation:

Consider the phrases “recognize speech” and “wreck a nice beach.” If you say them out fast anyone might confuse the sentences. From this it is easy to see why NLU can experience difficulties when performing voice recognition.

Name at least two issues a good voice recognition system must overcome to accurately identify natural human speech. Describe how these issues affect VR development.

Answers

Basically, they sound the same.

Explanation:

Because, when you have 2 sentences and they both sound the same the VR system recognizes only one thing because you're both saying them the same kind of way so it's really confusing.

Answer:

Dialects- because native languages have many different dialects it would be hard to account for all of the varrences. Chinese is (one of) the densest languages in the world since there are literally hundreds of thousands of sub-varieties of the language. Trying to develop a software that can capture all of these varrences will be difficult because dialects change and mutate as people move in and out of regions.  

 

Loud environments- Since voice recognition systems are used in all sorts of environments it would be hard to account for the different background noise that will be heard and have to be filtered through. Creating a VR that can identify all noises will be virtually impossible.

Explanation:

How does understanding how mobile marketing works help people use smartphones safely and responsibly?

Answers

Answer:

When done right, mobile marketing provides customers or potential customers using smartphones with personalized, time- and location-sensitive information so that they can get what they need exactly when they need it, even if they're on the go.

Explanation:

your welcome

True or False:
QBASIC allows you to break lengthy programs into modules.

Answers

Answer:

True.  Qbasic allows two distinct subdivisions of a program, functions and subroutines.  The former of which can return a value, and the latter does not.

*Note I haven't used Qbasic in over a quarter of a century, so it may have evolved in time.  My experience with it is on MS-DOS.

What is a sequence of graphic illustrations which represent the planned scenes for a video or animation?
A. Animation
B. Production
C. Multimedia projects
D. Storyboard

Answers

Answer:

D. Storyboard

that is the answer

story board, D...........:)

Does anyone know how to unblock websites on a school chromebook?

Answers

Answer:

sorry honey don't know!!!!!

I do what website are you trying to unblock?

Consider the following program:

01 y = input("enter a number")
02 x = y MOD 5
03 if x == 0 then
04 print (True)
05 endif

Which programming constructs are not used in this program?
Selection
Sequence
Iteration

Answers

Answer:

Iteration is not used in the program

Explanation:

Analysing the program one line at a time.

The first two lines are:

y = input("enter a number")

x = y MOD 5

The above lines show a sequential control structure. This is so because the first line is executed before the second (i.e. in sequence).

The third to the last lines are:

if x == 0 then

print(True)

endif

When a program includes at least one if statement or condition, this means that the program contains a selection program control structure.

The above lines may or may not be executed depending on the condition  (if x == 0 then)

If the value of x is 0 then, True will be printed. If otherwise, True will not be printed

The program does not use iteration control structure because no part of the code were looped or repeated.

An alarm clock draws 0.5 A of current when connected to a 120 volt circuit. Calculate its resistance.

Answers

Answer:

120 vpm

Explanation:

18. The Physical Model is derived from the Logical Model. True or False?
True
False

Answers

True is the correct answer

It specifies how a system must be implemented and is not database-specific. Business analysts and data architects are the users who typically construct LDMs. Thus, it is true.

What Physical Model is derived from the Logical Model?

A logical model includes depictions of entities, properties, relationships, special identifiers, subtypes, and super types, as well as restrictions on how relationships can be formed. A logical model may also reference one or more domain or glossary models or include objects from a domain model.

The physical model, which describes how data is physically stored in a database, is developed from a logical model and is specific to a given vendor's data storage technology.

Therefore, it is true that The Physical Model is derived from the Logical Model.

Learn more about Logical Model here:

https://brainly.com/question/29322169

#SPJ2

what is the missing term

Answers

Answer:

location

Explanation:

Because it is referenced in the classes init method.

Question 13(Multiple Choice Worth 5 points)
(03.01 LC)
What tab in Word Online should you choose to add a shape to your document?
Home
Insert
Layout
Review

Answers

Answer:

Option 2: Insert is the correct answer.

Explanation:

Word processing software provides with the options required to create and format documents. A document may consist of text, images, shapes, tables etc.

The insert tab is used to insert tables, images and shapes in the document.

Hence,

Option 2: Insert is the correct answer.

Answer:

#2. Insert

Explanation:

That's where it is =>

Why do we use a design process?

Answers

Architects, engineers, scientists, and other thinkers use the design process to solve a variety of problems. Use this process to define the steps needed to tackle each project, and remember to hold to all of your ideas and sketches throughout the process.It's a systematic series of steps that helps you to define, plan and produce a product you're building — in our case, an app. It allows you to be efficient, transparent and focused on creating the best product possible.

Here are the 7 steps most design projects will have to pass through to get from the initial client briefing to a successful project.

Step 1 – Study the Client Brief. ...Step 2 – Research, Research, Research. ...Step 3 – Brainstorm. ...Step 4 – Sketch. ...Step 5 – Concept Development. ...Step 6 – Revisions. ...Step 7 – Completion.

What does the image depict:
a. a distributed database
b. a parallel database
c. an extranet
d. an intranet

Answers

I'm pretty sure it's a. a distributed database.

I could be wrong though, someone fact check me.

what is word wrapping??

Answers

Answer:

paper or soft material used to cover or enclose something.

i think the answer is this

Nate finishes his application letter and wants to save it as a template. Which type of file will it be?

A.docb
B.docx
.dotm
.dotx

Answers

Answer: I believe it’s dot.x.

Hope this helps! ^^

Henry has created a software product that manages a database of company clients. He wants to install the software on a client's computer, which has an operating system that does not support the software. What can Henry do to run the software on the client's computer?

Answers

Answer:

The answer is " Run the software on the original web browser practically".

Explanation:

The Virtual servers enable you to run programming not programmed to the devices. Let's all presume which Henry's software will operate on computers but not on the mac. Since Mac is unable to run this software, it can practically install Linux on MC and install this.

The several common software applications such as parallels, VMware, and Virtual machines could be practically used during mac to install windows. Its platform operating system from a macOS software perspective is a true physical computer with almost everything set.

PLEASE HELP Due Today!
Write a paragraph explaining your opinion about the development of artificial intelligence. Minimum of five sentences.​

Answers

I guess I could just give you my opinion?

Urm, well here!

In my opinion, I think artificial intelligence is helping and destroying our country. I think in a way artificial intelligence helps schools and many others who may have learning disabilities. Having an artificial intelligence can help you answer, when you’re scared. Although, the bad part about artificial intelligence is it taking over. We are humans and we should be the ones learning to become better.

Hope that’s okay luv!

A celebrity blogger you have followed for years advises readers to try a new beauty product. Before purchasing the product, a savvy consumer should (5 points)

accept the blogger knows what she is talking about
recognize the blogger is being paid by a competing beauty company
question if the blogger is qualified to evaluate beauty
assume the blogger is a beauty expert

Answers

Answer:

question if the blogger is qualified to evaluate beauty

Explanation:

Sunil’s basketball coach asks him to prepare a presentation for his teammates on the proper way to shoot a basketball. After researching the topic online, Sunil decides to add a visual aide to his report.

Which visual aide is the best fit for Sunil’s presentation?

a podcast describing how to shoot a basketball
a video tutorial showing how to shoot a basketball
a graph showing how many players shot a basketball
a sound bite describing a player shooting a basketball

Answers

Answer: a video tutorial showing how to shoot a basketball

Explanation:

It will show them how to shoot the basketball

Answer:

a video

Explanation:

how do i choose a most brainlyist

Answers

Answer:

They’ll have to be 2 answers first, when 2 answers are given, you can choose which is branlyis. If there are no 2 answers, you can’t choose.

Answer:

When you have a question, you can mark Brainliest only when there are two answers. When there are two answers, in the bottom right corner there is a yellow crown. Click the crown to mark that person as the Brainliest. Choose carefully, because you can't undo it!

mention five internet services​

Answers

1 ) cable internet 2) DSL internet 3) sattalite internet4) mobile internet5) BSNL

please mark me as brainlist

answer(s)

communication services,

informational retrieval services,

web services,

world wide web,

& video conferencing.

PLEASE HELP
Ok so I am totally dead because I fell behind in my school and it is hard for me to catch up. Does anyone have any tips. I will still give you brainily if you help. Thanks

Answers

Girl this happened to me too but all I did was try to look up info on things or examples to know how to do the work and stuff

Answer:

yes I do so first of all number #1 rule sometimes you can feel lazy and just want to give up and play video games for the rest of the day don't do that because the work that was doe that day will just keep piling up and that can make you Overwhelmed.

Write difference between hacker and cracker in table.​

Answers

Explanation:

Hackers :

Hackers are kind of good peoples who does hacking for the good purpose and to obtain more knowledge from it. They generally find loop holes in the system and help them to cover the loop holes. Hackers are generally programmers who obtain advance knowledge about operating systems and programming languages. These people never damage or harm any kind of data.

Crackers :

Crackers are kind of bad people who breaks or violates the system or a computer remotely with bad intentions to harm the data and steal it. Crackers destroy data by gaining an unauthorized access to the network. There works are always hidden as they are doing illegal stuff. Bypasses passwords of computers and social media websites, can steal your bank details and transfer money from bank.

Sue follows these steps to create a chart in her presentation. Step 1: Navigate to the Insert tab. Step 2: Click the Chart button in the Illustrations command group. Step 3: Choose the column chart. Step 4: Click OK. Which objects appear on the slide after she clicks OK? Check all that apply.

Answers

Answer:

a table with sample values

a chart with sample values

Explanation:

Microsoft powerpoint is a powerful presentation tool. It has several tools and can be used to present even excel files, charts and other graphical data.

When a chart is created in powerpoint, the slide of the application shows a table and a chart with sample values.

a table with sample values

a chart with sample values

50 POINTSSS!!! Select the various storage management tools.

Disk Cleanup
Cleaning a desktop
Check Disk
Checking for errors
Disk Defragmenter
Cleaning a keyboard
Windows Update

THERE ARE MULTIPLE

Answers

Explanation:

cleaning a desktop

and cleaning a keyboard

Answer:

The answer above me is wrong and Cleaning a desktop and Cleaning a keyboard have nothing to do with storage management tools.

The correct answers are:

Disk Defragmenter

Check Disk

Checking for errors

Disk Cleanup

3. _________refers to the facts or raw material, which are processed to get the information.

Answers

Answer:

data

Explanation:

because data is the raw material and it is 100% processed to get anbinformation

Other Questions
What changes for Janaki after herconversation with Isabel?She wishes she had grown up in Indiainstead.She decides what to do about herproblem.She starts to think differently about hersituation.She is more homesick after texting herfriend. What made the Battle of Yorktown significant? What help people better people if they angry every day 5. Lines s and t intersect as shown in the picture. Which pair of angles are vertical?A. angle 7 and angle 10B. angle 9 and angle 10C. angle 8 and angle 10D. angle 7 and angle Can you anser number 9 How could solar flares affect the Earth's communication? somebody explain what is the difference of vague pronouns and regular pronouns giving brain thing to best answer There are three major types of cancer treatments: surgery to remove cancerous tissue, chemotherapy, and radiation. Which treatment would paclitaxel be considered For what is Dr. Mengele famous? I need help please!!! need help with algebra 1 assignment. i already have the first two equations for b. just need the last one (x-2y=-8). if c is possible pls answer for all of the equations.Thanks so much, have a nice day!!!! Select the correct form of the irregular verb ser in the preterite tense for the pronoun yo.Question 15 options:SoyFuimosFuiSomos Joe's dad sold a motorcycle he bought two years ago for $1500 he sold it for 40% of the amount he originally paid for it Thayer regional cost is X write an expression that shows the sales price of a motorcycle Your help is greatly appreciated! En qu profesion se trabaja con la ley? Which would be the closest antonym for the word hopeful?ADependableBExcitedWorriedDImpatient Whats the Slope of the Line Passing Through (2,5) And (-1,8) a 15 kg massmoves with aspeed of 10m/s. Calculatethe kineticenergy. What did George Washington's men have to do when they first arrived at Valley Forge? When the Vikings sailed Norway to Great Britain in the middle ages, They crossed which sea in the long boats? What best determines whether a borrower's interest rate on an adjustable rate loan goes up or down?a fixed interest rateO a bank's financesa market's conditionO a person's financesNark this and retumSave and ExitNextSubmit