the answer to the question is a Embedded ( I just learned this like a month ago so im pretty sure it right :))
Answer:
- RFID tags in shopping mall.
- Browsing the internet.
- Mobile phone calls
Explanation:
Radio frequency identification tag (RFID) in a device that holds personal information of a user electromagnetically. it is used in shopping mall, installed in the shopper's phone or a card, in which all payments are done automatically.
The internet is a global network of devices. With a subscription to a internet service provider, a user can surf the internet at any time of the day.
Mobile phones are portable devices, procured by a user for on-the-go calls. This cell phones have databases with information of cell tower connections, for easy switching for flexible but quality call adaptation.
Answer:
Option B is the correct answer for the above question.
Explanation:
- The data warehouse is a collection of large data or a database that includes historical and operational or current data. This database can be used to make the decisions for the prospects of the organization.
- The above question asked about to select the database which can collect the historical and operational data from various source. That type of database is a data warehouse that is described above. Hence option B is correct while the other is not because:-
- Option a states about data model which is used to define the database structure.
- Option c states about the relational database which is used to collect only current data.
- Option d states about the DBMS which is used to manage the relational database.
Answer:
Explanation:
The following Python code asks the user for inputs for the name to remove and add in the set. It then tries to remove the given name from the list. If it fails it prints out to the user saying that the name does not exist. If it does exist then it removes the name and adds the new name. Finally it prints out the current list of names.
male_names = {'oliver', 'Declan', 'Henry'}
name_to_remove = input("Enter name to remove: ")
name_to_add = input("Enter name to add: ")
try:
male_names.remove(name_to_remove)
male_names.add(name_to_add)
except:
print("Name that you are trying to remove does not exist")
print("List of Names: ")
print(male_names)