
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Ginni has Published 1522 Articles

Ginni
478 Views
DefinitionIt recognizes the code or data related to the name of the variable, function, class, etc. The definition is essentially needed by the compiler to designate the storage area for the declared entity. When a variable is defined it has an amount of memory that includes multiple bytes for that ... Read More

Ginni
4K+ Views
The whole source program can be processed several times before generating the assembly/machine code.Pass − One complete scan or processing of the source program. Various phases can be arranged into one pass. Lexical, syntax & semantic analysis are often grouped in a single pass. Each pass reads the source program ... Read More

Ginni
10K+ Views
Solution Symbol TableS.NO.Variable NameVariable Type200AFloat204BFloat208CFloatNow, we will see how we can perform the compiler phase at each level and how it works.Lexical AnalysisThis is the first step that works as an integration between the compiler and the source language code. It ... Read More

Ginni
27K+ Views
A translator is a programming language processor that modifies a computer program from one language to another. It takes a program written in the source program and modifies it into a machine program. It can find and detect the error during translation.There are various types of a translator which are ... Read More

Ginni
5K+ Views
A declaration in a program refers to a statement that provides the data about the name and type of data objects to the programming language translators. For example, consider the following C declaration −int a, b;This declaration provides the programming language translator with the information that a and b are ... Read More

Ginni
11K+ Views
An elementary data object includes a single data value and a class of elementary data objects with a set of operations for creating and manipulating them is represented as an elementary data type. An example of elementary data types such as integer, real, character, Boolean, pointer, etc.The basic components of ... Read More

Ginni
31K+ Views
A compiler is a computer program that changes source code written in a high-level language into low-level machine language. It translates the code written in one programming language to some other language without modifying the definition of the code. The compiler also produces the end code efficient which is optimized ... Read More

Ginni
17K+ Views
In a language processing system, the source code is first preprocessed. The modified source program is processed by the compiler to form the target assembly program which is then translated by the assembler to create relocatable object codes that are processed by linker and loader to create the target program. ... Read More

Ginni
665 Views
In a computer, the data is stored in memory, registers, and external media.Generally, all these devices have an approximately simple structure as a sequence of bits arranged into bytes or words. However, data storage of the virtual computer for a programming language influence to carry a more complex organization with ... Read More

Ginni
3K+ Views
There are various attributes of programming language in compiler design which are as follows −Simplicity and Clarity − Few languages such as Basic, Algol, and Pascal in the past were purposely created to simplify clarify of expression. Basic, for example, had a very small instruction set. Algol 60 had a ... Read More