Select all that apply.

Which of the following do not increase the clarity of a written message?

1 using long words and sentences to impress your reader
2 using all capital letters to draw attention to your message
3 reviewing before you send
4 organizing the message around one clear main idea
5 thinking about the purpose of the message before you start writing

Answers

Answer 1
1 and 2 since it says does not
Answer 2

Answer:

1. Using long words and sentences to impress your reader

2. Using all capital letters to draw attention to your message

Explanation:

When we're writing a message, we want to make sure that the person we are sending it to will understand it. It's important that we think about the purpose of the message before we start writing it, organize the message around one clear main idea (the purpose), and review it before sending it so that we can correct any mistakes we could've made.

Using long words and sentences and using all capital letters is counterproductive. It's hard to keep track of what we are reading when the words and sentences are too long, so it's better to use shorter, more understandable sentences. We are used to most of the letters being written in the lower case, which is how it should be. Capital letters are distracting, which makes the message harder to read.


Related Questions

PLEASE HELP WITH THIS "PROJECT"
Your users are young children learning their arithmetic facts. The program will give them a choice of practicing adding or multiplying.

You will use two lists of numbers.

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

If the user chooses adding, you will ask them to add the first number from each list. Tell them if they are right or wrong. If they are wrong, tell them the correct answer.
Then ask them to add the second number in each list and so on.

If the user chooses multiplying, then do similar steps but with multiplying.

Whichever operation the user chooses, they will answer 12 questions.

Write your program and test it on a sibling, friend, or fellow student.

Errors : Think about the types of errors a user can make. Add at least one kind of error handling to your program.

Answers

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

operation = input("Are you adding or multiplying? (a/m)")

i = 0

if operation == "a":

   while i < len(numA):

       try:

           answer = int(input("{} + {} = ".format(numA[i], numB[i])))

           if answer == numA[i] + numB[i]:

               print("You're correct!")

           else:

               print("You're wrong! The correct answer is {}".format(numA[i] + numB[i]))

           i+=1

       except ValueError:

           print("Please enter a number!")

if operation == "m":

   while i < len(numB):

       try:

           answer = int(input("{} * {} = ".format(numA[i], numB[i])))

           if answer == numA[i]*numB[i]:

               print("You're correct!")

           else:

               print("You're wrong! The correct answer is {}".format(numA[i]*numB[i]))

           i+=1

       except ValueError:

           print("Please enter a number!")

The type of error handling we perform is ValueError handling. Instead of getting an exception when the user enters a letter when they try to answer a math problem, we tell the user to enter a number.

I hope this helps!

What is wrong in this python code import turtle bot = turtle.Turtle step = (50) turnAngle = (90) bot.Color("blue") bot.Begin_fill() bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.End_fill()

Answers

Answer:

The "Turtle" is a method and should be declared with parenthesis and every other method in the code (except the Turtle() ) should begin with lowercase letters like right, forward and begin_fill. The python file should not be saved as turtle.py to avoid import error.

Explanation:

The python turtle module is a graphical programming package created to introduce programming to children. It has several classes and methods to manipulate objects on the screen.

import turtle  

bot = turtle.Turtle()  

step =(50)  

turnAngle =90  

bot.color("blue")  

bot.begin_fill()  

bot.forward(step)  

bot.right(turnAngle)  

bot.forward(step)  

bot.right(turnAngle)  

bot.forward(step)  

bot.right(turnAngle)  

bot.forward(step)  

bot.right(turnAngle)  

bot.end_fill()

What is the most efficient
form of transportation we
have?

Answers

Answer:

The bicycle is a tremendously efficient means of transportation. In fact cycling is more efficient than any other method of travel--including walking! The one billion bicycles in the world are a testament to its effectiveness

Explanation:

The bicycle is a tremendously efficient means of transportation. In fact cycling is more efficient than any other method of travel--including walking! The one billion bicycles in the world are a testament to its effectiveness.

if you give an actual answer I'll give brainliest​

Answers

Answer:it would be  200 and 470  in that box

Explanation:

The answer will be 200 and 470 in the box
Have a good day stay safe !
Can u mark me as brainlies

Justify the following statement: “Some Americans’ sedentary lifestyles contribute to their poor health.”

Answers

