Who plays Breath of the Wild?

Answers

Answer 1

Answer:

me

Explanation:

Answer 2

yea not me

Explanation:


Related Questions

A group of 8 bits of information produces a ____.

Answers

Answer: Byte

Explanation: Eight bits constitute a byte.

What do you mean by this statement,
“Life is not a grand harmony, Conflict exist. We must learn how to live with it, use it constructive and minimize it’s destructive aspect”.

Answers

Answer with Explanation:

The statement above means that life is not always about happy moments; rather, it also includes unhappy times which teaches us many lessons. People should be aware of this, so that they'd also look at the good side of unhappy/sad moments in life. For example, when a beloved person dies, it is natural for one to cry. However, it is also important to stand up after that experience and become even stronger. This is a constructive way of moving on with life. A destructive aspect would be, not being able to move on and being stuck on one's death without thinking about the future anymore.

The best explanation of the given statement is:

If there is mutual understanding, then this would help in the conflict resolution to minimize the destructive impact.

What is Mutual Understanding?

This refers to the ability of a person or multiple persons to be able to have different points of view but also to understand that one view is NOT absolute.

With this in mind, we can note that because life is not a grand harmony, there will always be conflict, but if there is mutual understanding, then this would help in the conflict resolution to minimize the destructive impact.

Read more about conflict resolution here:

https://brainly.com/question/2267795

Id like for you to write it as a regular paper. Put yourself in Bill's shoes. You are starting a business at home, any
ess. What technology will you need to work from home or have a business from home? What do you need to ope
0.100

Answers

For a home-based business, Bill will need a reliable internet connection, a computer or laptop, communication tools, and business software and applications to ensure productivity and connectivity.

What are the advantages of haveing these equipment?

Reliable Internet Connection

A high-speed and reliable internet connection is crucial for conducting business activities online, such as communication, research, and accessing cloud-based services. Bill should ensure he has a suitable internet plan and equipment to meet his business needs.

Computer or Laptop

Having a reliable computer or laptop is fundamental for various business tasks, including creating documents, managing finances, and communicating with clients. Bill should consider the processing power, storage capacity, and software requirements based on his specific business requirements.

Communication Tools

Efficient communication is vital for a home-based business. Bill should consider utilizing tools like email, instant messaging platforms, and video conferencing software to communicate with clients, collaborators, and suppliers. This ensures seamless communication and maintains professional connections.

Learn more about working from home:
https://brainly.com/question/29107751
#SPJ1

List the name and purpose of twenty (20) different C++ commands.

Answers

Answer:

Drivers and help a new program to run

Which statement is false?Structures are derived data types.Each structure definition must end with a semicolon.A structure can contain an instance of itself.Structures may not be compared using operators == and !=.

Answers

Answer:

A structure can contain an instance of itself

Explanation:

The statement which is known to be false out of the option given is that a structure may comprise or contain an instance of itself. Because to my knowledge, variables of diverse type are always most likely to attributed and contain by a structure.

It is worthy of note that object that aren't similar are utilize in constructing a structure. Another true statement about structure is that a semicolon usually end it's explanation.

Write a Python program which asks a user for a word and performs letters manipulation. If the word is empty, the program should print the message empty! Otherwise, if the word has between one and four letters (inclusive), the program should print the reversed word. Otherwise, the program should print a word made of the first two and the last two letters of the original word. Your program should match the sample output as displayed below.

Sample Output
Enter a word:
Result: empty!

Enter a word: bio
Result: oib

Enter a word: memory
Result: mery

Answers

Answer:

The program is as follows:

word = input("Enter a word: ")

if word:

   if len(word) <= 4:

       word = word[::-1]

   else:

       word = word[0]+word[1]+word[-2]+word[-1]

   print(word)

else:

   print('empty!')

Explanation:

This gets input for word from the user

word = input("Enter a word: ")

If input is not empty

if word:

This checks if the length is less than or equal to 4 characters

   if len(word) <= 4:

If yes, this reverses the word

       word = word[::-1]

If otherwise,

   else:

This gets the first, second, second to last two characters

       word = word[0]+word[1]+word[-2]+word[-1]

Print the new string

   print(word)

Print empty, if input is empty

