Answer:
1,2,3,4,5
Explanation:
Answer:
improve their effectiveness
showcase the presenter's creativity
increase audience attention
make boring presentations interesting
provide visual cues
Explanation:
Which statement describes what happens when a user configures No Automatic Filtering in Junk Mail Options?
No messages will ever be blocked from the user’s mailbox.
Messages can still be blocked at the server level.
Messages cannot be blocked at the network firewall.
Most obvious spam messages will still reach the client computer.
Answer:
The last one
Explanation I think it is D because all of the other answers are saying what happen if you filter it.
The majority of obvious spam messages will continue to reach the client's computer. The correct answer is D.
What is junk mail?Email spam, also known as junk email, spam mail, or plainly spam, is an unrequested email sent in mass. The name is derived from a Monty Programming languages sketch that includes the name of a canned pork product is mentioned. Spam is pervasive, unavoidable, and monotonous.
Back out of the Folder or any message folders users are viewing to access the Mailboxes view. The Junk folder is located beneath the Drafts and Sent directories in the Mailboxes view.
The Junk Email Filter settings can be changed in the Junk E-mail Dialogue box. Click Junk in the Deactivate group on the Home tab, and then click Garbage E-mail Options.
Most obvious spam messages will still reach the client's computer. Then the correct option is D.
More about the junk mail link is given below.
https://brainly.com/question/28354330
#SPJ6
anyone have good websites to cure boredom
Answer:
cool math if its not blocked
Explanation:
Which option represents a deliverable?
spiral method
project creep
rapid prototyping
requirements document
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The correct option for this question is requirements document.
The term deliverable in the project represents any quantifiable good and service that must be delivered to completion to the project. The requirement document represents deliverable. In the requirement document, you can specifically represent deliverables that would be achieved upon completion of the project.
However, other options are not correct because the spiral method is a type of software development methodology for developing software projects and rapid prototyping is a type of prototyping to build a prototype of a product rapidly to make requirements clear and concise to enter into the market. While project creep in project management refers to changes, continuous or uncontrolled growth in a project’s scope, at any point after the project begins
mark of athena ar answers
Answer:
true
Explanation:
thats how I understood it
Lisa intends to use the Hide command on a column in her spreadsheet. How are the cells in this column affected by this command?
A) The data in all of the cells is deleted.
B) The data in only some of the cells is deleted.
C) The cells can no longer be referenced in functions or formulas.
D) The cells can still be referenced in functions or formulas.
Answer:
D
Explanation:
Answer:
D Because it's all about the functions
How can you ensure that messages from a trusted email address will not be identified as spam or junk email?
Add the message to the Safe Senders list.
Add the message to the Safe Recipients list.
O Right-click the message, and select Move to the Saved folder.
O Right-click the message, and select Move to the Archive folder.
Answer: A, Add the Message to the safe senders list.
Explanation: I just did the assignment.
Answer:
Answer shown in image below
Or
*Add message to the Safe Senders List*
Explanation:
Edge 2021
Plz click the Thanks button!
<Jayla>
Which is the faster cpu and why?
Answer:
Core i7 unlocked
Explanation:
This is known to not only be faster but also more stable.
Answer:
Intel Core i7 Unlocked has more GHz (gigahertz) along with an Octa core.
Explanation:
More gigahertz means your CPU would run all applications at a faster speed and be more efficient. Not only that, an octa core is much more efficient than a quad core. (Octa meaning 8 while Quad being 4).
URGENT PLEASE HELP!!!!!
Which rule of composition gives an illusion of movement or context?
A. the rule of odds
B. the rule of three
C. the rule of space
D. simplification
Answer:
The answer is NOT D. simplification. I took the test and got this wrong, my next guess of what it could be would be C. the rule of space. I hope that this was helpful to you! :)
Jack follows the steps below.
Step 1: He clicks the Design tab on the ribbon.
Step 2: He navigates to the Document Formatting command group.
Step 3: He clicks the Themes icon.
Step 4: He clicks the Office Theme option in the themes gallery.
Which task is Jack trying to do?
A. He is sharing the Office theme with others.
B. He is creating a new theme for his document.
C. He is saving an existing theme to the themes gallery.
D. He is applying an existing theme to his document.
Answer:
D is my answer to this question.
Answer:
D, He is applying an existing theme to his document.
Explanation:
got the answer correct on edge.
Which of the following are personality tests? Check all of the boxes that apply.
A- the big five personality test
B- the Myers-Briggs Type Indicator
C- the Rorschach inkblot test
the answers are:
- the big five personality test
- the myers-briggs type indicator
- the rorscharch inkblot test
(basically all of them)
The following are personality tests:
the big five personality test
the Myers-Briggs Type Indicator
the Rorschach inkblot test
Thus option (a), (b), and (c) are correct.
What is the personality test?The personality test is a means of assessing or evaluating human personality. The most of the tools for evaluating the personality are of subjective self-report questionnaire measures or reports from life records such as grade scales.
The big five theory of personality suggests that personality is composed of five broad dimensions: extroversion, agreeableness, conscientiousness, neuroticism, and openness.
The following are personality tests: the big five personality test; the Myers-Briggs Type Indicator and the Rorschach inkblot test. Therefore, option (a), (b), and (c) are correct.
Learn more about personality test here:
https://brainly.com/question/29501903
#SPJ5
Describe in 2-4 sentences how you would select a function.
Explanation:
You would call the capacity from the primary. At that point execute your own factors to it. When the capacity is in the cell, you can copy and after that paste it into another cell to do a similar capacity for that diverse scope of cells.
Write a program that prompts the user to enter the number of students and each student's name and score, and finally displays the student with the highest score (display the student's name and score). Also calculate the average score and indicate by how much the highest score differs from the average. Use a while loop.
Answer:
Follows are the code to this question:
#include <iostream>//defining header file
using namespace std;
int main()//defining main method
{
int n,s=0,j,number,h=-1;//defining integer variables
string name, nh;//defining string variable
float avg;//defining float variable
cout<<"Enter the number of students: ";//print message
cin>>n;//input value in n
while (j< n) //defining loop for input value
{
getline(cin, name);//use getline method to input value
cout<<"Enter the student name: ";//print message
getline(cin, name);//use getline method to input value
cout<<"Enter the score: ";//print message
cin>>number;//input number value
s+= number;//add numbers into s variable
if(h<number)//defining if block that checks h is greater then number
{
nh= name;//use string variable nh to store name value
h= number;//use integer variable h to store name value
}
j++;//increment j value by 1
}
cout<<name<<endl;//print highest name value
cout<<"score: "<<h<<endl;//print highest score value
avg = (float)s/(float)n;//calculate the average value
cout<<"Average is: "<<avg<<endl;//print average value
cout<<"Difference: "<<(h-avg)<<endl;//print average difference
return 0;
}
Output:
please find attached file.
Explanation:
In the above code, inside the main method four integer variable "n,s,j, number, and h", two string variable "name and nh" and one float variable "avg" is defined.
In the next step, n is defined that is used for the input value. and Inside the main method, a while loop is defined, which uses the "getline" method to the input value, and use s variable to add all numbers.
In the next step, if a block is defined that checks "h" is greater than the number value if the condition is true, it will print the highest value of the input variable and its average difference.
What key allows you to move to the next line
Answer:
enter
Explanation:
press tab or enter and you will get what u need
Would X-ray waves carry a lot of energy? And do they have a high frequency?
Answer:
X-rays are very high frequency waves, and carry a lot of energy. They will pass through most substances, and this makes them useful in medicine and industry to see inside things.
Which should be addressed by stakeholders when reviewing the problem statement? Select all that apply.
All possible outcomes have been thoroughly researched and rejected.
The problem as they see it has been addressed.
The solution proposed will meet their needs.
The needs of their colleagues are being met.
All issues and constraints have been identified.
The statement that should be addressed by stakeholders when reviewing the problem statement are the problem as they see it has been addressed, the solution proposed will meet their needs and all issues and constraints have been identified.
What are the elements of an effective problem statement?An effective problem statement includes the description of the problem and the method that will be used to solve the problem.
The problem as they see it has been addressed, the solution proposed will meet their needs and all issues and constraints have been identified are the statement that should be addressed by stakeholders when reviewing the problem statement.
Therefore, B, C and E are the correct options.
Learn more about problem statement here:
https://brainly.com/question/11657822
#SPJ1
What is the term used to describe the basic unit of data passed from one computer to another?
message
packet
package
transmission
Answer:
transmission
Explanation:
I WILL GIVE BRAINLIEST TO WHO ANSWERS FIRST AND CORRECTLY.
Use this option to view your presentation as your audience will see it.
File menu
Play button
Slide Show button
Tools menu
Answer:
It's either slide show button or the play button
Explanation:
Nancy would like to configure an automatic response for all emails received while she is out of the office tomorrow, during business hours only. What should she do?
Configure an automatic reply.
Configure an automatic reply and select the Only send during this time range option.
Configure an automatic reply for both internal and external senders.
Configure an automatic reply rule.
Nancy would like to configure her emails for automatic response and should select only send during the range option. Hence option B is correct.
What is the range option?A range option is an option that can be found in the outlook mail client and includes the settings or the configuration of the emails that would be send during the time which has been selected by the user.
As he has set the automatic reply response in the mail client while she is out during business hours will save her time.
Find out more information about the emails.
brainly.com/question/14236855
Which of these functions may be used with positional arguments? Select four options
•AVERAGE
•COUNTIF
•COUNT
•SUM
•MAX
Answer:
its A
C
D
E
Explanation:
Answer:
Average
Count
Sum
Max
on edg 2021
Explanation:
3.4 Code Practice: Question 2
Answer:
n = float(input("Enter the Numerator: "))
d = float (input("Enter the Denominator: "))
if (d != 0):
print ("Decimal: " + str(n/d))
else:
print("Error - cannot divide by zero.")
The individual pages on a website should maintain a consistent layout and style from one page to the next.
True or False
Answer:
I think they should.
Explanation:
It would be very confusing for people using the website to go from one page to the next and have the two pages look completely different.
Answer:
True
Explanation:
Help please I’m on a time limit
Answer:
4, Im pretty sure. but not 100%
Explanation:
Ask the user to enter a number. Display whether the number is odd or even. computer science answers
Can you please give me the answers like how you can write it in a python program
Answer:
Write a C program to check whether a number is even or odd using if else. How to check whether a number is even or odd using if else in C program. C Program to input a number from user and check whether the given number is even or odd. Logic to check even and odd number using if...else in C programming.
Explanation:
Which of these would a computer scientist study, in addition to computers?
graphics
biology
math
grammar
Answer:
Its either math or biology but probably math.
Answer:
likely math (edge)
Explanation:
A computer scientist isn’t exactly the one you might be thinking of. They don’t study biology or chemicals. They study computers.
In programming, you need to know math to code many things, like math operators, or like writing an equation for programming how fast your game character moves/jumps or how projectiles shoot from a weapon. Pretty pog.
It could be graphics but I bet on math.
Repl.it Assignment 4.1.3 (Max and Min)
Please help me
I will give brainliest and a like
concept about borderless classroom because of technology
Answer:
With Borderless Classroom Technology, every student remains a part of the classroom. ... That is to be 'as simple as a light switch' and as effective in lighting the learning experience as educators focused on students, not on technology." Borderless Classroom Technology is an extension of that philosophy.
HAS TO BE RIGHT- GOOGLE TOLD ME
By providing education increasingly interesting as well as collaborative, technologies can indeed benefit pupils. A further explanation is provided below.
Borderless Classroom means allowing the instructor to communicate individual screen among students, learners are encouraged from whatever place to take part throughout the lesson, gives educators and administrators with individual conversation skills, improved administration in classrooms.Enables the instructor to watch what pupils were doing on their dashboards gadgets instantaneously.
Learn more about borderless classrooms here:
https://brainly.com/question/7526791
so can u please follow my new ig acc i just started it yesterday its called stunnerspamz
Answer:
why are you advertising in brainly?????
Computer coding is unnecessary for aspiring multimedia designers to learn. True or False? HURRY!!!
Answer:
True
Explanation:
PLEASE HELP!! WILL MARK BRAINLIEST!!~~~Brody is concerned that he is going to exceed the quota set for his mailbox. Where should he go to access the Mailbox Cleanup tools?
Backstage view
Inbox
Deleted Items Folder
Outlook Web App
Answer:
d
Explanation:
Outlook Web App will provide access to the Mailbox Cleanup tools. The correct answer is D.
What is Outlook?On the Menus tab, you'll notice a Tools menu next to the Actions menu on the toolbar. Click Tools to open the Tools drop-down menu, which includes options such as Mailing All Folders, Cancel All, Com Add-Ins, Disable Items, Perspective Options, and so on.
These include any emails you send back and forth using replies.
The process of cleaning up is shown below.
Choose an email conversation that you want to clean up.Choose Delete > Clean Up Conversation by clicking the arrow next to it. You can also purge entire Folders.If prompted, choose Clean Up to confirm.
Access to the Mailbox Cleanup tools will be Outlook Web App. Then the correct option is D.
More about the Outlook link is given below.
https://brainly.com/question/17457799
#SPJ6
this device can be used to type documents,send email,browse the internet,handle the spreadsheets,do presentations,play games,and more?
Answer:
im pretty a computer
Explanation:
A computer is an electronic device that manipulates information, or data. It has the ability to store, retrieve, and process data. You may already know that you can use a computer to type documents, send email, play games, and browse the Web.