Answer: (A) Check the vendors website to see if your model of phone and OS are listed as supporting this game
Explanation:
When we downloading a game in our smartphones we should check the vendor website that whether the phone model and the operating system supported the game. The smartphone is the type of the cellular telephone that contain integrated computer.
So, different types of smartphones model contain different types of operating system support. For example, the apple is the only type of vendor which build its own type of operating system and iPhone.
Therefore, Option (A) is correct.
Answer:
OLTP(Online transaction processing) is the correct answer.
Explanation:
It is the database application that is used to catching the transection and that data or information which is related to the technology for the purpose of.
- Process that data and information which is related to the following rules of the business or company.
- It stores the data or information related to the online transaction.
- It also helps to modify the current data or information for the new data or information.
Answer:
The output will be:
B
o
n
d
0
0
7
Explanation:
Given code is of Python language
Let us look at the code line by line
The first line is:
my_list = [7, 0, 0, "d", "n", "o", "B"]
This line will create a list with the given elements.
my_list.reverse()
This line will reverse the sequence of the elements of the list
for thing in my_list:
print (thing)
These lines will simply print the reversed elements of the list on screen.
The output will be:
B
o
n
d
0
0
7