Answer:
R = 0
Explanation:
The output R is the result of the function ...
R = (P+Q)·Q'
This simplifies to ...
R = PQ' + 0
R = PQ'
The result R will be the AND of P=0 and Q'=(1-1)=0. Any AND function with a 0 input will have a 0 output.
R = 0
The five type of new communication method (both wire and wireless) are:
- Social Media
- SMS Text Messaging
- Email Marketing
- Direct Email
- Voice Calling
<h3>What is a communication?</h3>
This means the act of giving, receiving and sharing of information as well as talking, writing, listening or reading.
The types of Communication includes:
- Verbal Communication: It occurs when we engage in speaking with others.
- Non-Verbal Communication: It occurs when what we speak often says more than the actual words.
- Written Communication: It occurs in an actual text or writing.
- Listening: It occurs when we pay attention to a speaker.
The wired communication involves transmission of data over a wire-based communication technology while a wireless communication involves transmission of data without the use of a cable or wire.
Read more about communication
brainly.com/question/26152499
#SPJ1
Answer:
Complete question is:
write the following decorators and apply them to a single function (applying multiple decorators to a single function):
1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”
2. The decorator will return the wrapper per usual.
3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.
4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.
5. Apply both decorators (by @ operator to greetings()).
6. Invoke the greetings() function and capture the result.
Code :
def strong_decorator(func):
def func_wrapper(name):
return "<strong>{0}</strong>".format(func(name))
return func_wrapper
def em_decorator(func):
def func_wrapper(name):
return "<em>{0}</em>".format(func(name))
return func_wrapper
@strong_decorator
@em_decorator
def Greetings(name):
return "{0}".format(name)
print(Greetings("Hello"))
Explanation:
Answer:
275 Kelvin
Explanation:
Coefficient of Performance=11