else:

   print('empty!')

In cryptography, the concept known as the web of trust (WOT) allows compatible systems to establish what?


a method to destroy data in which the magnetic field of a storage drive is removed or reduced


part of an encryption protocol that calculates and compares data on either end


the necessary authenticity between a public key and its owner


the process of securing a computer system by reducing its vulnerabilities

Answers

In cryptography, the concept known as the web of trust (WOT) allows compatible systems to establish option C: the necessary authenticity between a public key and its owner.

How does PGP make use of the idea of trust?

PGP relies on a Web of trust model rather than a single certificate authority to authenticate digital certificates. According to the Web of Trust, if you accept that my digital certificate verifies my identity, you must also accept all the other digital certificates that I accept.

Hence, To establish the validity of the connection between a public key and its owner, PGP, GnuPG, and other OpenPGP-compatible systems use the cryptographic concept of a web of trust.

Learn more about cryptography from

https://brainly.com/question/88001
#SPJ1

the function of anOR gate can best be described as a gate which provides an output of 1 only when

Answers

Answer:

Following are the program to this question:

#include <iostream>//defining header file

using namespace std;

void OR_gate()//defining a method OR_gate

{

bool a,b;//defining bool vaiable

cin>>a>>b;//input value

if(a or b)//use if block to check condition

{

cout<<"1";//print message

}

}

int main()//defining main method

{

OR_gate();//calling method OR_gate  

return 0;

}

Output:

0

1

1

Explanation:

In the above program, a method "OR_gate" is declared, and inside the method two bool variable "a and b" is defined, which input the value from the user end.

In the next step, an if block is defined, that uses the or gate to check input value and print the value that is equal to 1, and inside the main method, it call the "OR_gate" method.

When a computer is suffering from a virus, you can use a compiler to help remove the virus. True or false?

Answers

True I think because it helps right?

It is true that when a computer is suffering from a virus, you can use a compiler to help remove the virus.

What is a compiler?

Compilers are specialized software tools that convert the source code of one programming language into machine code, bytecode, or another programming language.

Usually, the source code is created in a high-level, readable language for humans, such Java or C++.

Programs that convert source code from a high-level programming language to a low-level programming language (such as assembly language, object code, or machine code) in order to produce an executable program are commonly referred to as "compilers."

The compiler, as we well know, transforms high-level source code into low-level code.

Low-level code is then executed on the target system. You can use a compiler to assist in virus removal when a computer is infected.

Thus, the given statement is true.

For more details regarding a compiler, visit:

https://brainly.com/question/28232020

#SPJ2

Which menu option allows you to change the display to close-up, single, or multiple pages?

Question 3 options:

Insert


Edit


View


File

Answers

The menu option that allows you to change the display to close-up, single, or multiple pages is view. The correct option is C.

What is menu option?

A menu is a set of options presented to a computer application user to assist them in finding information or performing a function.

Menus are common in graphical user interfaces (GUIs) provided by operating systems such as Windows and MacOS. They're also used in speech recognition and on websites and web pages on the internet.

The View menu, located at the top of the screen, contains the following commands: Sheets: Upon selection, a cascade menu appears, displaying a list of all sheets used in the document, sorted from left to right.

View is the menu option that allows you to switch between close-up, single, and multiple page displays.

Thus, the correct option is C.

For more details regarding menu option, visit:

https://brainly.com/question/3507017

#SPJ1

compare and contrast the various write strategy used in cache technologies

Answers

Answer:

The abiotic factors are non-living factors in an ecosystem that affect the organisms and their lifestyle. In this case, low temperature and low humidity lead to the conditions that are unfavorable for birds. So, the birds must adapt to these factors by hiding the food in the caches.

Explanation:

I am having trouble figuring out how to write a code to complete this assignment in Python:

Implement the build_dictionary() function to build a word frequency dictionary from a list of words.

Ex: If the words list is:

["hey", "hi", "Mark", "hi", "mark"]
the dictionary returned from calling build_dictionary(words) is:

{'hey': 1, 'hi': 2, 'Mark': 1, 'mark': 1}
Ex: If the words list is:

["zyBooks", "now", "zyBooks", "later", "zyBooks", "forever"]
the dictionary returned from calling build_dictionary(words) is:

