Access free live classes and tests on the app
Download
+
Unacademy
  • Goals
    • AFCAT
    • AP EAMCET
    • Bank Exam
    • BPSC
    • CA Foundation
    • CAPF
    • CAT
    • CBSE Class 11
    • CBSE Class 12
    • CDS
    • CLAT
    • CSIR UGC
    • GATE
    • IIT JAM
    • JEE
    • Karnataka CET
    • Karnataka PSC
    • Kerala PSC
    • MHT CET
    • MPPSC
    • NDA
    • NEET PG
    • NEET UG
    • NTA UGC
    • Railway Exam
    • SSC
    • TS EAMCET
    • UPSC
    • WBPSC
    • CFA
Login Join for Free
avtar
  • ProfileProfile
  • Settings Settings
  • Refer your friendsRefer your friends
  • Sign outSign out
  • Terms & conditions
  • •
  • Privacy policy
  • About
  • •
  • Careers
  • •
  • Blog

© 2023 Sorting Hat Technologies Pvt Ltd

  • Exams
    • SBI Exams
      • SBI PO
      • SBI Clerk
      • SBI SO
    • IBPS Exams
      • IBPS PO
      • IBPS Clerk
      • IBPS RRB
      • IBPS SO
    • LIC Exams
      • LIC Assistant
      • LIC AAO
      • LIC ADO
    • RBI Exams
      • RBI Grade B
      • RBI Assistant
  • Notifications
    • Upcoming Bank Exam
    • Syllabus
      • IBPS Syllabus
        • IBPS PO Syllabus
        • IBPS Clerk Syllabus
        • IBPS RRB Syllabus
        • IBPS SO Syllabus
      • SBI Syllabus
        • SBI PO Syllabus
        • SBI Clerk Syllabus
      • LIC Syllabus
        • LIC Assistant Syllabus
        • LIC AAO Syllabus
        • LIC ADO Syllabus
      • RBI Syllabus
        • RBI Assistant Syllabus
  • Study Material
    • Magazine Download
    • Bank Exams Notes
  • Tests & Practice
    • Scholarship Test
    • Test Series
    • Learning Festival
  • Rankers Guide
    • Paper Analysis
Bank Exam » Bank Exam Study Materials » Computer Knowledge » ALGOL
insurance_banking_exams

ALGOL

Complete summary of ALGOL. Features and facts of ALGOL. Brief info on ALGOL 58, ALGOL 60 and ALGOL 68; their implementations.

Table of Content
  •  

ALGOL is a computer programming language that was created in 1958–60 by an international committee of the Association of Computing Machinery (ACM) chaired by Alan J. Perlis of Carnegie Mellon University for publishing algorithms and performing calculations. ALGOL, like LISP, included recursive subprograms, which were procedures that could be used to solve an issue by reducing it to a smaller problem of the same type. ALGOL stands for algorithmic language and was previously known as IAL. It’s a group of portable programming languages for scientific computations that influenced a lot of other languages. For nearly 30 years, the ACM has utilised ALGOL as the standard approach for generating algorithms in textbooks and academics.

Features of ALGOL:

  • BNF Notation – Backus-Naur Form is a formal means for describing the syntax of a computer language. Think of it as short-hand for computer languages.
  • Statement Blocks – This is a syntactic means for grouping a series of programming statements together. Think of this like putting a group of related items in a box, and treating the box as a unit.
  • Parameter Passing – Specifically, there are two methods for passing information to and from a subprogram, pass by value, and pass by reference. Think of these as a way to protect information entering a subprogram from modification, one sends a copy, the other sends the actual data.
  • Dynamic Arrays – These are a list of values where the size of the list can be determined at run-time. Think of these as flexible arrays, arrays that adjust to the need.
  • Reserved Words – These are predefined words that have special meaning to a computer language. Think of these like your name. It represents you and the things you can do.

Major ALGOL specifications:

