LibreOffice Calc में string का पहला character निकालने के लिए कौन सा function उपयोग करते हैं?
Which function is used to get the first character of a string in Calc?
A
LEFT
B
MID
C
RIGHT
D
LEN
Explanation
🔹 LEFT function:
-
Syntax:
LEFT(text, number_of_characters) -
It returns the leftmost characters from a string.
-
यह function string के सबसे बाएं (पहले) characters को निकालता है।
📌 यदि आप केवल पहला character निकालना चाहते हैं, तो:
=LEFT("Hello", 1)
🔹 Result: "H"
अन्य विकल्पों की जानकारी:
-
MID – बीच के characters निकालने के लिए।
➤ Example:MID("Hello", 2, 1)→"e" -
RIGHT – आखिरी characters निकालने के लिए।
➤ Example:RIGHT("Hello", 1)→"o" -
LEN – string की लंबाई (length) बताने के लिए।
➤ Example:LEN("Hello")→5
Correct Answer: A) LEFT