Mahesh Parahar has Published 253 Articles

Difference between REST API and SOAP API

Mahesh Parahar

Mahesh Parahar

Updated on 24-Feb-2020 10:45:49

12K+ Views

As we know that each machine understand and deals in its different language or input so web-services are something which are required for inter communication between machines and to exchange data between them. In order to implement some set of restrictions over their communication some set of rules and regulations ... Read More

Difference between JSON and XML

Mahesh Parahar

Mahesh Parahar

Updated on 24-Feb-2020 08:08:04

271 Views

Both JSON and XML are the most popular data transversal resources in programming world.Due to their various important characteristics and features both of these resources are widely used globally.On the basis of their features following are the important differences JSON and XMLSr. No.KeyJSONXML1AbbreviationJSON stands for JavaScript Object Notation.On other hand ... Read More

Difference between Java and C language

Mahesh Parahar

Mahesh Parahar

Updated on 24-Feb-2020 08:06:43

637 Views

Both Java and C are the most popular programming languages in programming world.Due to their various important characteristics and features both of these languages are widely used globally.On the basis of their features following are the important differences between Java and CSr. No.KeyJavaC1IntroducedJava was developed after C as compared on ... Read More

Difference between HTML and HTML 5

Mahesh Parahar

Mahesh Parahar

Updated on 24-Feb-2020 08:05:24

639 Views

Before moving to the difference between both of these broader terms first it is important to define the mark up language as abbreviation for HTML is Hyper Text Mark-up Language where mark-up language is used to define the text document within tag which defines the structure of web pages.So HTML ... Read More

Difference between float and double in C/C++

Mahesh Parahar

Mahesh Parahar

Updated on 24-Feb-2020 08:04:39

2K+ Views

As we know that in C/C++ we require float and double data type for the representation of Floating point numbers i.e the numbers which have decimal part with them.Now on the basis of precision provided by both of these data types we can differentiate between both of them.In simple words ... Read More

Difference between Apache Kafka and Flume

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:52:32

626 Views

Kafka and Flume both are used for real time event processing system. They both are developed by Apache. Kafka is a publish-subscribe model messaging system. It can be used to communicate between publisher and subscriber using topic. One of the best features of Kafka is, it is highly available and ... Read More

Difference between Apache Kafka and Kinesis

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:50:11

104 Views

Apache Kafka and Kinesis both software tool is to processing data stream in real time. Apache kafka is developed by linked-in and it is written in Scala and java. Kinesis is developed and managed by Amazon. It can be only used as a services.According to the amazon documentation −Amazon Kinesis ... Read More

Difference between OLAP and OLTP

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:39:42

21K+ Views

OLAP  stands for On-Line Analytical Processing. It is used for analysis of database information from multiple database systems at one time such as sales analysis and forecasting, market research, budgeting and etc. Data Warehouse is the example of OLAP system.OLTP stands for On-Line Transactional processing. It is used for maintaining ... Read More

Difference between monolithic and microservices architecture

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:37:48

13K+ Views

Monolithic architecture  is built as one large system and is usually one code-base. Monolithic application is tightly coupled and entangled as the application evolves, making it difficult to isolate services for purposes such as independent scaling or code maintainability.It extremely difficult to change technology or language or framework because everything ... Read More

Difference between ArrayBlockingQueue and ArrayDeque

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:35:13

354 Views

ArrayBlockingQueue stores elements in FIFO order. Insertion of element always happened at the tail of the queue and removal of the element always happened from the head of the queue.  It is thread safe and It is bounded array queue therefore once created, the capacity cannot be changed. It is ... Read More

Advertisements