ALGOL 58

  • ALGOL 58, formerly known as IAL, is a member of the ALGOL programming language family. ALGOL 60 quickly surpassed it as an early compromise design.
  • The core concept of the compound statement was introduced in ALGOL 58, but it was limited to control flow only, and it was not bound to identifier scope like Algol 60’s blocks were.
  • According to Perlis, the language was first offered as IAL (International Algebraic Language), but this was rejected as a “‘unspeakable’ and pretentious acronym.”
  • IBM attempted to implement ALGOL 58, however the development was shortly abandoned due to rivalry with FORTRAN. 
  • BALGOL, a version for the Burroughs 220, evolved along similar lines, but preserved much of ALGOL 58’s original personality.
  • The major contribution of ALGOL 58 was to later languages; it served as the foundation for JOVIAL, MAD, NELIAC, and ALGO. 

ALGOL 58’s influence on ALGOL 60:

  • Both IAL and ALGOL 60 support arrays with arbitrary lower and higher subscript boundaries, as well as integer expressions to create subscript bounds.
  • Procedure declarations and their related identifier scopes can be nested in both IAL and ALGOL 60.
  • ALGOL 60 does not enable numeric statement labels, whereas IAL does.
  • A switch designator exists in both IAL and ALGOL 60, although it is unrelated to the switch statement in C and other languages.
  • The IAL if-statement does not have a then-clause or an else-clause; instead, it protects the next statement. IAL has an if either-statement that allows you to test several conditions in a neat way.
  • Both were superseded by ALGOL’s if-then construct, which included the ambiguous “dangling-else.”

ALGOL 60

ALGOL 60 (short for Algorithmic Language 1960) is a computer programming language from the ALGOL family. It came after ALGOL 58, which introduced code blocks and the begin and end pairs for delimiting them, marking a significant step forward in the development of organised programming. The first language to provide nested function declarations with the lexical scope was ALGOL 60. Many additional programming languages arose from it, including CPL, Simula, BCPL, B, Pascal, and C. ALGOL 60 principles were used to programme almost every computer of the time.

For parameter passing, ALGOL 60 provides two evaluation strategies: call-by-value and call-by-name. For each formal parameter, the procedure declaration stated which was to be used: value supplied for call-by-value and omitted for call-by-name. In contrast to call-by-reference, calling by name has certain implications.

ALGOL 68 implementations:

  • The Royal Radar Establishment in the United Kingdom presented ALGOL 68-R in July 1970 as the first implementation of the standard, based on the late-1968 draught Report. This was, however, only a portion of the phrase.
  • Despite its popularity on ICL computers, this version became a widely used language in military code, particularly in the United Kingdom.
  • CDC Netherlands released the first comprehensive implementation of the language in 1974 for the Control Data mainframe series.

There are three open-source Algol 68 implementations:

  • Marcel van der Veer wrote -a68g, GPLv3
  • algol 68 toc, an ALGOL 68RS open-source software port.
  • Jose E. Marchesi wrote an experimental Algol68 frontend for GCC.

Conclusion:

ALGOL is a computer programming language to provide lexical scope nested function declarations. Furthermore, it was the first programming language to pay close attention to formal language definition, and it was the first to introduce Backus–Naur form, a key formal grammar notation for language design, through the Algol 60 Report.

 

faq

Frequently asked questions

Get answers to the most common queries related to the Bank Examination Preparation.

Give full form of ALGOL.

Ans. ALGOL stands for Algorithmic Language.

State the main use of ALGOL

Ans. It is a portable computer language family used for scientific calculations that has had a significant ef...Read full

Which level of language is ALGOL?

Ans. ALGOL is one of many high-level programming languages created primarily for scientific computations. It ...Read full

What is the other name for IAL?

Ans. It is a former name for ALGOL 58.

Ans. ALGOL stands for Algorithmic Language.

Ans. It is a portable computer language family used for scientific calculations that has had a significant effect on other languages.

 

Ans. ALGOL is one of many high-level programming languages created primarily for scientific computations. It began in the late 1950s, with a report titled ALGOL 58, and subsequently advanced via  ALGOL 60 and ALGOL 68.

 

Ans. It is a former name for ALGOL 58.

Crack Bank Exam with Unacademy

