Answer:
Explanation:
the problem is predators can get to children easier through the internet
For your biology class, you will be giving a presentation of the findings of a plant growth experiment. Which application is best suited for this presentation?
Writer or Word
Impress or PowerPoint
Notepad or Paint
Calc or Excel
Answer: Powerpoint
Explanation: Easy to give graphs and add pictures. You can also add shapes to create a bar graph if needed.
Answer:
Calc or Excel
Explanation:
What does this loop that uses a range function do?
for i in range(7, 15)
print("goodbye")
O It prints "goodbye" 8 times, numbered from 7 through 14.
It prints "goodbye" 9 times, numbered from 7 through 15.
O It prints "goodbye" 9 times.
O It prints “goodbye" 8 times.
This code will print "goodbye" 8 times
Answer:
B. It prints "goodbye" 9 times, numbered from 7 through 15
Explanation:
What is a goal?
What is a strategy?
What are tactics?
hy is it important for a goal to be specific?
Which sentences describe the value of a conditional statement? Check all that apply.
It allows a programmer to designate a portion of the code that will be run only when a condition is met.
It creates new program code when a condition is met.
It allows a programmer to set a condition that must be met.
It incorporates decision-making into a program.
Answer:
134
Explanation:
Edgenuity
Answer:
1. It allows a programmer to designate a portion of the code that will be run only when a condition is met.
3. It allows a programmer to set a condition that must be met.
4. It incorporates decision-making into a program.
Explanation:
Which of the following might cause a mobility impairment that limits computer use? Select 3 options.
a color blindness
Odyslexia
O neurological issue
injury
O genetic issue
Explanation:
A color blindness , injury .
Answer:
neurological issueinjurygenetic issueExplanation:
The question is about mobility impairment. Color blindness and dyslexia have to do with vision, so rarely cause mobility issues related to computer use. Rather they would cause issues related to reading the screen.
The remaining three choices are the ones you want.
Bill has several workbooks open, and he would like to see them all side by side on the screen. Which option on the
Arrange All menu should he use?
Tiled
Cascade
Horizontal
Vertical
Answer:
tiled
Explanation:
Use the drop-down menus to complete the statements about creating a table of contents in Word 2016.
To use the table of contents feature in Word, a user must have already created
in the document.
The Mark Table of Contents Entry option is used for
marking nonheading text for the table of contents.
On the Table of Contents dialog box, the
button can be used to change font styles.
Answer:
1.headings and subheadings
2.manually
3.options
Answer: 1.Headings and Subheadings
2.Manually
3.Options
Explanation: Just did it on e2020.
which are the two alternatives for pasting copied data in a target cell groups
Answer:
Excel has decided to paste contents into a single cell, rather than keeping data in columns. When copying from a query in SQL that has data in a table, pasting it into Excel would normally split the data into the columns - keeping the table. But Excel has automatically changed and takes out the table, pasting each row into one cell.
Explanation:
What is computer. Write full form of mips
Answer:
Stands for "Million Instructions Per Second." It is a method of measuring the raw speed of a computer's processor. ... The MIPS measurement has been used by computer manufacturers like IBM to measure the "cost of computing." The value of computers is determined in MIPS per dollar.
A variety of fonts may be used in letter writing as long as the font size is 12 points.
True
False
Answer:
False
Explanation:
The ____, which amplified weak electrical signals, enabled electrical sound recording.
Answer:
Radio
Explanation:
100 POINTS PLEASE HELP Ken Thompson and Dennis Ritchie co-created which operating system?
Answer:
UNIX operating system
Explanation:
Unix is a family of multitasking, multiuser computer operating systems that derive from the original AT&T Unix, development starting in the 1970s at the Bell Labs research center by Ken Thompson, Dennis Ritchie, and others.
Answer:
the UNIX
During the 1960s to 1970s, Bell Labs colleagues Ken Thompson and Dennis Ritchie developed UNIX, a multi-tasking, multi-user operating system alternative to the batch processing systems then dominating the computer industry.
Explanation:
The way things are arranged on a publication is referred to as the _____.
style
guides
layout
scheme
After a new technology is purchased, what are some additional costs that must be incorporated into an upgrade budget?
Answer:
Depends
Explanation:
If corprate then education,
if home then premium software,
if school educational software.
HOPE THIS ANWSERS YOUR QUESTION
IF NOT, MESSAGE ME!
Joann wants to save the building block she created for the title of her company.
In which file does she save this building block?
O Building Blocks.dotx
O Building Blocks.html
O Building Blocks. thmx
O Building Blocks.qpbb
Answer:
The actual answer is A.
Explanation:
Answer:
a
Explanation:
Why is it important to proofread your documents ?
Answer:
It's important to proofread your documents to make sure that you don't have any avoidable mistakes.
Explanation:
Avoidable mistakes include grammar, sentence structure, and word choice.
4.1 Code Practice: Edhesive
In python 3:
while True:
name = input("Please enter a name: (Nope to end) ")
if name == "Nope":
break
print("Nice to meet you {}".format(name))
I hope this helps!
The program is an illustration of while loops.
While loops are used to perform iterative operations, until the condition is met
The program in Python, where comments are used to explain each line is as follows:
#This prompts the user for name
name = input("Please enter a name (Nope to end) ")
#This checks if input is "Nope"
while name.lower()!="nope":
#If no, this prints the greetings
print("Nice to meet you",name)
#This prompts the user for another input
name = input("Please enter a name (Nope to end) ")
Note that the loop is repeated until the user enters "Nope" or "nope"
Read more about while loops at:
https://brainly.com/question/18430675