
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
3K+ Views
Problem Statement Verifying whether the string id * id + id is accepted by a given grammar using SLR parsingConsider the SLR parsing table for the GrammarE → E + TE → TT → T ∗ FT → FF → (E)F → ... Read More

Ginni
3K+ Views
Deterministic Finite Automata (DFA)Deterministic means that on each input there is one and only one state to which the automata can have the transition from its current state. In deterministic finite automata, the head can move only in one direction to scan the input tape symbols. But in the case ... Read More

Ginni
13K+ Views
An Activation Record is a data structure that is activated/ created when a procedure/function is invoked, and it includes the following data about the function.Activation Record in 'C' language consist ofActual ParametersNumber of ArgumentsReturn AddressReturn ValueOld Stack Pointer (SP)Local Data in a function or procedureHere, Old SP stores the value ... Read More

Ginni
1K+ Views
ListsIt is conceptually simplest and easy to implement a data structure for the symbol table in a linear list of records, as shown below −It can use an individual array to store the name and its associated information. New Names are inserted to the list in the order in which ... Read More

Ginni
3K+ Views
Search TreeA more effective technique to symbol table organization is to add two link fields, LEFT and RIGHT, to every record. We use these fields to link the records into a binary search tree.This tree has the property that all names NAME (j) accessible from NAME (i) by following the ... Read More

Ginni
7K+ Views
An access link is a pointer to each activation record that obtains a direct implementation of lexical scope for nested procedures. In other words, an access link is used to implement lexically scoped language. An “access line” can be required to place data required by the called procedure.An improved scheme ... Read More

Ginni
2K+ Views
Representing scope information is a concept in which the scope of each variable name is preserved in the symbol table so that we can use the same name in different blocks and different locations. Representing name in symbol table along with an indicator of the block in which it appears.Suppose ... Read More

Ginni
3K+ Views
Representing scope information is a concept in which the scope of each variable name is preserved in the symbol table so that we can use the same name in different blocks and different locations.Representing Scope Information involvesA lifetime of a variable in a particular block.Representing name in symbol table along ... Read More

Ginni
3K+ Views
During compilation, the symbol table is searched each time an identifier is encountered. Data are added if a new name or new information about an existing name is find. Thus, in designing a symbol table structure, it would like a scheme that enables us to insert new entries and identify ... Read More

Ginni
620 Views
It is a data structure including data for each identifier, fields for the attribute of the identifier. The data structure enables us to find the data for each identifier fastly and to save or retrieve the information for that record quickly.The symbol table is searched each time a name is ... Read More