Answer:
A. Pivot Table
Explanation:
Given that a Pivot Table is a form of a table in statistics that comprises various data of several tables in a shortened form.
This table is then used to carry out analysis of data in numerous ways to reach a meaningful conclusion to make a decision.
Hence, in this case, the correct answer is a PIVOT TABLE.
1. Harold Worden, then 56-years-old, stole Kodak property
that was worth millions of dollars. He had worked for
Kodak for over 30 years and did not return confidential
documentation when he left the company in 1992.
He attempted to try and sell his ill-gotten gains to Kodak's
competitors while trying to start his own consulting firm.
The following scenario is an example of?
Answer:
Industrial espionage
Explanation:
Espionage is defined as the act of spying or the use of spies to acquire information on the activities and plans of a government of another country or those of a company in a competitive market
It is the practice of obtaining confidential or secret information and can be considered a felony depending on the case circumstances and the manner of damages caused by the act which is provable and made by the claimant
Industrial espionage is also known as economic espionage
What should a user do to find and replace text throughout a field? Use the drop-down menus to complete the steps
1. Put the cursor in the field to search
2. In the Home tab, open the dialog box
3. On the
tab, enter the text to search for and the replacement text
4. After a few instances to make sure the text is being replaced correctly, you can then click
to
change all instances
The thing that a user should do to find and replace text throughout a field are:
1. Put the cursor in the field to search.
2. Open the find dialog box.
3. On the Replace tab, enter the text to search for and the replacement text.
4. Click Replace All to change all instances.
How do you search for and replace text across an entire field?The keys on the keyboard CTRL+F is often used to find. The dialog window for Find and Replace appears. Click the Find tab in the Find and Replace dialog box to search for data. Click the Replace tab to perform a find-and-replace operation.
The operations are:
1. Click Find and Select in the Editing group on the Home tab, then select Replace from the drop-down list.
2. In the dialog box, select the objects you want to Find and Replace by clicking the Options button.
3. Press the Replace or Replace All button.
Therefore, If you want to replace all occurrences of a word or format in a document, use the Ctrl+H Find and Replace function. This is very useful for lengthy papers.
Learn more about Editing from
https://brainly.com/question/15768529
#SPJ1
See full question below
What are the steps to replace one piece of text with another throughout a field? Use the drop-down menus to
complete the statements.
1. Put the cursor in the field to search.
2. Open the _____
dialog box.
3. On the Replace tab, enter the text to search for and the replacement text.
4. Click -------to change all instances.
Help Please! Computer science question !!!!!!!!!!20 points!!!
Answer:
45 abc
Explanation:
Why do we use if statements?
To tell Tracy to stop our code if there’s an error
To have Tracy make decisions based on conditional statements
To tell Tracy to do something if we run our code
To have Tracy complete one function at a time
Please help! No one is answering these correctly!
A gateway is a common network hardware component that does what?
enables a network to connect to other networks
verifies user credentials to grant network access
connects many devices to a network using a single port
allows specific kinds of data into different parts of a network
What is the best way to prevent the most common cause of network failure?
Avoid using USB cables for connecting devices.
Maintain careful records of networked devices.
Use up-to-date antiviral software to protect computers.
Upgrade routers and servers annually.
Answer:
it is either c or d
I'm 99.5% sure it is C tho
Select the effective subject lines.
Timecard Machine Relocated
This Message Contains Some Important New Information About Company Operations
Please Use the New Form in the Revised Employee Manual for Filling Out Your Expense Reports, the Procedure Has Changed
Test Results Attached
New Expense Reporting Procedures
Servers
IT Department Closed for Server Maintenance
Answer:
dont click the link
Explanation:
Answer:
Please Use the New Form in the Revised Employee Manual for Filling Out Your Expense Reports, the Procedure Has Changed
Servers
This Message Contains Some Important New Information About Company Operations
Explanation:
i did this on edge 2021 there is a quizlet with most of the questions
--concept mapping--
importance of trees for people:
1.
2.
3.
4.
5.
importance of trees for animals
1.
2.
3.
4.
5.
Answer:
-Both need oxygen from the trees to breathe
-Without trees the population of animals and people would be dying
Explanation:
Thats all I can think of
8.6 Code Practice: Question 2
Copy and paste your code from the previous code practice. If you did not successfully complete it yet, please do that first before completing this code practice.
After your program has prompted the user for how many values should be in the array, generated those values, and printed the whole list, create and call a new function named sumArray. In this method, accept the array as the parameter. Inside, you should sum together all values and then return that value back to the original method call. Finally, print that sum of values.
Answer:
import random
def buildArray():
amount = int(input("How many values to add to the array: "))
array = []
for i in range(amount):
array.append(random.randint(10, 99))
return array
array = buildArray()
print(array)
def sumArray(array):
return sum(array)
sum_array = sumArray(array)
print("The total is: ", sum_array)
Explanation:
this gave me 80%
In this exercise we have to use the knowledge of computational language in python to write the code.
We have the code in the attached image.
The code in python can be found as:
import random
def buildArray():
amount = int(input("How many values to add to the array: "))
array = []
for i in range(amount):
array.append(random.randint(10, 99))
return array
array = buildArray()
print(array)
def sumArray(array):
return sum(array)
sum_array = sumArray(array)
print("The total is: ", sum_array)
See more about python at brainly.com/question/26104476
Use the drop-down tool to select the word or phrase that completes each sentence. Text within a document that is linked to other information available to the reader is called _______. A unique location for a computer on the network is its _______. The ________ is the ability of a network tor cover after any type of failure. The computer that responds to requests from the client computer is known as the ________. A ________ is an ordered list of tasks waiting to be performed.
Answer:
1. Hyperlink
2. IP address
3. Fault tolerance
4. Server
5. To do list
Explanation:
Text within a document that is linked to other information available to the reader is called HYPERLINK.
A unique location for a computer on the network is its IP ADDRESS.
The FAULT TOLERANCE is the ability of a network to cover after any type of failure.
The computer that responds to requests from the client computer is known as the SERVER.
A TO-DO LIST is an ordered list of tasks waiting to be performed.
Answer:
hypertext
IP address
fault tolerance
server
queue
Explanation:
just did it on edg
what is the best free website to learn phyton programming
I need help I have questions I need answers in coding html,css,js and python.Fast
The purpose of the sleep method is to reduce the amount of energy the program uses.
True
False
The _____ is a collection of webpages that use the internet.
pseudocode
World Wide Web
Python
server
Which of the following lines of code would correctly create a list called weapons?
weapons == [“sword”, “sling”, “knife”]
weapons = [“sword” or “sling” or “knife”]
weapons = (“sword”, “sling”, “knife”)
weapons = [“sword”, “sling”, “knife”]
Which of these lines of code would import both the random and the time modules?
import random, time
import random and time
time.import, random.import
import(random, time)
When using HTML, your text should be placed between the opening and the closing tags.
True
False
Answer:
1. True
2. World Wide Web
3. weapons = [“sword”, “sling”, “knife”]
4. import random, time
5. True.
Explanation:
For number 1 I'm not quite sure since I never personally used it, but it does reduce CPU usage when activated so it's very possible it's true.
what are the uses of plotters
Answer:
Plotters are use to produce the hard copy of schematics and other similar applications They are mainly used for CAE applications.They can print on a wide variety of flat materialsHope it helps :)❤
Answer:
Plotters are used to print graphical output on paper. It interprets computer commands and makes line drawings on paper using multicolored automated pens. It is capable of producing graphs, drawings....
PLEASE HELPPPPPPP What should you always disconnect before installing hardware inside a computer’s case?
A.
all cabling
B.
all internal components
C.
the CPU
D.
the internal DVD drive
Answer:
a) all cabling hope it helps
when should a computer definitely have an ip address
Every single device can be connected to every other device on network, making the network mesh. This statement is True or False? *
1 point
True
False
Answer:
true
Explanation:
we can connect to any device which has a network connection