Answer: Caller ID
Explanation: Caller ID is a free service that lets you know who is calling by displaying their number on your phone. If the caller's contact information is stored in your phone, you see their name as well.
Answer:
b) About 100 words or 3-4 fines in the transcription tool.
Explanation:
Transcription tools are the software that helps in converting the audio or speeches into texts. Traditionally, the process of transcription was done manually. With teh advancement of technologies and software, transcription software is developed. They help in transcribing the audios and videos into texts. These are useful in many sectors of business, medical, and legal areas.
One of the rules of transcription involves the division of long speeches into paragraphs. It is advised to divide the paragraph into about 100 words or 3-4 lines.
Answer:
The solution code is written in Python.
- def removeAdoptedDog(dog_dictionary, adopted_dog_names):
- for x in adopted_dog_names:
- del dog_dictionary[x]
-
- return dog_dictionary
-
- dog_dictionary = {
- "Charlie": "Male",
- "Max" : "Male",
- "Bella" : "Female",
- "Ruby": "Female",
- "Toby": "Male",
- "Coco": "Female",
- "Teddy": "Male"
- }
-
- print(dog_dictionary)
-
- adopted_dog_names = {"Ruby", "Teddy"}
-
- print(removeAdoptedDog(dog_dictionary, adopted_dog_names))
Explanation:
Firstly, let's create a function <em>removeAdoptedDog() </em>takes two arguments, <em>dog_dictionary </em>& <em>adopted_dog_names</em> (Line 1)
Within the function, we can use a for-loop to traverse through the <em>adopted_dog_names</em> list and use the individual dog name as the key to remove the adopted dog from <em>dog_dictionary </em>(Line 3). To remove a key from a dictionary, we can use the keyword del.
Next return the updated dog_dictionary (Line 5).
Let's test our function by simply putting some sample records on the <em>dog_dictionary</em> (Line 7 -15) and two dog names to the <em>adopted_dog_names list</em> (Line 19).
Call the function <em>removeAdoptedDog() </em>by<em> </em>passing the <em>dog_dictionary and adopted_dog_names </em>as arguments. The display result will show the key represented by the<em> adopted_dog_names</em> have been removed from the <em>dog_dictionary </em>(Line 21).
Answer:
couple.py
def couple(s1,s2):
newlist = []
for i in range(len(s1)):
newlist.append([s1[i],s2[i]])
return newlist
s1=[1,2,3]
s2=[4,5,6]
print(couple(s1,s2))
enum.py
def couple(s1,s2):
newlist = []
for i in range(len(s1)):
newlist.append([s1[i],s2[i]])
return newlist
def enumerate(s,start=0):
number_Array=[ i for i in range(start,start+len(s))]
return couple(number_Array,s)
s=[6,1,'a']
print(enumerate(s))
print(enumerate('five',5))
Explanation:
The contains criteria filter requires the records displayed to have the specified text string anywhere. Thecontains operator is used to perform case-sensitive matching regardless of location in strings.
The begins with criteria filter on the other hand requires the records displayed to start with the specified text string