

InterviewSolution
Saved Bookmarks
1. |
The delimiter in a FORTRAN code.(a) Semicolon(b) Blank space(c) Colon(d) CommaI had been asked this question at a job interview.This is a very interesting question from FORTRAN Basics in chapter Computer Languages of Computer Fundamentals |
Answer» CORRECT ANSWER is (b) BLANK space Explanation: Delimiter separates the tokens we use in our code. In a FORTRAN code, single blank space serves as a delimiter. Though, MULTIPLE blank SPACES are ignored. |
|