answersLogoWhite

0


Best Answer

The languages are not case sensitive in most implementations. However, Fortran versions from F77 forward allow the use of lower-case letters in statements; the compiler simply translates them all to upper-case before processing.

Case sensitivity is a contentious item among programmers. Typing in mixed, INsensitive case is a lot more readable, but programming with case sensitivity can be a recipe for disaster. For example, it's a lot easier to read a name called SetOutputStage than SETOUTPUTSTAGE or setoutputstage. But if the compiler is case sensitive, all it takes is one fumblefingered letter to create 2 variables - e.g. SetOutputStage and SetOutputstage, which are virtually indistinguishable to the eye!

User Avatar

Wiki User

16y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

The real-world is case-sensitive and it would actually take more effort to remove case-sensitivity. Keyboards treat the characters 'A' and 'a' as being separate entities with different character codes, it's only humans that treat them as being different cases of the same letter. In order for a computer to treat them as being the same letter, it must convert all characters to the same case (whether upper or lower case) and that alone takes far more effort than simply treating them as being the completely separate characters they actually are. C is a high-performance language, so it makes no sense to waste time converting characters unnecessarily.

This answer is:
User Avatar

User Avatar

Wiki User

7y ago

The case-sensitivity (or lack thereof) of any programming language typically stems from the systems upon which the language was originally intended, or from the languages upon which they were derived. C has its roots in UNIX which is an inherently case-sensitive system. That is, README.TXT and readme.txt are distinct file identifiers that may co-exist within the same folder. It only makes sense for C to treat identifiers in exactly the same way. After all, the fewer inconsistencies we introduce into a system, the easier that system is to use.

You might ask why UNIX is case-sensitive, but the answer is simple. While the Latin alphabet has 26 distinct characters with two representations each (uppercase and lowercase), implementing a case-insensitive system in English is trivial. However, most people prefer to use identifiers in their own native language but not all languages lend themselves to a case-insensitive system quite so readily. For instance, the German eszett "ß" has no uppercase equivalent while certain Arabic scripts have certain letters with three representations rather than two. Case-sensitivity caters for all languages equally.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

Cobol is not a case sensitive language. It does not matter if a variable or command is upper or lower case or a mixture of upper and lower case letters. They are all treated the same.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why are Cobol and Fortran are case sensitive?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Put these programming languages you order from oldest to newest basic c plus plus cobol fortran?

From oldest to newest: FORTRAN, COBOL, BASIC, and C++


What is the early programming language?

fortran, algol, cobol, pl/i, for example


What are the old high level languages?

Examples: Algol, Cobol, Fortran, PL/I, Basic


What are types of procedure languages?

Programming languages such as COBOL and FORTRAN are examples of procedure languages.


What is the order the languages first appeared?

Assembly language Fortran LISP COBOL ALGOL


Fortran is a low level language?

FORTRAN is a third generation language.Note: I don't know what these generations are, but I'm quite sure that Fortran is one of the oldest high-level programming languages, as are Cobol and Algol.


What were the major programming languages throughout history?

fortran language,basic language,cobol language.


5 Examples of high level programming software?

COBOL, FORTRAN, BASIC, C and C++.


What are the three basic programming languages?

Machine Code, Assembler, & High Level (FORTRAN, COBOL, C).


Which Programming languages came first between BASIC C COBOL AND Foltran?

Fortran (Foltran is a misspelling)


What is the first successful high level programming language invented?

Fortran and Cobol are two old and successful languages.


What is the difference between COBOL and FORTRAN?

COBOL stands for Common Business Oriented Language and, as the name implies, is best applied in business and accounting type projects. FORTRAN is primarily for scientific/engineering/mathematical problems. The name comes from 'Formula Translator.' The FORTRAN that I worked with some 50 yrs ago in no way resembles the FORTRAN of today ... it evolves I've been told that 500 yrs from now, engineers will still be using something called FORTRAN though it had evolved even more through time.