Answer:
b freeze or run slowly
Explanation:
Use the drop-down menus to complete statements about the effects of using junk email options.
Some allowed messages can still be blocked by the client or the
Obvious spam or junk messages will be blocked by the
The Safe Lists Only option is the protection level.
Answer:
✔ server
✔ client
✔ most restrictive
Explanation:
Correct on edg
Answer:
^ their correct
Explanation:
Omar wants to print out a document to give to his audience to follow along with his presentation. However, he does not want his classmates to see the slides in advance.
Which type of document should Omar print?
outlines
full slides
handouts
notes pages
Answer:
A on Edg
Explanation:
Answer:
Outlines
Explanation:
Two popular feedback formulas are?____________________ and ____________________
Answer:
negative and positive
Explanation:
A _____ is a device that sends data from one network to another.
router
server
client
switch
Answer:
Router
Explanation:
i did it on edj
Answer:
router
Explanation:
On Edge, a router is described as a device that sends data from one network to another.
(Confirmed on EDGE)
I hope this helped!
Good luck <3
Dayla is concerned about managing her digital footprint. What does she mean by this? *
Answer:
The answer to this question is given below in the explanation section.
Explanation:
First we know what is digital footprint.
A digital footprint is a trail of data you create while using the Internet. It includes the websites you visit, emails you send, and the information you submit to online services.
So, Dalya is concerend about managing her digital footprints means she has concerned to store password that used to be login and make them secure, the email she is sending to the correct address and text in the email is grammatically correct, information that she is submitting online does not violate the security concerns, etc.
The right answer is D).
If your computer is running slowly, which of the following is most likely to solve the problem?
Scanning, cleaning, and optimizing your hard drive
Checking to make sure all of the computer’s cords are plugged in
Reentering the serial numbers of the software programs the computer is running
Searching the hard drive for missing DLL files
Answer:
Purchase Anti-virus
Explanation:
Delete old files.
clear your temp
update to a ssd
Answer:
A. Scanning, cleaning and optimizing your hard drive
Explanation:
IM A DIFFERENT BREEED!
also... when your computer is slow, you usually scan and clean your computer files and delete unnecessary files you don't need so that your computer can run more smoothly and faster.
In these ones all your finding is the mean(average).
When comparing programming languages, what is commonly used by all software developers?
elements, controls, and variables
variables, loops, and nouns
elements, commands, and variables
variable, loops, and tags
Answer:
The answer to this question is given below in the explanation section
Explanation:
This question is about when comparing programming languages, what is commonly used by all software developers? The correct answer is elements, controls, and variables.
elements, controls, and variables
Every programmer used these three elements, controls, and variables. for example elements are buttons, link, input field etc, controls are loops and decision statements and variables are to store value for some object. so, elements, controls, and variables are most commonly used by all software developers.
variables, loops, and nouns (false)this is not correct, because nouns are not most commonly used by all developers. However, it is noted that a noun is used mostly in the requirement elicitation phase for capturing objects.
elements, commands, and variables (false)commands are not most commonly used by developers, commands are used by those programmers who are doing console programming.
variable, loops, and tag (false)tag are used in HTML language but it is not most commonly used by the developers.
Describe the first time you met one of your friends.
Suppose you have a word processing application on your smartphone, your tablet, and your laptop. You are at home, and you need to write a paper for a class. A [_____] would be easiest to use for writing your paper.
the words you can use are
desktop
tablet
smartphone
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The correct option for the fill-in-blank of this question is desktop.
Because you can easily use the word application using the desktop. You can also use tablet and smartphone for writing a paper on a word processing application. But you cannot comfortably and easily write the paper as compared to using the desktop for writing the paper. Furthermore, some wordprocessing features are limited in tablets and in smartphones as compared to desktop wordprocessing application.
So a desktop wordprocessor would be easiest to use for writing your paper.
Answer:
It's "Laptop"
Explanation:
[Edhesive] 4.1 Code Practice
Write a program that asks the user to enter a name, and then prints Nice to meet you NAME. Your program should repeat these steps until the user inputs Nope.
Sample Run:
Please enter a name: (Nope to end) Antonio
Nice to meet you Antonio
Please enter a name: (Nope to end) Jonathan
Nice to meet you Jonathan
Please enter a name: (Nope to end) Tyler
Nice to meet you Tyler
Please enter a name: (Nope to end) Brianne
Nice to meet you Brianne
Please enter a name: (Nope to end) Nope
Answer:
name = input("Enter a name, type Nope to end loop: ")
while (name != "Nope"):
print("Nice to meet you " + name)
name = input("Enter a name, type Nope to end loop: ")
print("Done")
Explanation:
It works on python/Edhesive perfectly!
Following are the Python program to an input string value and print value with the message:
Program Explanation:
Defining the while loop that runs condition is true.Defining a variable "user_name" that uses the input method to input value from the user-end.After input value the if conditional block is used that checks input value is equal to "Nope" when the condition is true it uses the break keyword and print values with the message.Program:
while True:#defining loop that runs when condition is true
user_name = input('Enter your name:(Nope to end): ')#defining a variable user_name that input value
if user_name == 'Nope':#defining if block that checks input string value equal to Nope
break#using break keyword
print('Nice to meet you {}'.format(user_name))#print message
Output:
Please find the attachment.
Learn more:
brainly.com/question/18502091