{'zyBooks': 3, 'now': 1, 'later': 1, 'forever': 1}
The main code builds the word list from an input string, calls build_dictionary() to build the dictionary, and displays the dictionary sorted by key value.

Ex: If the input is:

hey hi Mark hi mark
the output is:

Mark: 1
hey: 1
hi: 2
mark: 1

This is what I have been given:

# The words parameter is a list of strings.
def build_dictionary(words):
# The frequencies dictionary will be built with your code below.
# Each key is a word string and the corresponding value is an integer
# indicating that word's frequency.

'''your code goes here'''

# The following code asks for input, splits the input into a word list,
# calls build_dictionary(), and displays the contents sorted by key.
if __name__ == '__main__':
words = input().split()
your_dictionary = build_dictionary(words)
sorted_keys = sorted(your_dictionary.keys())
for key in sorted_keys:
print(key + ': ' + str(your_dictionary[key]))

Answers

Answer:

def build_dictionary(words):

   dic = {}

   for word in words:

       dic [word] =words.count(word)

   return(dic)

if __name__ == '__main__':

   words = input().split()

   your_dictionary = build_dictionary(words)

   sorted_keys = sorted(your_dictionary.keys())

   for key in sorted_keys:

       print(key + ': ' + str(your_dictionary[key]))

Explanation:

use the count function cause the initial input is a list.

Following are the Python program code to count the list of word in the dictionary:

Python Program to count list of words:

def build_dictionary(words):#defining the method build_dictionary that takes words as a parameter

   f = {}#defining a variable dictionary as a f

   for i in words:#defining a loop that checks dictionary value

       if (i in f):#defining an if block that check dictionary value

           f[i] += 1#addining 1 in the value of list

       else:#defining else block

           f[i] = 1#holding 1 in the list

   return f#return list value

if __name__ == '__main__':

   words = input().split()#defining a variable words that input value and splits its value

   your_dictionary = build_dictionary(words)#defining a variable your_dictionary that adds value in build_dictionary

   sorted_keys = sorted(your_dictionary.keys())#defining variable sorted_keys that sort value your_dictionary as key

   for k in sorted_keys:#defining loop that counts number of value

       print(k + ': ' + str(your_dictionary[k]))#defining print method that prints its value

Output:

Please find the attached file.

Program Explanation:

Defining the method "build_dictionary" that takes one parameter "words" in the method. Inside this method, a dictionary variable named "f" is declared in which a for loop is declared. Inside this, a conditional block is declared that counts words' value.In the next step, a constructor is declared, in which words variable is declared that input value and splits its value.In the next step, "your_dictionary" is declared that that adds value to build_dictionary, and use stored method is used that sort its value and store its value in "sorted_keys".After that, a for loop is declared that counts the "sorted_keys" dictionary value and prints its counted list value.

Find out more information about the dictionary here:

brainly.com/question/1199071

I am having trouble figuring out how to write a code to complete this assignment in Python:Implement

This represents a group of Book values as a list (named books). We can then dig through this list for useful information and calculations by calling the methods we're going to implement. class Library: Define the Library class. • def __init__(self): Library constructor. Create the only instance variable, a list named books, and initialize it to an empty list. This means that we can only create an empty Library and then add items to it later on.

Answers

Answer:

class Library:      def __init__(self):        self.books = [] lib1 = Library()lib1.books.append("Biology") lib1.books.append("Python Programming Cookbook")

Explanation:

The solution code is written in Python 3.

Firstly, we can create a Library class with one constructor (Line 2). This constructor won't take any input parameter value. There is only one instance variable, books, in the class (Line 3). This instance variable is an empty list.

To test our class, we can create an object lib1 (Line 5).  Next use that object to add the book item to the books list in the object (Line 6-8).  

State three modules in HansaWorld and briefly describe what each is used for. (6)
2. With an example, explain what settings are used for. (3)
3. What is Personal Desktop and why is it good to use? Mention two ways in which an
entry can be deleted from the personal desktop. (6)
4. Describe how you invalidate a record in HansaWorld (3)
5. Briefly explain what specification, paste special and report windows are used for. (6)
6. How many reports can you have on the screen at once? How many reports does
HansaWorld have? (4)
7. Describe any two views of the Calendar and how you can open them (4)
8. Describe three (3) ways in which records can be attached to Mails. (6)
9. Describe the basic SALES PROCESS where there is no stock involved and how the
same is implemented in HansaWorld. (12)