Get subscription and access unlimited live and recorded courses from India’s best educators

  • Structured syllabus
  • Daily live classes
  • Ask doubts
  • Tests & practice
Learn more

Notifications

Get all the important information related to the Bank Exam including the process of application, important calendar dates, eligibility criteria, exam centers etc.

Bank Exam Application Process
IBPS Clerk Notifications
IBPS Clerk Result – Check Prelims Exam Result Link
IBPS PO Notifications
IBPS PO Result
IBPS PO Syllabus 2023 for Prelims and Mains Exam
SBI Clerk Notifications
SBI Clerk Result – SBI Clerk Mains Result 2023 Out
SBI PO Admit Card 2022 – Link(Soon), Steps to Download
SBI PO Notifications 2022 – Check Eligibility, Exam Date, Syllabus, Exam Pattern
SBI PO Result
SBI PO Syllabus 2023, Prelims and Mains Syllabus in Detail
See all

Related articles

Learn more topics related to Computer Knowledge
Windows Operating System

This article discusses the Windows operating system and gives a detailed view on several versions of them. In this article you will get to know about major features and also a historical background of the Windows operating system.

What Is A Wireless Connection?

These days, hardly there's anyone who doesn't use the internet connection these days in their daily life. The Internet has become an essential part of our life because everything has gone online. From food to friends or education to entertainment, everything is present on the Internet.

WAN

This article helps us in understanding the basic meaning of the Internet's biggest WAN or Wide Area Network and the principle behind it, its applications in computer networks, its advantages, and disadvantages,

VPN

Virtual Private Network(VPN) helps guard your privacy by establishing an encrypted connection. It hides your IP address, after which no one can see or trace your activity.

See all
Access more than

12,591+ courses for Bank Exams 

Get subscription

Trending Topics

  • IBPS Clerk Exam Analysis 2022
  • Bank Exam Notifications
  • IBPS-PO Eligibility Criteria
  • IBPS PO Exam Pattern
  • IBPS PO Application Process
  • SBI Clerk Exam Pattern
freeliveclasses_bankexams

Related links

  • Bank Exam Study Materials
  • SBI Clerk Result
  • IBPS PO Syllabus
  • IBPS Clerk Result
  • IBPS PO Salary
  • IBPS Clerk Syllabus
  • IBPS Calendar 2023
  • RBI Grade B Officer
  • RRB PO Exam Pattern
  • RRB Exam Syllabus
  • RRB NTPC Exam Pattern
  • General Awareness for Bank Exams
  • RRB Clerk Exam Date 2023
testseries_bankexams
Download Free English Magazine
Company Logo

Unacademy is India’s largest online learning platform. Download our apps to start learning


Starting your preparation?

Call us and we will answer all your questions about learning on Unacademy

Call +91 8585858585

Company
About usShikshodayaCareers
we're hiring
BlogsPrivacy PolicyTerms and Conditions
Help & support
User GuidelinesSite MapRefund PolicyTakedown PolicyGrievance Redressal
Products
Learner appLearner appEducator appEducator appParent appParent app
Popular goals
IIT JEEUPSCSSCCSIR UGC NETNEET UG
Trending exams
GATECATCANTA UGC NETBank Exams
Study material
UPSC Study MaterialNEET UG Study MaterialCA Foundation Study MaterialJEE Study MaterialSSC Study Material

© 2025 Sorting Hat Technologies Pvt Ltd

Unacademy
  • Goals
    • AFCAT
    • AP EAMCET
    • Bank Exam
    • BPSC
    • CA Foundation
    • CAPF
    • CAT
    • CBSE Class 11
    • CBSE Class 12
    • CDS
    • CLAT
    • CSIR UGC
    • GATE
    • IIT JAM
    • JEE
    • Karnataka CET
    • Karnataka PSC
    • Kerala PSC
    • MHT CET
    • MPPSC
    • NDA
    • NEET PG
    • NEET UG
    • NTA UGC
    • Railway Exam
    • SSC
    • TS EAMCET
    • UPSC
    • WBPSC
    • CFA

Share via

COPY