It is essential that people are active in their lives to fulfill that basic biological need. This will allow blood flow to increase, which is beneficial for health. In addition, it can release healthy chemicals into the brain, which is beneficial for mood, energy, and well-being.

Answer:

Since the average American will spend 24 hours watching television per week, it is safe to say that they suffer from a lack of movement and exercise. This, in turn, will lead more Americans to be overweight and more likely to suffer from serious health problems! :)

Explanation:

difference between logical errors and syntax errors​

Answers

Since computer programs must follow strict syntax to compile correctly, any aspects of the code that do not conform to the syntax of the programming language will produce a syntax error. A logic error (or logical error) is a 'bug' or mistake in a program's source code that results in incorrect or unexpected behaviour.

What do you do when you have computer problems? Check all that apply. PLEASE HELP

Answers

Answer:

I ask my parents or call someone

Can you put the answers to the problem it would be a lot easier for me


And I would look up how to fix the problem on my own before paying someone....

~Föllòw gixannaa on tìktòk and then comment done~
(I will give brainliest answer if you tell me your user)

Answers

Answer:

my user is shut.upnow

Explanation:

lol

Answer:

I don't have tik tock sorry if I did I would have followed u

Explanation:

:D

Read this passage from The Phantom Tollbooth. There was once a boy named Milo who didn't know what to do with himself--not just sometimes, but always. When he was in school he longed to be out, and when he was out he longed to be in. On the way he thought about coming home, and coming home he thought about going. Wherever he was he wished he were somewhere else, and when he got there he wondered why he'd bothered. Nothing really interested him--least of all the things that should have. The most likely reason the author begins this fantasy with a realistic element is to make the text more amusing. exciting. believable. interesting.

Answers

Answer:

I think its believable

Explanation:

^^

I think its believable

Write a program that inputs a filename from the user and prints to the terminal a report of the wages paid to the employees for the given period. The report should be in tabular format with the appropriate header. Each line should contain an employee’s name, the hours worked, and the wages paid for that period.

Answers

Answer:

filename = input("Enter file name: ")

file = open("filename", "r")

while file:

   line = file.readline()

   print(line)

file.close()

   

Explanation:

The python source code prompts the user for a file name (file extension included), opens the file and reads the content of the file to the end, one line at a time, and prints it.

Note that the file is closed at the end of the program to avoid leakage.

The program illustrates the use of file manipulation.

File manipulations are used to read from a file, and also write into it.

The program in Python, where comments are used to explain each line is as follows:

#This gets the file name

fname = input('Enter input file name: ')

#This prints the output header

print('Name\t\tHours\t\tTotal Pay')

#This iterates through each line of the file

for line in open(fname):

   #This gets the text on the current line

   cline = line.strip()

   #If the text is not empty,

   if cline != '':

       #This gets the name, wage and time worked on that line

       (name, wage, time) = cline.split()

       #This converts the time to integer

       time = int(time)

       #This calculates the total pay

       totalpay = float(wage) * time

       #This prints the employee details

       print(name,'\t\t', time,'\t\t' totalpay))

Read more about file manipulations at:

https://brainly.in/question/10211834

The part of the program where strFirst can be used or changed describes its _____.

need answers now!

Answers

Answer:

def username (strFirst, strLast):

return strFirst[0] + strLast

def username (strFirst, strLast):

return strFirst + strLast[0]

answer = username ('Tech', 'Boss')

print (answer)

Explanation:

Can you rate the answer with Braillies? please.

if you need any further assistance please follow me and stay in touch anytime. ☺️

Answer:

scope

Explanation:

the Edge definition of scope as found in the instructions is: "Scope refers to the part of the program where Python can use and change a variable. "

The question is: "The part of the program where strFirst can be used or changed describes its _____. "

strFirst is a scope because it is the part of the program where..can...use and/or change.

match the following
Group A Group B
Hub Connect different types of networks of same protocol
Router Twisted Pair cable
BNC terminator Transmission channel for WLAN
RJ 45 Connecting device within a network
Coaxial cable

Answers

Answer:

i can't understand this question.please repost it by. making it clear.

Write a function that takes the name of a file with a .csv extension (a comma-separated value file), and writes a new file that is equivalent (same name and same data) but with a .tsv extension (a tab-separated value file: like a CSV but with tabs instead of commas separating the elements of the file). Note: the character used to represent a tab is ‘\t’.

