Answer: Communications tool that are currently popular are as follow:
a) Intranet:
Intranet is known as a private hub which can be accessed by an authorized individual within an organisation. It is predominately utilized in order to drive internal collaboration and communication.
b) Private Messaging
:
Spaces that provide private messaging and also other functions are often perceived as great tool for business communication, in order to keep teams working together. It’s referred to as an effective type of communication mostly for employees and managers.
c) Discussion Forums
:
A discussion forum can be referred to as something which brings together employees and management and thus allows for open discussion on several topics. Forums are effective in order to archive organisational knowledge that can be used by individuals as a reference.
d) Internal Blogs
:
Internal blog is known as a place where an employee or an individual can share experiences and notion fast and also in an informal way.
Answer
First part:
The transmitted 8-bit sequence for ASCII character '&' with odd parity will be 00100110. Here leftmost bit is odd parity bit.
Second part:
The invalid bit sequence are option a. 01001000 and d. 11100111
Explanation:
Explanation for first part:
In odd parity, check bit of either 0 or 1 is added to the binary number as leftmost bit for making the number of 1s in binary number odd.
If there are even number of 1s present in the original number then 1 is added as leftmost bit to make total number of 1s odd.
If there are odd number of 1s present in the original number then 0 is added as leftmost bit to keep the total number of 1s odd.
Explanation for second part:
A valid odd parity bit sequence will always have odd number of 1s.
Since in option a and d, total number of 1s are 2 and 6 i.e. even number. Therefore they are invalid odd parity check bit sequences.
And since in option b and c, total number of 1s are 5 and 7 i.e. odd numbers respectively. Therefore they are valid odd parity check bit sequences.
Answer:
Answer explained below
Explanation:
I have given two approaches in implementing the solution.
1. Using the for loop, in which you have to iterate over all the elements in list 1 and check in list 2
2. Use the set intersection method. As intersection will give u the common elements. And we can get there length by using len method.
I have added the code along with the snapshot and inline comment for the ease of you to understand. Please check the methods below. You can use either of them.
METHOD-1:
********** CODE *****************
def matches(tickets,winner):
tickets = set(tickets)
winner = set(winner)
counter = 0 #To Count the common elements
for i in tickets: # Iterate over all the elements in tickets.
if i in winner: # Check the element in the winner list
counter = counter+1
return counter
METHOD -2:
********** CODE ********************
def matches(tickets, winner):
tickets = set(tickets)
winner = set(winner)
return len(tickets.intersection(winner))
Answer:
Don't forget to close any parentheses you open. Other then that everything looks fine, I just polished it a little bit
Explanation:
name = input("What is your first name? ")
print("Hello", name)
age = int(input("How old are you? "))
print("In 10 years you will be", (age+10))
print("In 20 years you will be", (age+20))
print("5 years ago you were", (age-5))
Answer:
Monday Video: 5.4.20 Section 18.5
Work due: 18.5 Worksheet
CW
Tuesday Video: 5.5.20 Section 18.6
Work due: 18.6 Worksheet
HW
Wednesday Video: 5.6.20 Section 18.7
Work due: 18.7 Classwork
CW
Thursday Video: 5.7.20 Section 18.7
Work due: 18.7 Homework
HW
Friday Video: 5.8.20 Section 18.5-18.7
Work due: Textbook page 615 #5-19 (not #13)
HWaccuracy
Explanation: