Answer:
false
Explanation:
I did this question before
With i<span>ndexed sequential access, an index is more useful when the number of record is large. Index is needed to order the elements of the data base by specific index. For example you have client database. You have city index in your data base and you can order your clients by the city where they live.</span>
Answer:
string1 = "this is string 1"
string2 = " this is string 2"
print(string1 + string2)
Explanation:
the string1 variable is assigned with a string value(aka. str)
string2 is also a variable assigned with a slightly different string value
the 3rd line then prints string 1 and 2 to the console.
21...............................