Answer:
i think it is accommodate? the other two choices dont look right.
Answer:
control
Explanation:
Complete the sentence about bias and equity.
To reduce bias in computational artifacts, mentally and physically challenged individuals need to be able to
control
as many aspects of the artifact as possible.
got it right
Trying to solve this problem with for and while loops. Help appreciated. Thanks.
mystery_int = 7 #You may modify the lines of code above, but don't move them! #When you Submit your code, we'll change these lines to #assign different values to the variables. #Use a loop to find the sum of all numbers between 0 and #mystery_int, including bounds (meaning that if #mystery_int = 7, you add 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7). # #However, there's a twist: mystery_int might be negative. #So, if mystery_int was -4, you would -4 + -3 + -2 + -1 + 0. # #There are a lot of different ways you can do this. Most of #them will involve using a conditional to decide whether to #add or subtract 1 from mystery_int. # #You may use either a for loop or a while loop to solve this, #although we recommend using a while loop.
Sure, I can help you with that. Here's a solution using a while loop:
The Programmystery_int = 7
total = 0
if mystery_int >= 0:
i = 0
while i <= mystery_int:
total += i
i += 1
else:
i = 0
while i >= mystery_int:
total += i
i -= 1
print(total)
And here's a solution using a for loop:
mystery_int = 7
total = 0
if mystery_int >= 0:
for i in range(mystery_int + 1):
total += i
else:
for i in range(mystery_int, 1):
total += i
print(total)
Both solutions work by first checking if mystery_int is positive or negative. If it's positive, we use a loop to add up all the numbers from 0 to mystery_int. If it's negative, we use a loop to add up all the numbers from mystery_int to 0. In the for loop solution, we use the range function to generate the appropriate sequence of numbers to add up.
Read more about while loop here:
https://brainly.com/question/19344465
#SPJ1
Media plays an important role in shaping the socio-economic mind set of the society. Discuss the adverse impact of the today's media technologies when compared to the traditional methods.
While today's media technologies offer unprecedented access to information, they also come with adverse effects. The proliferation of misinformation, the culture of information overload, and the reinforcement of echo chambers all contribute to a negative impact on the socio-economic mindset of society when compared to traditional media methods.
Today's media technologies have undoubtedly revolutionized the way information is disseminated and consumed, but they also bring adverse impacts when compared to traditional methods.
One significant drawback is the rise of misinformation and fake news. With the advent of social media and online platforms, anyone can become a content creator, leading to a flood of unverified and inaccurate information.
This has eroded trust in media sources and has the potential to misinform the public, shaping their socio-economic mindset based on falsehoods.
Additionally, the 24/7 news cycle and constant access to information through smartphones and other devices have created a culture of information overload and short attention spans.
Traditional media, such as newspapers and magazines, allowed for more in-depth analysis and critical thinking. Today, the brevity of news headlines and the focus on sensationalism prioritize clickbait and catchy content over substantive reporting.
This can lead to a shallow understanding of complex socio-economic issues and a lack of nuanced perspectives.
Furthermore, the dominance of social media algorithms and personalized news feeds create echo chambers, reinforcing existing beliefs and biases.
This hampers the exposure to diverse viewpoints and reduces the potential for open dialogue and understanding among individuals with different socio-economic backgrounds.
For more such questions on proliferation,click on
https://brainly.com/question/29676063
#SPJ8
Which of the following statements are true regarding the fetch-execute cycle? Select 3 options.
A. The device responsible for performing the fetch-execute cycle is the CPU.
B. Fetch refers to saving output to the hard drive.
C. Each step of the fetch-execute cycle is performed for each instruction.
D. The order of steps in the fetch-execute cycle is fetch-decode-execute-store.
E. The fetch-execute cycle is only carried out when a user types in input.
Answer:
A, C, & D
Explanation:
The fetch execution cycle refers to the execution of instructions by the CPU. This is a multi-step process in which instructions are fetched, decoded, executed, and then stored. The result of this cycle allows an instruction to be executed by the CPU allowing the process cycle to continue.
The statements which are true regarding the fetch-execute cycle are;
A. The device responsible for performing the fetch-execute cycle is the CPU.
C. Each step of the fetch-execute cycle is performed for each instruction.
D. The order of steps in the fetch-execute cycle is fetch-decode-execute-store.
A fetch-execute cycle is also referred to as instruction cycle and it can be defined as the order of sequential steps or basic operation cycle that the central processing unit (CPU) of a computer performs to execute an instruction.
Basically, the fetch-execute cycle refers to a computer's basic operation cycle. Thus, it involves a process through which data (information) is received by the central processing unit (CPU) of a computer and determines what to do with the data (information).
Furthermore, the fetch-execute cycle comprises four (4) main phases and these includes;
Fetch: this is the stage where an instruction is collected by the central processing unit (CPU) of a computer and prepared for decoding.Decode: it determines what to do with the instruction after understanding the set of commands (instruction set) received.Execute: the decoded instructions are then executed by the Arithmetic Logic Unit (ALU) of the central processing unit (CPU).Store: the output or results are then sent and written in the main memory of the computer.In conclusion, we can deduce the following points from the above explanation;
1. The device responsible for performing the fetch-execute cycle is the central processing unit (CPU).
2. Each step of the fetch-execute cycle is performed for each instruction.
3. The order of steps in the fetch-execute cycle is fetch-decode-execute-store.
Find more information here: https://brainly.com/question/17412694
When you key in the date, Excel applies a standard format that shows:
The fundamental capabilities of all spreadsheets are present in Microsoft Excel , which organizes data manipulations like arithmetic operations using a grid of cells arranged in numbered rows and letter-named columns and pivot tables.
Thus, It has a variety of built-in functionalities to address financial, engineering, and statistical requirements. Additionally, it has a very limited three-dimensional graphical display and can present data as line graphs, histograms, and charts and Microsoft Excel.
Using pivot tables and the scenario manager, it enables segmenting of data to view its reliance on multiple parameters for diverse viewpoints.
A data analysis tool is a pivot table. This is accomplished by using PivotTable fields to condense big data sets. It features a programming component called Visual Basic for Applications that enables the user to apply a wide range of numerical techniques and operations.
Thus, The fundamental capabilities of all spreadsheets are present in Microsoft Excel , which organizes data manipulations like arithmetic operations using a grid of cells arranged in numbered rows and letter-named columns and pivot tables.
Learn more about pivot tables, refer to the link:
https://brainly.com/question/29786921
#SPJ7
please answer urgently. See the attached image
Based on the information, the tight upper bound for T(h) is O(h).
How to explain the informationThe algorithm visits at most x children in line 3, where x is the number of keys in the current node.
T(h) ≤ T(h-1) + x
For a B-Tree of height 0, i.e., a single node, the algorithm just compares the key with the node key and returns. Therefore, T(0) = Θ(1).
We can express T(h) as a sum of terms of the form T(h-i) for i = 1 to h:
T(h) ≤ T(h-1) + x
T(h-1) ≤ T(h-2) + x
T(h-2) ≤ T(h-3) + x
...
T(2) ≤ T(1) + x
T(1) ≤ T(0) + x
Adding all these inequalities, we get:
T(h) ≤ T(0) + xh
Substituting T(0) = Θ(1), we get:
T(h) = O(h)
Therefore, the tight upper bound for T(h) is O(h).
Learn more about upper bound on
https://brainly.com/question/28725724
#SPJ1
If you had to make a choice between studies and games during a holiday, you would use the _______ control structure. If you had to fill in your name and address on ten assignment books, you would use the ______ control structure.
The answers for the blanks are Selection and looping. Saw that this hasn't been answered before and so just wanted to share.
The missing words are "if-else" and "looping".
What is the completed sentence?If you had to make a choice between studies and games during a holiday, you would use the if-else control structure. If you had to fill in your name and address on ten assignment books, you would use the looping control structure.
A loop is a set of instructions in computer programming that is repeatedly repeated until a given condition is met. Typically, a process is performed, such as retrieving and modifying data, and then a condition is verified, such as whether a counter has reached a predetermined number.
Learn more about looping:
https://brainly.com/question/30706582
#SPJ1
Victoria turned in a rough draft of a research paper. Her teacher commented that the organization of the paper needs work.
Which best describes what Victoria should do to improve the organization of her paper?
think of a different topic
try to change the tone of her paper
clarify her topic and make it relevant to her audience
organize her ideas logically from least important to most important
Answer:
D
Explanation:
D would be correct
EDGE 2021
Which of these is a quicker way to add onto the value previously held by the variable “a” in in Python? A. a == a + 20 B. a += 20 C. a + 20 D. a/20
Answer:
b
Explanation:
B. a += 20 exists a quicker way to add onto the value formerly carried by the variable “a” in Python.
What is Python?Python exists as a high-level, interpreted, general-purpose programming language. Its design philosophy highlights code readability with the use of substantial indentation. Python exists dynamically typed and garbage-collected.
Python exists as a computer programming language often utilized to build websites and software, automate tasks, and perform data analysis. Python exists as a general-purpose language, meaning it can be utilized to create a variety of various programs and isn't specialized for any distinctive problems.
A Python variable exists as a symbolic name that exists as a reference or pointer to an object. Once an object exists allocated to a variable, you can direct it to the object by that name.
Hence, B. a += 20 exists a quicker way to add onto the value formerly carried by the variable “a” in Python.
To learn more about Python refer to:
https://brainly.com/question/26497128
#SPJ2
The max Fuel capacity a spaceship should have is 500. The minimum is 200. The ship you are designing is rated at 75% of range. How much fuel capacity does it have?
Note that where the above conditions are given, the fuel capacity of the spaceship is somewhere between 200 and 500, but since it is rated at 75% of range, its actual fuel capacity is 225.
Why is this so ?We know tat the spaceship is rated at 75 % of its range, but we do not know its actual range. Therefore, we cannot directly calculate its fuel capacity.
We may, however, utilize the information provided regarding the maximum and lowest fuel capacity to calculate a range of feasible fuel capacities for the spaceship.
Because the spaceship's range is rated at 75%, we may conclude that its fuel capacity is likewise within this range.
Using this logic, we can calculate the possible range of fuel capacities as follows:
Maximum fuel capacity = 500Minimum fuel capacity = 200Range of fuel capacities = Maximum - Minimum = 500 - 200 = 30075% of range = 0.75 x 300 = 225Therefore, the fuel capacity is 225.
Learn more about fuel capacity at:
https://brainly.com/question/23186652
#SPJ1
Key Categories: more libraries and thousands of functions
Select one:
a. Power
b. Practicality
c. Possibility
d. Price
Key Categories: more libraries and thousands of functions is Practicality. Hence, option B is correct.
What is Practicality?the ability to perform something or put something into action: Bankers expressed dissatisfaction with the new rules' viability as workable answers to challenging issues. He believes that wind energy can be a useful renewable energy source. For the majority of residential residences, the equipment is too large to be useful. Although the shoes are attractive, they are not particularly useful. The book is a helpful manual for maintaining cars.
tailored or created for actual use; beneficial: useful guidelines. interested or skilled in practical application or work: a pragmatic politician with a record of enacting significant legislation.
The definition of practical thinking is "examining ways to adapt to your surroundings or change your environment to fit you" in order to achieve a goal. Practicality is a term that is used occasionally.
Thus, option B is correct.
For more information about Practicality, click here:
https://brainly.com/question/24313388
#SPJ5
I really need help with this question IN PYTHON! I don't know why I am producing no output!
The program first creates a Word object with the input word and character. Then, it opens the text file associated with the word and adds the synonyms to the Word object.
How to explain the informationimport os
class Word:
def __init__(self, word, character):
self.word = word
self.character = character
self.synonyms = []
self.message = "No synonyms for {} begin with {}".format(word, character)
self.filename = word + ".txt"
self.count = 0
def add_synonym(self, synonym):
if synonym[0] == self.character:
self.synonyms.append(synonym)
self.count += 1
def print_synonyms(self):
for synonym in self.synonyms:
print(synonym)
def main():
word = input("Enter a word: ")
character = input("Enter a letter: ")
word_object = Word(word, character)
with open(word_object.filename, "r") as f:
for line in f:
synonym = line.strip()
word_object.add_synonym(synonym)
if word_object.count == 0:
print(word_object.message)
else:
print_synonyms(word_object)
if __name__ == "__main__":
main()
Learn more about program on
https://brainly.com/question/26642771
#SPJ1
how do i write a python program for traffic signal with 6sec for each led (red,yellow,green) and a 7 segment display that displays 5,4,3,2,1,0 with the lights in Raspberry GPIO pin format?
do have i to write separate scripts? or can it be done in one itself ?
Sure, you can create a Python programme that activates each LED for six seconds and controls traffic signal while showing the countdown on seven section display. With RPi, it may be completed in a single script.
What shade should a traffic sign be?Red, Yellow, and Green are the three colours used in traffic signals. You must stop when the signal is red, slow down and wait when it is yellow, and go when it is green.
import RPi. GPIO as GPIO
import time
# Define GPIO pins for each LED
red_pin = 17
yellow_pin = 27
green_pin = 22
# Define GPIO pins for 7 segment display
seg_pins = [18, 23, 24, 25, 12, 16, 20]
# Define segment display patterns for each digit
patterns = {
0: [1, 1, 1, 1, 1, 1, 0],
1: [0, 1, 1, 0,
To know more about Python visit:-
https://brainly.com/question/30427047
#SPJ1
Which term means the push that makes electrons move in a wire?
Answer:
I think it is electromotive force, EMF, or voltage (most likely voltage)
Explanation:
According to ACM and IEEE What are the most popular programming languages used in industry today
Python remains on top but is closely followed by C. Indeed, the combined popularity of C and the big C-like languages—C++ and C#—would outrank Python by some margin.
What is a programming language?A method of notation for creating computer programs is known as a programming language. The majority of formal programming languages are text-based, though they can also be graphical. They are a sort of programming language.
Large enterprises all across the world employ client-server applications, and Java is the programming language most often associated with their creation.
Learn more about programming language here:
https://brainly.com/question/16936315
#SPJ1
Use the drop-down menus to complete statements about how to use the database documenter
options for 2: Home crate external data database tools
options for 3: reports analyze relationships documentation
options for 5: end finish ok run
To use the database documenter, follow these steps -
2: Select "Database Tools" from the dropdown menu.3: Choose "Analyze" from the dropdown menu.5: Click on "OK" to run the documenter and generate the desired reports and documentation.How is this so?This is the suggested sequence of steps to use the database documenter based on the given options.
By selecting "Database Tools" (2), choosing "Analyze" (3), and clicking on "OK" (5), you can initiate the documenter and generate the desired reports and documentation. Following these steps will help you utilize the database documenter effectively and efficiently.
Learn more about database documenter at:
https://brainly.com/question/31450253
#SPJ1
Question 1
1 pts
Ideally, your user should never be more than_clicks or taps from the information they are
looking for.
Explanation:
so, what do you think ?
I am sure you have used a computer or a smart phone yourself.
how many clicks or taps do you want to do before you you get what you were looking for ?
hmmmm ?
as few a possible, right ?
ideally, of course, this is one (1) click or tap.
Whitney absolutely loves animals, so she is considering a career as a National Park ranger. She clearly has the passion. Provide an example of another factor from above that she should consider and why it might be important before she makes a final decision.
One important factor that Whitney should consider before making a final decision on a career as a National Park ranger is the physical demands and challenges of the job.
What is the career about?Working as a National Park ranger often involves spending extended periods of time in remote and rugged wilderness areas, where rangers may need to hike long distances, navigate challenging terrains, and endure harsh weather conditions. Rangers may also be required to perform physically demanding tasks such as search and rescue operations, firefighting, or wildlife management.
It's crucial for Whitney to assess her physical fitness level, endurance, and ability to handle strenuous activities before committing to a career as a National Park ranger. She should also consider any potential health conditions or limitations that may impact her ability to perform the physical requirements of the job.
Read more about career here:
https://brainly.com/question/6947486
#SPJ1
What do organizations need to implement to ensure their data is trustworthy and reliable?
A lot of organizations need to implement to ensure their data is trustworthy and reliable though the use of Multi-party computing(MPC) and blockchain.
How do you ensure that data is trustworthy and reliable?The methods that a person can use to Achieve Trustworthy Data are:
Delete Software Disparity and as such, Businesses will be said to have a lot of software systems in place to handle a lot of different processes. Improve on the User Training and Understanding. Do use and Implement Quality Business Intelligence Tools.Therefore, A lot of organizations need to implement to ensure their data is trustworthy and reliable though the use of Multi-party computing(MPC) and blockchain.
Learn more about data from
https://brainly.com/question/20263094
#SPJ1
Write a program that calculates and displays the amount ofmoney available in a bank account that initially has $8000 deposited in it and that earns interest atthe rate of 2.5 percent a year. Your program should display the amount available at the end of eachyear for a period of 10 years. Use the relationship that the money available at the end of each yearequals the amount of money in the account at the start of the year plus 0.025 times the amountavailable at the start of the year [20 points].
Answer:
Written in Python
import math
principal = 8000
rate = 0.025
for i in range(1, 11):
amount = principal + principal * rate
principal = amount
print("Year "+str(i)+": "+str(round(amount,2)))
Explanation:
This line imports math library
import math
This line initializes principal amount to 8000
principal = 8000
This line initializes rate to 0.025
rate = 0.025
The following is an iteration from year 1 to 10
for i in range(1, 11):
This calculates the amount at the end of the year
amount = principal + principal * rate
This calculates the amount at the beginning of the next year
principal = amount
This prints the calculated amount
print("Year "+str(i)+": "+str(round(amount,2)))
If a mobile device has gotten wet, a good way to dry it out is to
.
Answer: The answer would be to soak it in a bag or bowl of rice
Explanation:
Leave your phone in an airtight container full of silica gel packets (those small packets you get inside new shoes and bags), or another drying agent. This'll helps to absorb moisture....
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.
The code practice illustrates the following concepts:
Arrays or ListsMethods or FunctionsThe program in PythonThe program written in Python, where comments are used to explain each action is as follows:
#This imports the random module
import random
#This defines the sumArray method
def sumArray(myList):
#This initializes the sum to 0
isum = 0
#This iterates through the list
for i in myList:
#This adds the array elements
isum+=i
#This returns the sum
return isum
#This gets the number of values
n = int(input("Number of values: "))
#This initializes the list
myList = []
#This iterates from 0 to n - 1
for i in range(n):
#This populates the list
myList.append(random.randint(0,100))
#This prints the list
print(myList)
#This calls the sumArray method
print(sumArray(myList))
Read more about Python programs at:
https://brainly.com/question/24833629
#SPJ1
Please I need ASAP
What is the intersection of a column and a row on a worksheet called?
Column
Value
O Address
Cell
Answer:
Cell
Explanation:
A cell is the intersection of a row and a column—in other words, where a row and column meet.
Which XXX will prompt the user to enter a value greater than 10, until a value that is greater than 10 is actually input?
do {
System.out.println("Enter a number greater than 10:");
userInput = scnr.nextInt();
} while XXX;
a. (!(userInput < 10))
b. (userInput < 10)
c. (userInput > 10)
d. (!(userInput > 10))
Answer:
b. (userInput < 10)
Explanation:
The piece of code that will accomplish this would be (userInput < 10). The code will first ask the user to "Enter a number greater than 10:" then it will compare the value of userInput to 10, if it is less than 10 it will redo the loop over and over again until the userInput is greater than 10. Once the userInput is greater than 10 it will break out of the do-while loop and continue whatever code is written under and outside the do-while loop
2) - How many integers between 1 and 500 inclusive are divisible by either 2, 3, or 5?
366 numbers between 1 and 500 are divisible by 2, 3, or 5.
We can check this with the following code:
AYUDAAAA!!!!! URGENTE!!!!!!1
¿para que sirve la "BIG DATA"?
Answer:
Big data is a field that treats ways to analyze, systematically extract information from, or otherwise deal with data sets that are too large or complex to be dealt with by traditional data-processing application software. ... Big data was originally associated with three key concepts: volume, variety, and velocity.
SPANISH TRANSLATION
Big data es un campo que trata formas de analizar, extraer sistemáticamente información de, o de otra manera tratar con conjuntos de datos que son demasiado grandes o complejos para ser manejados por el software tradicional de aplicación de procesamiento de datos. ... Big data se asoció originalmente con tres conceptos clave: volumen, variedad y velocidad.
What did World Com do to try to keep its stock price from falling?
if you encounter stage 3 of escalating behavior aggressive confrontation what is a good technique for deescalating or handling the situation
Use the following methods to defuse a situation: Pay attention to the person's issues as well as the problem. Give intelligent answers to show that you have considered their concerns. Hold off responding until the person has expressed their annoyance and described their feelings.
What technique for de-escalating or handling the situation?Be conscious of your body language. Make sure to convey calm and empathy using your tone, facial expressions, body language, and gestures.
Therefore, Call your security team or the local law enforcement for assistance and leave the area if you believe the person or scenario is becoming violent, and you need to be safe.
Learn more about de-escalating here:
https://brainly.com/question/10553844
#SPJ1
write a code for a program in which the parent had to ask from user that how many child user wants to create and then it should fork that many Childs?
Answer:
//same program different code
#include<stdio.h>
#include<unistd.h>
#include<stdlib.h>
int main()
{
int pid;
pid=fork();
if(pid<0)
{
printf("\n Error ");
exit(1);
}
else if(pid==0)
{
printf("\n Hello I am the child process ");
printf("\n My pid is %d ",getpid());
exit(0);
}
else
{
printf("\n Hello I am the parent process ");
printf("\n My actual pid is %d \n ",getpid());
exit(1);
}
}
Explanation:
Following are the program to the given question:
Program Explanation:
Include header file.Defining the main method.Defining an integer variable "n, i", after defining this use "n" to the input value.In the next step, a loop is declared that uses if block that checks fork value equal to 0, in which it calls the sleep method and prints its value.At the last, it calls the wait method.Program:
#include<stdio.h>//header file
#include<sys/types.h>
#include<sys/wait.h>
#include<unistd.h>
int main()//defining the main method
{
int n,i;//defining an integer variable
printf("Enter the number of child to be created:"); //print message
scanf("%d", &n);//input value in n
for(i=0;i<n;i++) // defining a loop that use if block with the frok method to print value
{
if(fork() == 0)//use if that check fork method value equal to 0
{
sleep(3);//calling sleep method
printf("[child] pid %d from [parent] pid %d\n",getpid(),getppid());//print message
}
}
wait(NULL);//calling wait method
return 0;
}
Output:
Please find the attached file.
Learn more:
brainly.com/question/17925458
Peter's friend posted something about him online that was a secret. What type of cyberbullying is this?
Answer:
bullying is the same as cyberbullying except cyberbullying is bullying online.
Explanation:
Question 1
You can adjust three columns in a newsletter so that they are asymmetrical by doing the following:
• hover over the indent marker and drag it for the column that you want to adjust the siz of
• click paste
• insert an extra column
• add a new row
Question 2
You are creating a document at your job to show who is your boss and who is your boss's boss. What type of image would be best?
• an organization chart
• pyramid
• project timeline
• t-chart
Question 3
Formatting is used to change
• allows shared files in the cloud
• add an image
• change the layout, arrangement, of a page
• insert trrackchanges
Question 4
How can you add or change the color of a table, column, or cell?
• Insert table
• draw table
• File
• Table Tools Format
Question 5
How can you make notes and share editorial feedback in a document?
• track changes/comments
• insert / clip art
• file / insert
• track changes / bubble
Question 6
You are creating a newspaper for your science class by making it in Word. Your layout should include using
• tables
• double-spaced paragraphs
• columns
• bullet points
Question 7
Square is a text-wrapping option that allows you to
• insert an image which wraps text around a box thats holds the image
• insert text over the top of an image
• insert text that is only to the right of the image
• insert text that is only to the left of the image
Question 8
Tables are made up of columns and rows to help organize simple data. Which is the best option to use a table?
• an editorial essay about why you like pizza more than sub-sandwiches
• a report listing the amount of snow in five cities during 2020 and 2021
• a report about the life of Abraham Lincoln
• an editorial essay about the best way to make a lemon cake
Question 9
You need to zoom into a document and change the display. What do you click to do this?
• Save
• Save as
• View
• Edit
Question 10
The Menu bar contains the following:
• PowerPoint, input, output, print
• File, Edit, View, Insert, Format, Tools
• File, sound, input, output
• data, input, output, print
Question 11
A bullet-point list is used when you have information
• that must be in columns
• that does not have any necessary order or sequence
• that must use colored font to look professional
• that must be in a sequential order
Question 12
Where do you go to underline text in a document without using a shortcut?
• Footer
• Toolbar
• Slide
• Save As
Question 13
What do you click to see your document two pages at a time in a word processing program?
• View
• Edit
• Add image
• Save As
Question 14
When you create a table of contents (TOC) a reader can use the table of contents links to move to the titled section in the document that use heading styles.
• True
• False
Question 15
You are creating a word-processing table that lists the rivers in Florida and tells how many miles they are, what their location is, and how much pollution is in each. Where will you place the header information to organize your table?
• right column and bottom of table
• bottom of table
• only above the table
• left column and top row of the table
Question 16
You are writing a letter to the mayor of St. Augustine for the company you work for, Event Management Solutions. You are planning a music festival! Your letter must look professional and so you have a pre-printed letterhead paper to print your letter on. Which margin settings are used to insert the letterhead and still have the right amount of whitespace?
• 3 inches on top, 3 inch on bottom, 3 inch on right, 3 inch on left
• 5 inches on top, 3 inch on bottom, 1 inch on right, 1 in on left
• 3 inches on top, 1 inch on bottom, 1 inch on right, 1 inch on left
• 1 inches on top, 1 inch on bottom, 1 inch on right, 1 inch on left
Question 17
You are a scientist and are writing a report on beach erosion for your job. Your boss asks you to put in images and graphics because
• they make your job easier
• they make the report seem unprofessional
• you can sell a paper with images
• they help to communicate the message and topic of the paper
Question 18
You want to keep track of exercise for the week, but you don't want to use Excel. What can you use in a Word Processing program to best organize the type and amount of exercise your do each day?
• bullet-point list
• table
• image
• comment
Question 19
You wrote an amazing report for your boss who is a chef. He wanted to know more about new trends for lunch options and what sells best. You revised some information and need to see what edits you made. What will you use to see your edits
• Track changes
• bullet-points
• File
• Save As
Question 20
You need to insert images of new lunch items in a report that you wrote for your boss who is a head chef. What will you click to add images of the lunch items you are suggesting be added to your menu at your job?
• insert> paste
• insert> save
• insert> pictures
• insert> table
Answer:
1. A. hover over the indent marker .....