Answers

1. We can see here that the three modules in HansaWorld and their brief descriptions:

AccountingInventoryCRM

2. We can deduce that settings are actually used in HansaWorld for used for configuring the system to meet specific business requirements.

What is HansaWorld?

It is important for us to understand what HansaWorld is all about. We can see here that HansaWorld is actually known to be an enterprise resource planning (ERP) system that provides integrated software solutions for businesses.

3. Personal Desktop is actually known to be a feature in HansaWorld. It allows users to create a personalized workspace within the system.

It can help users to increase their productivity and efficiency.

4. To actually invalidate a record in HansaWorld, there steps to take.

5. We can deduce here that specification, paste special and report windows help users to actually manage data and generate report.

6. There are factors that play in in determining the amount of reports generated.

7. The Calendar on HansaWorld is used to view upcoming events. There is the Day View and there is the Month View.

8. We can see that in attaching records, HansaWorld allows you to:

Drag and drop.Insert linkUse the Mail Merge Function

Learn more about report on https://brainly.com/question/26177190

#SPJ1

What are the key constructs of a G&T Value Delivery objective?

Excelling in customer mindshare
Delivering business value
Delivering an innovative solution
Aligning to contractual commitments

Answers

Explanation:

delivering business value

I am trying to figure out pseudocode for displaying a person's BMI based on BMI = weight x 703 / height x height.

Answers

hello ill help you i lone wolf

Marissa has recently accepted a job as a transcriptionist that will require several hours of typing a day. What are two pieces of advice you would give her to make sure her workstation is set up ergonomically? You need to answer the prompt in full to receive it.

You need to have at least five complete sentences.

You need to use proper grammar, capitalization, and punctuation.

Answers

Additionally, Marissa can take frequent breaks to stretch her hands, arms, and neck and perform exercises to prevent stiffness.

What is transcriptionist?

The field of transcription offers a variety of prospects and good income. An advanced transcriptionist makes between $25 and $30 per hour, while a transcriptionist normally makes around $19.02 per hour. If you labour 2.5 hours every day for 24 days, you could easily earn an average of $1141.2 per month at this pace.

requirements for transcribers:

diploma from high school.

There can be a need for a degree, an associate's degree, or other training.

knowledge of Express Scribe, and other programmes.

a quick typing speed and superior reading comprehension.

High professional standards and a strong work ethic.

An excellent second job for someone with additional time is transcription. Despite the fact that it's crucial to only take on tasks you can do in the allotted amount of time.

Read more about transcriptionist:

https://brainly.com/question/25703686

#SPJ1

Create an empty list called resps. Using the list percent_rain, for each percent, if it is above 90, add the string ‘Bring an umbrella.’ to resps, otherwise if it is above 80, add the string ‘Good for the flowers?’ to resps, otherwise if it is above 50, add the string ‘Watch out for clouds!’ to resps, otherwise, add the string ‘Nice day!’ to resps. Note: if you’re sure you’ve got the problem right but it doesn’t pass, then check that you’ve matched up the strings exactly.

Answers

Answer:

resps = []

percent_rain = [77, 45, 92, 83]

for percent in percent_rain:

   if percent > 90:

       resps.append("Bring an umbrella.")

   elif percent > 80:

       resps.append("Good for the flowers?")                  

   elif percent > 50:

       resps.append("Watch out for clouds!")

   else:

       resps.append("Nice day!")

       

for r in resps:    

   print(r)

Explanation:

*The code is in Python.

Create an empty list called resps

Initialize a list called percent_rain with some values

Create a for loop that iterates through the percent_rain. Check each value in the percent_rain and add the required strings to the resps using append method

Create another for loop that iterates throgh the resps and print the values so that you can see if your program is correct or not

Answer:

resps = []

for i in percent_rain:

   if i > 90:

       resps.append("Bring an umbrella.")

   elif i >80:

       resps.append("Good for the flowers?")                    

   elif i > 50:

       resps.append("Watch out for clouds!")

   else:

       resps.append("Nice day!")

