Variables in Php

Variables in Php The variable's identity is $(sing) (Variables की पहचान $(sing) है) But how do we use it by writing(लेकिन हम इसे लिखकर कैसे इस्तेमाल करते हैं) =>$name( characters ) =>$Name =>$name123( characters and numeric ) =>$name_name( characters an… Read more

DBMS

Database Management System (DBMS) Database Management System (DBMS) is a collection of programs that enables the user to create and maintain a Database. In other words, it is a general-purpose software (Generic Software) that provides the users with the process … Read more

Data Vs Database

Data Vs Database Data Vs Database are as follows - Data  A collection of Information. The facts that can be ordered and which implicit (complete) meaning known as Data. For example: customer_id, customer_name, etc. Database A Database allows… Read more

Hashing in Data Structure

Hashing Binary search, Linear search and all other searches key are totally dependent on the number of elements and so many keys comparison are involved. Now, our need is to search the element in constant time and less key comparison should be involved. Hashing… Read more

Threaded Binary Tree

Threaded Binary Tree A tree can be represented by using Array Representation  OR Linked List Representation Using Array Representation In array representation to represent the Binary tree we take One Dimensional Array. Maximum size of array = 2n+1… Read more

Trees terminology in Data Structure

TREES TREE TERMINOLOGY :-                   TYPES OF TREES:- 1 : BINARY TREE =Degree of any node in binary tree is (0,1,2) 2 : STRICTLY BINARY TREE(SBT)=Degree of any node in SBT is (0,,2) 3 : COMPLETE … Read more

JIT compiler, code manager

JIT Compiler & Code Manager Just-in-time compiler [JIT] is a part of common language run-time [CRL]. JIT compiler converts the MSIL or CIL code into native / machine code. The JIT compiler is required to speed up the code execution and provide support for… Read more