Computer Science, asked by ntsenolotha, 1 month ago

E.Wtite true or false 1)LEFT$ is used to extract the number of characters from left side of a string. 2)MID$ is used to insert blank spaces between two strings. 3) Library function are also called Built-in-function. 4)The LEN function is used to find the number of characters in a string.​

Answers

Answered by nidihossain123
1

Answer:

False is the correct answer

Answered by rbkg5540
1

Answer:

Explanation:

For example,

Len (VisualBasic) = 11 and Len (welcome to VB tutorial) = 22

The Len function can also return the number of digits or memory locations of a number that is stored in the computer. For example,

X=sqr (16)

Y=1234

Z#=10#

Then Len(x)=1, Len(y)=4, and Len (z)=8

The reason why Len(z)=8 is because z# is a double precision number and so it is allocated more memory spaces.

Similar questions