All Questions

510 questions and answers

1240 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.

Demo Teacher
added 2 years ago
1027 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.

Demo Teacher
added 2 years ago
1016 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.

Demo Teacher
added 2 years ago
973 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.

Demo Teacher
added 2 years ago
1062 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.

Demo Teacher
added 2 years ago
1046 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.

Demo Teacher
added 2 years ago