Every String must be terminated by..................?प्रत्येक स्ट्रिंग का अंत .......... होना चाहिए। *
Carriage Return Character /ਕੈਰਜ ਵਾਪਸੀ ਚਿੰਨ੍ਹ/कैरिज रिटर्न चिन्ह
New Line Character /ਨਵੀਂ ਰੇਖਾ ਚਿੰਨ੍ਹ/नई लाइन चिन्ह
Null Character /ਖਾਲੀ ਚਿੰਨ੍ਹ/खाली चिन्ह
Line Feed Character /ਲਾਈਨ ਫੀਡ ਚਿੰਨ੍ਹ/रेखा फ़ीड चिन्ह
Answers
Explanation:
All three of these characters are ASCII representations for the end of a line. With regards to strings, LabVIEW implements the same functionality for all three: It will end the current line of a string, and start a new one.
However at the operating system level, they are treated differently.
The Carriage Return ("CR") character (0x0D, \r) moves the cursor to the beginning of the line without advancing to the next line. This character is used as the new line character in Commodore and Early Macintosh operating systems (Mac OS 9 and earlier).
The Line Feed ("LF") character (0x0A, \n) moves the cursor down to the next line without returning to the beginning of the line. This character is used as the new line character in Unix based systems (Linux, macOS X, Android,etc).
The End of Line ("EOL") character (0x0D0A, \r\n) is actually two ASCII characters and is a combination of the CR and LF characters. It moves the cursor both down to the next line and to the beginning of that line. This character is used as the new line character in most other non-Unix operating systems, including Microsoft Windows and Symbian OS.