All Questions

520 questions and answers

1255 views

Write the difference between procedural and non-procedural query language.

A query language is a language in which a user requests information from the database.

Super Admin
added 2 years ago
1040 views

Write the rules of DBA.

Database administration (DBA) is an operational or technical level function responsible for physical database design, security enforcement, and database performance.

Super Admin
added 2 years ago
1037 views

Show that no left recursive grammar can be LL(1). Show that no LL(1) grammar can be ambiguous.

First of all FIRST and FOLLOW over the grammar must find out in which left recursion has been removed.

Super Admin
added 2 years ago
984 views

Write short notes on:

  • LEX
  • YACC

Lex is a program generator designed for lexical processing of character input streams. It accepts a high-level, problem oriented specification for character string matching, and produces a program in a general purpose language which recognizes regular expressions.

Super Admin
added 2 years ago
1071 views

Write short notes on: 

  • Peephole Optimization
  • Symbol Table
  • Cross Compiler

In compiler optimization theory, the compiler optimization basically refers to the program optimization to achieve performance in the execution.

Super Admin
added 2 years ago
1055 views

What is activation record? Explain clearly the components of an activation record.

A data structure containing the important state information for a particular instance of a function call (or something that resembles a function call). May exist entirely in memory, or be partially stored in registers.

Super Admin
added 2 years ago