You receive an email from an impressive-sounding stranger, Professor Alexander Rothschild Renard III, president of the American Institute for Scientific Political Statesmen. He urges you to vote for his presidential candidate choice. This social media red flag is known as pomposity inanity superstition fanaticism

Answers

Answer 1

Answer:

pomposity

Explanation:

Pomposity is a form of social media red flag that centers on individuals or users employing flamboyant captions, words, or catchy phrases to describe something or someone in a way that appears more significant than the reality.

In this case, given that the email is from an "email from an impressive-sounding stranger" means Professor Alexander is using flamboyant words to persuade me to vote for his presidential candidate in a way that is more substantial than the reality.

Hence, in this case, the right answer is POMPOSITY

Answer 2

Answer:

A

Explanation:


Related Questions

Write a loop that inputs words until the user enters STOP. After each input, the program should number each entry and print in this format:

#1: You entered _____
When STOP is entered, the total number of words entered should be printed in this format:

All done. __ words entered.

Sample Run
Please enter the next word: cat
#1: You entered cat
Please enter the next word: iguana
#2: You entered iguana
Please enter the next word: zebra
#3: You entered zebra
Please enter the next word: dolphin
#4: You entered dolphin
Please enter the next word: STOP
All done. 4 words entered.

IN PYTHON PLEASEEE

Answers

I hope this helps you.

Following are the Python program to input string value and count its value.

Program Explanation:

Defining a method words.Inside a method, an integer variable "c" and string variable "word" is declared, and a while loop is defined.Inside the loop, we input the string value and define a conditional statement is declared that checks word value not equal to STOP.In this, it counts total input values and prints the value with the message.At the last, we call the method.

Program:

def words():#defining a method words

   c=0#defining an integer variable c

   word="empty"#defining a string variable

   while (word != "STOP"):#defining a loop that runs when word value is not equal to STOP

       word = input("Please enter the next word: ")#using word that inputs value

       if word != "STOP":#defining if block that checks word value not equal to STOP

           c+=1#incrementing c value

       print("#"+str(c)+": You entered "+ word)#print input value with message

   print( "All done "+ str(c) +" words entered")#print total count of input value

words()#calling method

Output:

Please find the attached file

Learn more:

brainly.com/question/18750495

what are computer crimes?​

Answers

Answer:

Hacking and exploiting

Explanation:

These are crimes

HELP PLEASE!! WILL MARK FIRST AND MOST RELIABLE ANSWER BRAINLIEST!!~~~~What is the primary difference between sort and filter?

Filter only shows the messages that match a particular criterion.
Filter has more options than sort.
Sort only shows the messages that match a particular criterion.
Sort has more options than filter.

Answers

Answer:

A

Explanation:

Example: when scrolling through a list of shows, if you filter for action shows, only shows that match the action description would appear

Answer:

yes it is A

Explanation:

What is better in everybodys opinion. AMD or Intel?

Answers

Answer:

Intel is more for work and such, while AMD is foucsed on gamers. I use AMD because I play many games, but it really depends on what you use your computer for.

Explanation:

it depends Explanation:AMD wins the CPU war overall right now, but depending on your needs, an Intel processor could still be the better choice. If you want the best in overclocking, gaming or software support, or if you want productivity performance without buying a discrete GPU, Team Blue has the advantage. But if you want the best balance of price and performance in the Intel vs AMD lineup, Team Red deserves your money.

what are the weakness of a computer somebody plzz tell me​

Answers

Answer:

The computer, in spite of its strengths and the denials of its missionaries, does have a number of weaknesses. These can be seen in three areas: first, the machine itself, second, the people who serve it and, third, its output.

Question 2 of 5

Which detail from the story is part of the rising action?

O A. Mr. White is sorry he ever wished on the monkey's paw.

O B. Mr. White wishes his son were back in the cemetery.

C. The author establishes that the story begins on a cold, wet night.

O D. Mr. White pulls the monkey's paw from the fire.

SUBMIT

Answers

Answer:

D. Mr. White pulls the monkey's paw from the fire.

Explanation:

Rising action refers to the events in the stories that bring suspense and interest. It includes the crucial decisions and important events that leads towards the climax of the narrative. Rising actions focuses on the flaws that the characters possesses and create a space of tension.  

In the story, "The Monkey's Paw" the rising action is observed when Mr. White pulls the monkey's paw from the fire to make the third wise respectively.

Answer:

Mr. White pulls the monkey's paw from the fire.

Explanation:

On the Design tab, which group allows you to select a different data set for a chart?
O Data
O Chart Legends
O Type
Chart Styles

Answers

Answer

A.Data

Trust me

Answer:

A. Data

Explanation:

got it right

Question # 6
Fill in the Blank
In your program to calculate the slope, supply the missing word.
The program is incomplete.
# Find the slope of the user's two points
# Get the points
XÔne =
("Enter the x-coordinate of the first point: ")

Answers

Answer:

Input

Explanation:

The input() function is used to get input from the user (the user's answer).

The goal of an audio codec is


to make an audio file that sounds good and is as small as possible for use with certain applications.

to make an audio file with the highest amplitude while making sure the decibels are not degraded.

to preserve the original sound quality regardless of conversions that affect sampling rate.

to upload audio files from your computer to your mobile devices.

Answers

Answer:

to preserve the original sound quality regardless of conversions that affect sampling rate.

Explanation:

An audio codec can be defined as a codec that helps to cipher or decipher an audio file. It is a computer application that compact or extend an audio file without hampering with the original sound quality.

The main object of an audio codec is to compress a high-quality audio file into a limited size without distorting the quality of sound.

Therefore, the correct answer is option C.

Answer:

C   to preserve the original sound quality regardless of conversions that affect sampling rate.

Explanation:

IM JUST BUILT DIFFRENT

how come when i go to get a answer and watch a video, it never shows me a video and it just sits there and it wont answer any question

Answers

What you mean? Explain.

PLZ HELP NEEDS TO BE ANSWERED ASAP THANK YOU



Please describe what this assignment is about

Write a program to input 6 numbers. After each number is input, print the biggest of the numbers entered so far.

Sample Run
Enter a number: 1

Largest: 1

Enter a number: 3

Largest: 3

Enter a number: 4

Largest: 4

Enter a number: 9

Largest: 9

Enter a number: 3

Largest: 9

Enter a number: 5

Largest: 9

Answers

In python:

lst = ([])

largest = 0

while len(lst) != 6:

   user_number = int(input("Enter a number: "))

   lst.append(user_number)

   for i in lst:

       if i > largest:

           largest = i

   print(largest)

I hope this helps

Answer:

largest = None

for i in range(0,6):

 d = int(input("Enter a number: "))

 if not largest or d > largest:

   largest = d

 print("Largest: " + str(largest))

Explanation:

Worked for me!!! :)

Software that directly interacts with users to do specific tasks is known as which type of software?
A. application software
B. booting software
C. distribution software
D. system software

Answers

Answer:

A Application Software

Explanation:

What is the output of this line of code: print("hello" * 3)?

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

This is the code statement of the python language. When you will run this line of code it will print the word "hello" three times on a line without any space between the word "hello"as given below:

hellohellohello

The print() function of the python language print the string given in the double quotation as the first parameter. The second parameter multiple of the first parameter.

Answer:

hellohellohello will be the output.

Explanation:

This is a code of Python language. Print function in python is used to print any thing. You can print anything as it is by writing it in quotes(""). For example, print("Hello World") will give the output Hello World. You can also print the sum of addition using print() function by writing it without quotes(""). For example, print(2+2) will give the output 4 and print(2*2) will give the output 4 and print(2/2) will give the output 1 and print(2-2) will give the output 0, and so on.

So, in this it is written print("hello" * 3). So, first it will print hello as it is because, it is in quotes, and after that it will print it 3 more time because, in code there is written *3, so it printed hello 3 times. In image below you can see input and output.

How do i start a war on the Internet

Answers

Answer:

give an unpopular opinion to a bunch of angry people

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.

Answers

Answer:

