Computer Science, asked by manan6351, 10 hours ago

What is the output of LEFT$("ABRACADABRA",5) :

Answers

Answered by PR4N4V
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