Explanation:

Following Aristotle,man by nature is a political animal,justify the above claim in the light of the Russian invasion of Ukraine

Answers

Following Aristotle, man by nature is a political animal using the claim in the light of the Russian invasion of Ukraine is that:

Aristotle stated that State is natural due to the fact that nature has not made man to be in a self-sufficient state. But Man has a lot of -different type of needs  which they want them to be fulfilled. Russian need and Ukraine need differs and as such, man is fighting to satisfy their needs.

What is the quote about?

In his Politics, Aristotle was  known to be a man who believed man to be a "political animal" due to the fact that he is a social creature that is said to have the power of speech and also one that has moral reasoning:

He sate that man is a lover of war and as such, Aristotle stated that State is natural due to the fact that nature has not made man to be in a self-sufficient state. But Man has a lot of -different type of needs  which they want them to be fulfilled. Russian need and Ukraine need differs and as such, man is fighting to satisfy their needs.

Learn more about Aristotle from

https://brainly.com/question/24994054

#SPJ1

Anne needs to record the results of a business project that requires the analysis of varying or multiple changes. Which graph or chart can she use in a spreadsheet?
Anne can use
to record the results of a business project in a spreadsheet. It measures immediate or minute
of an event and plots the points using two axes.

Answers

Anne can use SCATTER PLOT GRAPH to record the results of a business project in a spreadsheet. It measures immediate or minute VALUES of an event and plots the points using two axes.

What is a scatter plot graph used for?

A person can be able to determine the link or correlation between two variables using a scatter plot. If  you attempting to determine whether the combination of your two variables might mean anything, you can be able to find out if there might be a relationship between your data points by plotting a scattergram with them.

The graphs that show the association between two variables in a data set are called scatter plots. It displays data points either on a Cartesian system or a two-dimensional plane.

Therefore, in the case of Anne, when two data sets need to be compared to one another to determine whether there is a relationship, a scatter analysis is used. She can plot the data points on a graph, you get a scattering of points that represent the relationship.

Learn more about scatter plot graph from

https://brainly.com/question/27874837


#SPJ1

See full question below

Anne needs to record the results of a science project that requires the analysis of varying or multiple changes. What graph or chart can she use in a spreadsheet?

Anne can use _______ (line graph , column chart , scatter plot graph) to record the results of a science project in a spreadsheet. It measures immediate or minute ______ (values , changes , sequences) of an event and plots the points using two axes.

Which of the statements is correct about Smart Guides and Rulers?

Answers

Answer:

Hey! here's ur answer

Explanation:

Specify these angles in the Smart Guides preferences. When you move an object or artboard, use the Smart Guides to align the selected object or artboard to other objects or artboards. The alignment is based on the geometry of objects and artboards. Guides appear as the object approaches the edge or center point of other objects.

-Uh, hope this helps!

what is flow chart for which purpose flowchart is use in programmimg

Answers

A flowchart is a visual representation of a process or algorithm. It uses symbols and arrows to show the steps and the flow of the process. In programming, flowcharts are often used to design and document the logic of a program before it is written in code. They can help programmers visualize the structure of the program and identify potential problems or inefficiencies. Flowcharts can also be useful for explaining the logic of a program to others who may not be familiar with the code..

The are two schools of ____________ are Symmetry and Asymmetry.

Answers

The two schools of design that encompass symmetry and asymmetry are known as symmetrical design and asymmetrical design.

Symmetrical design is characterized by the balanced distribution of visual elements on either side of a central axis. It follows a mirror-like reflection, where the elements on one side are replicated on the other side, creating a sense of equilibrium and harmony.

Symmetrical designs often evoke a sense of formality, stability, and order.

On the other hand, asymmetrical design embraces a more dynamic and informal approach. It involves the intentional placement of visual elements in an unbalanced manner, without strict adherence to a central axis.

Asymmetrical designs strive for a sense of visual interest and tension through the careful juxtaposition of elements with varying sizes, shapes, colors, and textures.

They create a more energetic and vibrant visual experience.