1.headings and subheadings

2.manually

3.options

Answer: 1.Headings and Subheadings

2.Manually

3.Options

Explanation: Just did it on e2020.

HELP

Through photographs, we can represent concepts and ideas. From the following list of concepts, choose 10.


You should display the concept or idea in some way within your photograph. For example, if one concept was "Blue," you might photograph the color blue in the sky, a blue item of clothing, a person with a sad expression (which is sometimes described as "having the blues"), and so on. Be creative!


Happy

Pink

Chair

Music

Cold

Looking out

Vegetable

School

Smile

Love

Shadow

Up

Newness

Water

Red

Season

Door/Gate

Hand

Drink

Words

Treasure

Oldness

Natural

Beauty

Little

Part Two


Select your five favorite photographs to create a presentation on a computer. For each photograph, identify the concept that you are presenting and how you have shown this concept in the photograph.

Answers

Answer:

You need to pick 10 concepts from the list and take/pick a picture you think shows the concept. You then pick 5 of your favorites from the 10 and put them on a slideshow, explaining what concept it is and how it shows it.

Explanation:

So if I did vegetable, I would take a good picture of a carrot. Then, if I picked it as one of my five favorites, I would put it on a presentation and say, "This displays the concept of vegetables. My picture shows this concept because carrots are a type of vegetable."

What does the Merge and Center feature do? Check all that apply.

O adds borders to a group of cells in a range
O centers an image in the middle of a worksheet
O combines multiple cells into a single cell
O centers the alignment of text in the cell
The answer is the last 2 this question just isn't on brainly so I thought i'd add it

Answers

Answer:

O combines multiple cells into a single cell

O centers the alignment of text in the cell

Explanation:

wanted the points lol

Answer:

3

4

Explanation:

who goes to belle place middle and is in 7th grade on hear​

Answers

Answer:

Not me but thx for the free points lol

Explanation:

1) Write a program that prints the sum of the first ten positive integers, 1+2+...+10
I don’t know how to write the code for python

Answers

total = 0

for i in range(1, 11):

   total += i

print(total)

BRAINLIEST How come when I run out of answers on one Brainly account and I go to the other I'm already out of my daily limit of answers? I'm trying to catch up in my courses, I'll do brainliest if you give me a solution to this, I really need to fix my grades.

Answers

Answer:

You just need to skip by watching a video. Its not that long, be patient its only 30 seconds

Explanation:

Answer:

.

Explanation:

I mean if you don't want to wait for adds you could always ask someone for extra help. I am a sophomore and I have all A's in my subjects but I ask my teachers for help when I need it. You could email anyone for help to. I can also help you if you are a sophomore or below.

How would you describe your experiences with social media, either for yourself or for people you know? Good, bad, or in the middle? Why?

Answers

Answer: I would say it’s both good and bad. Firstly, it’s good because you’re able to communicate with people from all over the world, whether it’s a friend or family member. But on the other hand it’s bad too, because there are manny dangers of being online, such as having your personal information stolen, or being cyber-bullied. So while it is good for communication purposes, it does have it’s downsides.

20
Select the correct answer.
Part of social health means that you make positive contributions to your community,
ОА.
True
OB
False
Reset
Next

Answers

Answer:

true

Explanation:

because my 8 ball said so

Answer:

True

Explanation:

how major is the technology problem in the United States? Why is it such a big problem?

Answers

Answer:

Explanation:

the problem is predators can get to children easier through the internet

What type of light or lighting technique did Dennis decide to use

Answers

Answer:

Three point lighting.

Explanation:

List 5 different options after high school

Answers

Answer:

Work

Gap year

The military

Trade and certificate programs

College

Pls help!!!!!!!!!!!!

Answers

Answer:

i am 100% sure it is (B)

Explanation:

To delete offensive or irrelevant posts  

What is an Action Button?

Answers

Answer:

Action buttons are built-in shapes you can add to a presentation and set to link to another slide, play a sound, or perform a similar action.

Explanation:

9
10
1
2
3
4
5
Which is a valid velocity reading for an object?
45 m/s
45 m/s north
O m/s south
0 m/s

