What is the output of LEFT$("ABRACADABRA",5) :
Answers
Answered by
0
Answer:
"ABRAC"
Explanation:
Because LEFT there and a a string and a digit(take the digit as n) it will take n number of characters from the left.
LEFT$("ABRACADABRA",5):
it will take 5 characters from the left of the string
SO,
"ABRAC"
Similar questions