Mahesh Parahar has Published 253 Articles

Difference between MySQL and SQL Server

Mahesh Parahar

Mahesh Parahar

Updated on 27-Nov-2019 07:21:59

7K+ Views

Both MySQL and SQL Server, both are relational database management systems or RDBMS. MySQL is open source and is free to use whereas SQL Server is licensed product of Microsoft.Following are the important differences between MySQL and SQL Server.Sr. No.KeyMySQLSQL Server1Owned/Developed ByMySQL is owned by Oracle.SQL Server is developed by ... Read More

Difference between RDBMS and HBase

Mahesh Parahar

Mahesh Parahar

Updated on 27-Nov-2019 07:20:14

3K+ Views

Both RDBMS and HBase, both are database management systems. RDBMS uses tables to represent data and their relationships. HBase is a column-oriented dbms and it works on top of Hadoop Distributed File System (HDFS).Following are the important differences between RDBMS and HBase.Sr. No.KeyRDBMSHBase1DefinitionRDBMS stands for Relational DataBase Management System.HBase has ... Read More

Difference between RDBMS and OODBMS

Mahesh Parahar

Mahesh Parahar

Updated on 27-Nov-2019 07:16:47

10K+ Views

RDBMS and OODBMS are database management systems. RDBMS uses tables to represent data and their relationships whereas OODBMS represents data in form of objects similar to Object Oriented Programming.Following are the important differences between RDBMS and OODBMS.Sr. No.KeyRDBMSOODBMS1DefinitionRDBMS stands for Relational DataBase Management System.OODBMS stands for Object Oriented DataBase Management ... Read More

Difference between OOP and POP

Mahesh Parahar

Mahesh Parahar

Updated on 27-Nov-2019 07:04:54

19K+ Views

OOPOOP, refers to Object Oriented Programming and its deals with objects and their properties. Major concepts of OOPs are −Class/objectsAbstractionEncapsulationPolymorphismInheritancePOPPOP, refers to Procedural Oriented Programming and its deals with programs and functions. Programs are divided into functions and data is global.Following are the important differences between OOP and POP.Sr. No.KeyOOPPOP1DefinitionOOP ... Read More

Difference between MD5 and SH1

Mahesh Parahar

Mahesh Parahar

Updated on 27-Nov-2019 06:55:02

940 Views

MD5 and SH1 are hashing algorithms. MD5 is much faster than SH1Following are the important differences between MD5 and SH1.Sr. No.KeyMD5SH11DefinitionMD5 stands for Message Digest.SHA stands for Secure Hash Algorithm.2Supported LengthMD5 can have 128 bits length of digest message.SHA can have 160 bits length of digest message.3SpeedMD5 is faster than ... Read More

Difference between UMA and NUMA

Mahesh Parahar

Mahesh Parahar

Updated on 26-Nov-2019 12:20:48

8K+ Views

UMA and NUMA are shared memory models. Multiprocessors are divided among these type of categories. In UMA, Uniform Memory Access, a single memory controller is used and it is applicable for general purpose applications and time sharing applications. In NUMA, Non-Uniform Memory Access, multi memory controllers are used. NUMA is ... Read More

Difference between CPU and GPU

Mahesh Parahar

Mahesh Parahar

Updated on 26-Nov-2019 11:01:10

443 Views

CPU and GPU are processor units. CPU is considered as the brain of the computer and consists of ALU (Arithmetic Logic Unit) which stores the information, performs calculations and CU(Control Unit) which performs instructions and branching. GPU is used to enhanced the images, videos of the computer. It mainly have ... Read More

Differences between Difference between getc(), getchar(), getch() and getche() functions

Mahesh Parahar

Mahesh Parahar

Updated on 26-Nov-2019 10:42:58

892 Views

All of these functions are used to get character from input and each function returns an integer signifying the status code as well.Following are the important differences between getc(), getchar(), getch() and getche() functions.getc()getc() can read characters from any stream. Returns EOF on failure.Syntaxint getc(FILE *stream);getchar()getchar() can read characters from ... Read More

Difference between Scanner and BufferReader Class in Java

Mahesh Parahar

Mahesh Parahar

Updated on 26-Nov-2019 10:20:58

10K+ Views

Scanner and BufferReader both classes are used to read input from external system. Scanner is normally used when we know input is of type string or of primitive types and BufferReader is used to read text from character streams while buffering the characters for efficient reading of characters. Following are ... Read More

Difference between fail-fast and fail safe in Java

Mahesh Parahar

Mahesh Parahar

Updated on 18-Nov-2019 07:31:59

2K+ Views

Sr. No.KeyFail-FastFail-Safe1ExceptionAny changes in the collection, such as adding, removing and updating collection during a thread are iterating collection then Fail fast throw concurrent modification exception. The fail-safe collection doesn't throw exception. 2.Type of collectionArrayList and hashmap collection are the examples of fail-fast iterator CopyOnWrite and concurrent modification are the examples of a ... Read More

Advertisements