Both symmetrical and asymmetrical design approaches have their merits and are employed in various contexts. Symmetry is often used in formal settings, such as architecture, classical art, and traditional graphic design, to convey a sense of elegance and tradition.

Asymmetry, on the other hand, is commonly found in contemporary design, modern art, and advertising, where it adds a sense of dynamism and creativity.

In conclusion, the schools of symmetry and asymmetry represent distinct design approaches, with symmetrical design emphasizing balance and order, while asymmetrical design embraces a more dynamic and unbalanced aesthetic.

For more such questions on symmetry,click on

https://brainly.com/question/31547649

#SPJ8

he is trying to find information on the internet first he navigated to a search engine entered the keywords database administrator and clicked on search the results did not show what it was looking for​

Answers

Answer:

b

Explanation:

b

what number am i. i am less than 10 i am not a multiple of 2 i am a coposite

Answers

Answer: 9 is less than 10, it is odd (not a multiple of 2), and it is composite (since it has factors other than 1 and itself, namely 3). Therefore, the answer is 9.

The answer is nine because if you write all the numbers that are under ten you can see that 2, 4, 6, and, 8 are multiples of 2 so you can’t do that so then you gotta see which ones are composite which is nine because 1, 5, and 7 don’t have any more factors than for example 7 and 1.

Help plz

Which of the following statements are true about cyberbullying:

1. Cyberbullying uses electronic communication to bully a person.

11. Cyberbullying is a crime in many states.

III. Instances of cyberbullying do not affect the digital footprint of the victim.

IV. Cyberbullying hurts real people even though we can't always see their reactions
online.

I and IV

O ll and III

O 1, 11, and IV

All of the above

Answers

1 and IV are the are the right answers because cyber bullying is online and it hurts real people but you can’t see there reaction.

The following statements are true about cyberbullying: Cyberbullying uses electronic communication to bully a person. Cyberbullying hurts real people even though we can't always see their reactions.

What is cyberbullying?

The use of mobile phones, instant messaging, e-mail or social networking sites to intimidate or harass someone is known as cyberbullying.

The correct answer is "I and IV." Statement I is true because cyberbullying is defined as using electronic communication to bully a person.

Statement IV is also true because even though we may not be able to see the victim's reactions online, cyberbullying can still have real-life consequences and can hurt the victim emotionally or mentally.

Statement II is false because cyberbullying is a crime in many states, and statement III is also false because instances of cyberbullying can affect the victim's digital footprint.

Hence, the correct statements are "I and IV".

To learn more about cyberbullying click here:

https://brainly.com/question/8142675

#SPJ2

COMPUTER STUDIES
31.
Which of the following information
ages lasted between the end of
Bronze age and the spread of Roman
Empire?
A.
B.
C.
D.
E.
Electronic
Industrial
Iron
Mechanical
Stone

Answers

Answer:

iron

Explanation:

Exercise 8-3 Encapsulate

fruit = "banana"
count = 0
for char in fruit:
if char == "a":
count += 1
print(count)


This code takes the word "banana" and counts the number of "a"s. Modify this code so that it will count any letter the user wants in a string that they input. For example, if the user entered "How now brown cow" as the string, and asked to count the w's, the program would say 4.

Put the code in a function that takes two parameters-- the text and the letter to be searched for. Your header will look like def count_letters(p, let) This function will return the number of occurrences of the letter.
Use a main() function to get the phrase and the letter from the user and pass them to the count_letters(p,let) function. Store the returned letter count in a variable. Print "there are x occurrences of y in thephrase" in this function.
Screen capture of input box to enter numbeer 1

Answers

Answer:

python

Explanation:

def count_letters(p, let):

   count = 0

   for char in p:

       if char == let:

           count += 1

   print(f"There are {count} occurrences of {let} in the phrase {p}")

def main():

   the_phrase = input("What phrase to analyze?\n")

   the_letter = input("What letter to count?\n")

   count_letters(the_phrase, the_letter)

main()

2 complete fsk system 2.1 fsk receiver your first assignment for this lab is to complete the fsk receiver by combining the matched filter from lab 3 with the detector described above. 2.1.1 assignment

Answers

The signal is time-reversed and conjugated in the matching filter. It shifts the matching filter to be causal.