Answers

Answer:

import pandas as pd

def convert_to_tsv( csv_filename ):

   df = pd.read_csv("csv_file")

   df.to_csv("csv_filename.tsv", sep='\t')

Explanation:

The python program uses the pandas' module to read in the csv file in the function "convert_to_tsv". The file is saved as a tsv file with the pandas to_csv method and the " sep= '\t' " attribute.

what is branching in Python​

Answers

Answer:

Branching is where a program decides whether to do something or not.

what is wrong with this python code? The syntax error is on the first line.






public class Box


{

private String myDate;

private String myContents;

private String myLocation;

public class Box(String date, String contents, String location)

{

myDate = date;

myContents = contents;

myLocation = location;

}

}

Box twentyThree = new Box("2016", "medical records", "storage closet");

Box zeroSeven = new Box(“2020”, “flu shot flyers", “receptionist’s office”);

Box twentyOne = new Box(“2018”, “lotion samples”, “waiting room”)

print (Box twentyThree = 1)

print (Box zeroSeven = 2)

print (Box twentyOne = 3)

Answers

class Box:

   def __init__(self, date="", contents="", location=""):

       self.d = date

       self.c = contents

       self.l = location

   def displayBox(self):

       if self.d != "":

           print("The date is " + self.d)

       else:

           print("The date was not supplied")

       if self.c != "":

           print("The contents are " + self.c)

       else:

           print("The contents were not supplied")

       if self.l != "":

           print("The location is " + self.l)

       else:

           print("The location was not supplied")

obj = Box("2016", "medical records")

obj.displayBox()

This is how you would create a class in python. Your code seems to be part python part some other language. I hope this helps!

What is Java and Python?

Answers

Answer:

To put it simply; They're both coding languages.

Their key differences are:

Java is a compiled + interpreted Language whereas Python is an Interpreted Language

Java is statically typed whereas Python is dynamically typed

Java has a complex learning curve whereas Python is easy to learn and use

Java is a multi-platform, object-oriented, and network-centric, programming language whereas Python is a high-level object-oriented programming language.

Java takes 10 lines of code to read from a file while Python only needs 2 lines of code.

Java language uses curly braces to define the beginning and end of each function and class definition, whereas Python uses indentation to separate code into separate blocks.

In Java, multiple inheritances is partially done through interfaces, whereas Python supports both single and multiple inheritances.

Java offers limited string related functions, whereas Python offers lots of string related functions.

Java program can run on any computer or mobile device which is able to run the Java virtual machine (JVM) while Python programs need an interpreter installed on the target machine to translate Python code. Compared to Java, Python is less portable.

Java is best for Desktop GUI apps, Embed Systems, Web application services, whereas Python is excellent for scientific and numeric computing, Machine learning apps,more.

Java offers stable connectivity, while Python offers weak connectivity.

Hope this helps and have a nice day!

Answer:

They are both programming languages.

Explanation:

Java is defined as a concurrent where you can execute many statements instead of sequentially executing it, class-based and an object-oriented programming language and an independent programming language that follows the logic of Write once, Run anywhere i.e. the compiled code can run on all platforms which supports java. (according to edureka.co)

Python is defined as a high-level, interpreted, general-purpose programming language that emphasizes code readability with the use of significant indentation. (according to python.org)

Which of the following BEST describes the relationship between the Boston Marathon bombing and biometrics?

Answers

Answer:

Because of the newly developed biometric technology, the FBI was able to

quickly identify two suspects.

The blurry photos released by the FBI after the bombing prompted

researchers to improve their early biometric software.

Because biometric technology was unavailable at the time, the Boston

Marathon bomber remains at large.

The Boston Marathon bombing made researchers aware of how biometric

technology is sometimes useless and ineffective.

Explanation:


c) 64 + {40 ÷ (4-7 + 8)} - 10
please solve this ​

Answers

Answer:

62

Explanation:

4.8 Code Practice: Question 1

Instructions
Write a for loop to print the numbers 5, 10, 15 … 75 on one line.

Expected Output
5 10 15 20 25 30 35 40 45 50 55 60 65 70 75

Answers

