Articles by Team EasyExamNotes

Requirements elicitation

REQUIREMENTS ELICITATION Requirements elicitation means requirement gathering.  Which is collection of the requirements of a system by communicating with users, customers, and other stakeholders. Requirements … Read more

Data types

Primitive datatypes: Data types that are defined by system are called primitive data types. For example: int, float, char, double, bool, etc. The number of … Read more

PPL Viva Voce

Most of the students were not able to answer the following questions:- 1) Example of pure functional programming paradigm? Ans. Haskell 2) Example of Logic … Read more

Concurrency

CONCURRENCY Concurrency is naturally divided into:  1) Instruction level concurrency,  2) Statement level concurrency (executing two or more statements simultaneously),  3) Program unit level concurrency(execute … Read more

Monitors

MONITORS Monitors use the concept of data abstraction, encapsulate shared data structure with their operations and hide their representations, that is, make shared data structures … Read more

Message passing

MESSAGE PASSING Message passing is often used in distributed computing system, two tasks can exchange information through send and receive. Message passing can also be … Read more

Basic elements of Prolog

Prolog is a logic programming language that is primarily used for artificial intelligence and computational linguistics applications. It is based on a formal system called … Read more