Difference between Calloc and Malloc | Calloc() vs. Malloc()
Calloc() Malloc() Calloc initializes the allocated memory to Null or Zero. Malloc initializes the allocated memory area with garbage value. Block of memory is allocated by Calloc(). Byte of memory…
Difference between Tree and Binary Tree | General Tree vs. Binary Tree
Difference between Tree and Binary Tree General Tree Binary Tree A general tree is a data structure in that each node can have infinite number of children, A Binary…
Difference between Java and JavaScript | Java vs. JavaScript
Many people assumes that JavaScript is similar to Java language as it contains the name but it is not true and today we well see how Java and JavaScript differs…
Difference between Runtime Polymorphism and Compile time Polymorphism
Polymorphism means “Poly mean Multiple” + “Morph means Forms” . It is one feature of Object Oriented Paradigm having ability of taking more than one form. Generally in Polymorphism we…
DIFFERENCE BETWEEN SQL & SQL * PLUS
SQL & Vs. SQL * PLUS As we all know, SQL is a language. While SQL*Plus is a tool. SQL is the query language used for communication with Oracle…
DIFFERENCE BETWEEN FUNCTIONS AND PROCEDURES
Hi friends, We all are aware of functions and procedures used in various programming languages. But many of us sometimes get confused between both. Come, Let’s point out some differences…
DIFFERENCE BETWEEN A STORED PROCEDURE AND A TRIGGER
STORED PROCEDURE TRIGGER A Stored procedure can be defined as a user defined code written in PL/SQL, which may or may not return a value when invoked by calling it…
Difference Between SQL and PL/SQL | SQL vs. PL/SQL
Friends, As we know, Oracle is combination of both SQL and PL/SQL. To become an Oracle DBA, one probably needs to learn both of them. Still, there are some points…
Difference between Structure and Union | Structure VS. Union
Structure VS. Union Structure Union Memory Allocation Members of structure do not share memory. So A structure need separate memory space for all its members all the…
Difference between BFS and DFS | BFS vs. DFS
BFS vs. DFS BFS DFS BFS Stands for “Breadth First Search”. DFS stands for “Depth First Search”. BFS starts traversal from the root node and then explore the search…