Answer:

c = 1 # global variable

    jhjl jh

def add(): c = 1 # global variable

def add():

   print(c)

add()

   c = c + 2 # increment c by 2

   print(c)

add()

Explanation:

Answer:

for x in range(1, 16):

   print(x * 5, end=" ")

Explanation:

Hope this helps!

What involves the layering of hardware and software into a coherent computer experience?

A) PaaS

B) Cloud

C) IaaS

D) Open Systems Interconnect

Answers

Answer:

Answer is D. Open Systems Interconnext

Answer:

D open Systems Interconnect

Explanation:

Got it right on the test.

Complete answers for the test on edge 2021...

#1. a - application performance

#2. c - protocol

#3. b - virtual machines

#4. b - open systems interconnect

#5. b - post office

Got 100% on the test.

• Describe why you may have traveled to the same place many times. Why would this happen in nature?

Answers

I have traveled to the same place many times because I enjoy going there and I am very familiar with it. So in nature many animals will continue to go to the same place because of the same reasons they might know there is a supply of food there or that there is water.

A ___________ is used to terminate all Java commands

Answers

Answer:

Semicolon. If you don't terminate commands with a semicolon, you get a ton of errors.

The manipulation of data files on a computer using a file browser is
.

A
is a computer program that allows a user to manipulate files.

A
is anything that puts computer information at risk.

Errors, flaws, mistakes, failures, or problems in a software program are called
.

Software programs that can spread from one computer to another are called
.

Answers

Answer:

The answers are system management. Next, file manager. After, security threat. Second to last, bugs. Last, system management tools.

Explanation:

I did the edg 2020. mark me as brainiest please.

Answer:

1.) file management

2.) file manager

3.) security threat

4.) bugs

5.) viruses

Explanation:

did it in edge

When and how should resources be invested to close gaps between those who do and don’t use the Internet?

Answers

Answer:

To minimize the technological gap is necessary and not so hard.

Explanation:

The first form of solving it is to minimize the need to use the internet at home, so that users could save the data in some programs which could use afterward if needed, without the internet.

Access to the documents, books, and folders without the need for the internet would be the perfect solution.

The Internet has to be accessible in school so that the students who don’t have it at home could use the most of it in school. Also, the internet connection should be available in the spots around schools, cafes, libraries during the whole day.

Make the internet affordable for everyone.

I am stuck on these 2 questions. Can someone help me please?

6) Write a Python code to save the following dictionary in a CSV file.
dict = {1: "Hello", 2: "Hi", 3:"bye"]

7) Write a Python code to read the CSV file generated in the previous step
(1) to a Python dictionary.​

Answers

Answer:

My answer could not be submitted because of some signs and symbols in my solution.

So, I've added the answer and a comprehensive explanation as an attachment.

Note that the question is answered using Python programming language.

Explanation:

Lines that start with # are used to explain the program

See attachment

Challenge #3: Create a network that keeps everyone connected even if one of the lines is cut Insert as many lines as needed

Answers

Answer:

To create a redundant computer network, The star network topology is adopted.

Explanation:

Note that topology is not a type of network but a top view of how the network looks like or is connected.

To make a network redundant, interconnect every computer to one another in the network, so even when a line or an ethernet cable ( the connector) makes, there is no loss of connection.

This form of network is not recommended for large computer networks as it would result in confusion due to excess connection cables running in the network.

Which of the following would be done outside of a control room?


programming a teleprompter

cueing camera operators

switching between multiple cameras

uploading camera footage on location

Answers

Answer:

a

Explanation:

Answer:

a

Explanation:

A computer that provides special services to client computers on demand.

Answers

Answer:

A server?

Explanation:

I feel like this would be the answer but if it is multiple choice, reply with the possible answers. Hope this helps!

Which of the following is a good way to find a research topic

A. Personal Experience
B. Getting an idea from an advisor
C. Looking for the next step in the research process
D. All of the above

I need the answer quickly giving brainliest to the first person who answers

Answers

Answer:

Im bored wanna talk?

Explanation:

When a user modifies the fonts in a message and immediately sees the effect of a font change without actually selecting the font, which outlook feature is the user witnessing

Answers

Answer:

Live Preview

Explanation:

With Live Preview mode on in Microsoft Outlook while composing an email content, a user will be able to see effects of the when the mouse cursor is placed format for the text including, the text size, font of the text, the text color, which are immediately applied to the selected text to give a preview of what the effect of the editing function the cursor is hovering over can do.

Other Questions
What is the measure of angle 1?Write the answer without the degree. HELP HELP HELPWhat role does the element of motivation play in performances?A. It makes characters more relatable.B. It uses characters to enhance setting.C. It reveals characters weaknesses.D. It guides characters actions. In Act I, Scene 4 of The Diary of Anne Frank, we notice that Anne and Peter are at a particularly awkward and delicate stage in their lives. They are not quite children, but have not fully developed into adults. You can probably relate to how they feel. In this scene, Mrs. Van Daan embarrasses Peter by calling Anne his "little girlfriend." How do you think Peter really feels toward Anne? Write about a time when an adult did or said something to embarrass you. How did you react? How was your experience simliar or different from Peter and Anne's? Your answer should be about 150 words in length. Why was the Cherokee writing system important? Detyra 3: Takim me furnitorinRovena shkon me makin nga restorantite furnitori i perimeve, 9 km larg. Secili ngashokt mban shnim t gjitha udhetimet qebhen n lidhje me restorantin dhe kohene shpenzuar n takime ne menyre qeshpenzimet t'u rimbursohen dhe te dine sakohe po investojnea Vizatoni nj grafik t largess n varsi tekohs pr udhtimin e Rovenesb Ne cilen or kthehet ajo ne restorantc Pr sa koh nuk ishte ajo ne restorantArtesohun50 what is an outcome variable in an experiment?Subject; science experiment Define and give examples of greenhouse gases Can some answers this please! What were the beliefs of the Federalists led by Alexander Hamilton? Select all that apply.MultAThe Constitution gave government implied powers. bThere should be no national bank to issue and borrow money. cElected representatives should rule in the peoples name. dEducated, wealthier men should hold public office. Determine the slope of each of the ordered pairs below. A satellite was in two separate crashes. In both crashes, the satellite had the same mass. Engineers want to know about the speed and direction of the satellite after the crashes. Why would the crash affect the motion of the satellite, and which crash caused a greater change in motion for the satellite? HELP! HELP!an element with 5 protons, and 8 electrons has an atomic number of? Read the excerpt from Through the Looking Glass, by Lewis Carroll."How would you like to live in Looking-glass House, Kitty? I wonder if they'd give you milk in there? Perhaps Looking-glass milk isn't good to drinkBut oh, Kitty! now we come to the passage. You can just see a little PEEP of the passage in Looking-glass House, if you leave the door of our drawing-room wide open: and it's very like our passage as far as you can see, only you know it may be quite different on beyond. Oh, Kitty! how nice it would be if we could only get through into Looking-glass House! I'm sure it's got, oh! such beautiful things in it! Let's pretend there's a way of getting through into it, somehow, Kitty. Let's pretend the glass has got all soft like gauze, so that we can get through.Based on details in the text, which statement is the best prediction of Alices behavior?Alice will climb through the looking glass to have a look at the other room.Alice will stop to wonder about the other room and play somewhere else.Alice will eventually get bored with the other room in the looking glass.Alice will break the looking glass so she no longer has to look at the room. Book: Call of the WildBuck's hardships are the result of A. Manuel's gambling habits B. a plot set by other dogs C. his weakness D. his inability to serve E. astrological conditions how have rogers feelings changed since the beginning of the story from thank you m'am someone please help Trinitrotoluene (TNT, C7H5N3O6) undergoes complete combustion according to the following balanced chemical equation:C7H5N3O6(s)+214O2(g)7CO2(g)+32N2(g)+52H2O(l)If 25.7 g of TNT is combusted in a 0.500 L container filled with O2 at a pressure of 7.02 bar and a temperature of 298 K, calculate the maximum mass of CO2 that could be produced. Which air is driest?Air Temp 66F Dew-point 60FAir Temp 77F Dew-point 19FAir Temp 50F Dew-point 36FAir Temp 30F Dew-point 29F plsssssssssssssssssssssssssssssssssssssssss help me In paragraph 18, why does the author follow the line, People did right then, with, Oh look at the cute little pickaninny!?