Answers

Answer:

Maybe 45 m/s north I think I'm wrong

Answer:45 ms north

Explanation:

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


CAN SOMEONE CODE THIS PLZ!

Answers

In python:

while True:

   name = input("Please enter a name: ")

   if name != "Nope":

       print("Nice to meet you {}".format(name))

   else:

       break

Following are the program to the given question:

Program Explanation:

Defining a header file.Defining a main method.Inside the method a string variable "name" and an integer variable "n" is declared.In the next step, a print message and define a loop that input and check its value.To check the input value a conditional statement is defined that check input value "Nope", if it's it break the loop, otherwise it print the value and input another value.

Program:

#include <iostream>//header file

using namespace std;

int main()//main method

{

   string name;//defining string variable

   int n=1;//defining an integer variable

   cout<<"Please enter a name: (Nope to end)";//print message

   while(n==1)//defining a while loop to that inputs and check the value

   {

       cin>>name;//input name value

       if(name=="Nope")//use if that check name=="Nope"

       {

           n=0;//initilze n=0

           break;//break the loop

       }

       else//else block

       {

           cout<<"Nice to meet you "<<name<<endl;//print input value with message

           cout<<"Please enter a name: (Nope to end)";//print message

       }

   }

   return 0;

}

Output:

Please find the attachment file.

Learn more:

brainly.com/question/18129358

This feature allows you to adjust your view to see the lower or upper part of a document.

A.Command

B.Ribbon

C.Scroll bar

D.Tab

Answers

Answer:

C. scroll bar

Explanation:

Its what you use to scroll up and down on documents to see different parts of it

Other Questions
Consider a system of a cliff diver and the Earth. The gravitational potential energy of the system decreases by 28,000 J as the diver drops to the water from a height of 40.0 m. Determine her weight in newtons. Answer this please, what is B and C Use the excerpt to answer the question.Opals come in a variety of colors, and they range from opaque to transparent. The most desirable opals are known as the precious opals. They have a special iridescent quality. As you move the opal under light, it shows a spectrum of colors.Which words provide the best context clues for the meaning of iridescent?(1 point)"variety, light, spectrum of colors""transparent, variety, opals""opaque, quality, desirable""opals, special, precious" Which type of reaction is Mg + S MgS?polymerizationsynthesisreplacementdecomposition What is m Tyler and his children went into a bakery and will buy cupcakes and donuts. He mustbuy a maximum of 11 cupcakes and donuts altogether. Write an inequality that wouldrepresent the possible values for the number of cupcakes purchased, c, and thenumber of donuts purchased, d. What is the definition of weathering? What are the coordinates of the image of the point (1-, 2) under a dilation of 3 with the origin What type of school does the term higher education refer to?A. elementary schools B. middle schoolsC. high schoolsD. graduate schools 1. What is the largest source of energy used in the U.S.? estimated answer for 3 3/7 x 1 3/4 simplify and type a whole number A particular fruit's weights are normally distributed, with a mean of 720 grams and a standard deviation of 38 grams. The heaviest 19% of fruits weigh more than how many grams? Give your answer to the nearest gram. I have ti find the two solutions to this equation. This problem deals with imaginary numbers i [tex] {3x}^{2} - x + 4 = 0[/tex] 2. Briefly explain what each section of the PSAT/NMSQT is like according to the'Inside the Test" web page. (6 points)Reading Test:Writing and Language Test:Math Test:Please help Plz help! :DWhat element is as hard as magnesium? Which geographic feature contributed to the beginning of farming communities?arid land that relied on winter rainsa low-lying floodplain that had rich soila swampland with lots of waterfowla snowy mountain with a lot of snowmelt Nola Potter earns a salary of $1,200 a month and a commission of 7.5% on all sales over $4,000. This month her sales were $21,400. Find her total earnings for the month. 10. Why do you think the father dislikes talking about his own family?I The colonies at jamestown and plymouth were sponsored by the? pLeAsE hElP mE !!!!!!!!!!!!!!!!!!!!!!!