Answer:
list1=[]
n=10
for i in range(n):
z=int(input("Enter number:"))
list1.append(z)
print(list1)
PRI – The connection between mobile tower and radio tower
PRL – List of Radio frequencies
Baseband – The chip that controls the radio frequency waves within the device.
Explanation:
PRI :
• Stands for Primary rate interface.
• Consists of information pertaining to ID number, network code, country code, etc, to enable the user to connect to the right network
• Gets updated from time to time.
PRL:
• Stands for Preferred Roaming List :
• Contains list of radio frequencies from various geographic location
• Used in CDMA network
• Contains information pertaining to service provider id, radio bands, sub bands, etc.
Baseband:
• Controls GSM and 3G Phone RF waves
Answer:
punctuation_chars = ["'", '"', ",", ".", "!", ":", ";", '#', '@']
def strip_punctuation(strWord):
for charPunct in punctuation_chars:
strWord = strWord.replace(charPunct, "")
return strWord
Explanation:
The function is defined with a single argument.
A for loop is ran to check each character of the the word.
If a punction mark is present as a character in the word, it is removed.
The same word is returned but without the punctuation marks.
1. A [disk cleanup] utility searches for and removes unnecessary files.
2. [Back-up] - allows users to copy selected files or an entire hard disk to another storage medium.
3. [Firefox] is a web browser- a platform, which is used to browse the information via the internet.
Answer:
Object-Oriented DBMS.
Explanation:
Like classes in Object oriented programming Object-Oriented DBMS is can store objects.It follows an Object oriented data model with the properties of classes and the properties of Object oriented programming also.Objects can be in the form of complex data types or different data types.