I think the best one is voice recognition keyboards.
Would perfect work there
Mark as brainliest
Solution :
class Employee:
#Define the
#constructor.
def __
__(
, ID_number,
, email):
#Set the values of
#the data members of the class.
= name
_number = ID_number
= salary
self.email_address = email
#Define the function
#make_employee_dict().
def make_employee_dict(list_names, list_ID, list_salary, list_email):
#Define the dictionary
#to store the results.
employee_dict = {}
#Store the length
#of the list.
list_len = len(list_ID)
#Run the loop to
#traverse the list.
for i in range(list_len):
#Access the lists to
#get the required details.
name = list_names[i]
id_num = list_ID[i]
salary = list_salary[i]
email = list_email[i]
#Define the employee
#object and store
#it in the dictionary.
employee_dict[id_num] = Employee(name, id_num, salary, email)
#Return the
#resultant dictionary.
return employee_dict
Answer:
Following are the missing code to this question:
break;
Explanation:
In the given python code, a method "retry" is defined, that accepts two-variable, that is "operation and attempts" in its parameters, inside the method a for loop is defined that uses the n variable to holds attempt values and define the conditional statement.
- Inside if block, it checks if the operation value is true, it will print a successful attempts values and break the condition, otherwise it will goto else block.
- In the else block, it will print failed attempts values.
Answer:
64 Kbps
Explanation:
ISDN stands for Integrated Services Digital Network. It makes use of two types of channels:
B type : which is used for carrying data/voice
D type : which carries control and signalling information.
ISDN supports two different service levels:
- Basic Rate Interface (BRI) - home and small users
- Primary Rate Interface(PRI) - larger enterprise scenarios
Both BRI and PRI make use of set of B and D type channels for data transfer.
Each B channel or Bearer channel has a throughput of 64 Kbps whereas D channel has a throughput of 16 Kbps.
Answer:
A
Explanation:
I saw it on another website and got it right