PHP Pre Board solution

Asian School of Management and Technology   Group A Write some words about php? PHP: Hypertext preprocessor is a widely used open source general purpose scripting language that is especially suited for web development and can be embedded into HTML. How can you differentiate static and dynamic website? Static Website Dynamic Website Content is fixed […]

Continue Reading

Unit 6: Transaction Management

Defination A transaction is the basic logical unit of execution in an information system. A transaction is an event which occurs on the database. Generally a transaction reads a value from the database  or writes values to the database. State of Transaction Active :A transaction enters into an active state when the execution process begins. […]

Continue Reading

Unit 8: SORTING

Sorting refers to the operation or technique of arranging and rearranging sets of data in some specific order. A collection of records called a list where every record has one or more fields. The fields which contain a unique value for each record is termed as the key field. For example, a phone number directory can […]

Continue Reading

unit 2 Linked List

What Is Linked List? (2002 , 2007,2011) Linked list is one in which all nodes are linked together .Each node contains two parts. Data contains elements .  Next/Link contains address of next node . Structure of singly linked list The head always points to the first node .  All nodes are connected to each other […]

Continue Reading

unit 1 Complexity analysis

Asymptotic Notations Asymptotic notation is useful describe the running time of the algorithm. Asymptotic notations give time complexity as “fastest possible”, “slowest possible” or “average time”. Asymptotic notation is useful because it allows us to concentrate on the main factor determining a functions growth. Following are commonly used asymptotic notations used in calculating running time […]

Continue Reading