The findings in Receiver Operating Characteristics show that as SNR rises, the likelihood of detection rises as well. Using a filter tailored to the signal, you can increase the SNR at the receiver for a deterministic signal in white Gaussian noise. The signal is time-reversed and conjugated in the matching filter. It shifts the matching filter to be causal.

You can alter the matched filter's properties, including the coefficients and window for spectrum weighting, by using phased.MatchedFilter. You can select the coverage area and coefficient sampling rate when using spectrum weighting; additional attributes can be specified for Taylor, Chebyshev, and Kaiser windows.

Know more about filter here:

https://brainly.com/question/8721538

#SPJ4

Witch of the following are true of email communications when compared to
Phone or face to face communications

Answers

The statements which are true of e-mail communications when compared to phone or face-to-face communications is that communications via e-mail are:

more difficult to determine tone or inflection.easily shared.absent of visual cues.

What is communication?

Communication can be defined as a strategic process which involves the transfer of information (messages) from one person (sender) to another (recipient or receiver), especially through the use of semiotics, symbols, signs and network channel.

What is an e-mail?

An e-mail is an abbreviation for electronic mail and it can be defined as a software application (program) that is designed and developed to enable users exchange (send and receive) both texts and multimedia messages (electronic messages) over the Internet.

In this context, we can reasonably infer and logically deduce that in an electronic mail (e-mail) it would be more difficult to determine a person's tone or inflection in comparison with phone or face-to-face communications.

Read more on e-mail here: brainly.com/question/15291965

#SPJ1

Complete Question:

Which of the following are true of e-mail communications when compared to phone or face-to-face communications?

Communications via e-mail are _____.

absent of visual cues

more precise and accurate

limited in efficiency

less likely to be saved

easily shared

more difficult to determine tone or inflection

Other Questions
what kind of biomolecule is the sucrose used during the fermentation experiment how do I change the 5 3/8 into a improper fraction The difference in charge between the inside and the outside of the nerve fiber when the nerve is at rest is ____ mv. Lin and Kal's ages add up to 41 Lin is 5 years older than Kal. Use the equation from the to find their ages. Based on the description that follows, how many potential insider threat indicator(s) are displayed? a colleague is playful and charming, consistently wins performance awards, and is occasionally aggressive in trying to access classified information What involves one independent variable and one dependent variable? group of answer choices simple linear regression single variable linear regression multiple regression could be simple or multiple linear regression Help please Brainiest answer to whoever is first explain how u know what 1/3 of 2/5 is Describe Cabeza de Vaca's journey from Florida to New Spain. What effect did his journey have on the future exploration of New Mexico? The square root of 5 , has a decimal expansion that does not end or repeat. To which set of numbers does it belong? A. rational B. NaturalC. Integer D. Irrational a user swipes her smartphone across a tag on a poster to obtain showtimes for a movie she wants to see later that evening. what wireless technology transmitted the data? bluetooth nfc z-wave ant A worker's_is now taking place at the wild cane factory What is an ethical vacuum?A. When technology has created something for which we do not have an ethical framework yet.B. A philosophy that ethics cannot exist in a vacuum, but need specific examples to be valid.C. The situation of being without ethics.D. A scientific idea that lacks ethics. What is the surface area of the right cone below?A. 68 units2B. 54 77 unitsC. 52 unitsD. 1047 units Match the bacterial genetic element with the correct characteristica. chromosome-- nonessential genesb.plasmid-- linear, single-stranded DNAc.chromosome-- linear, double stranded DNAd.plasmid--nonessential genes pettit company purchased heavy equipment by giving the seller a $30,000 cash down payment and a 5-year interest-bearing note for the $170,000 balance of the price. compute pettit's book basis and tax basis in the equipment. Convert (1 1000 0110 0011)2 from its binary expansion to its hexadecimal expansion 13. Find the sum and the product of (100 0111) and (111 0111 2. Express your answers as a binary expansion phineas has 3 times as many baseball cards as ferb.together,they have a total of 228 baseball cards.how many baseball cards does ferb have? find the exact length of the curve y=23(x21)3/2,1x3. Diego said that some plants can be grown from stem cuttings, but Jay disagrees. Who do you agree with and why?