Advantages and disadvantages of UDP

User Diagram Protocol (UDP) may be a connectionless protocol that’s located in between application layer and IP layer. It’s mainly used for broadcasting messages over a network. aside from that it acts as an intermediary between the applications and therefore the network operations. Functioning of UDP is completed almost almost like TCP. Although UDP exhibits numerous benefits it’s… Read More »

Advantages and disadvantages of TCP

Transmission Control Protocol (TCP) may be a sort of communication protocol that interconnects different networking devices. It is the essential way of how applications are getting to communicate across a network (Allowing communication over large distances). Examples for them are TCP/IP, HTTP, HTTPS and FTP. The TCP has the potential to supply reliable and end-to-end byte stream. These… Read More »

Advantages and disadvantages of Barcode Reader

Barcode reader may be a sort of scanner device that reads dark and white bars which contains pieces of data (Descriptive data of numbers and letters). It basically works using the electro-optical principle. Barcode reader is formed from 3 parts. Those are the converter, decoder and therefore the illuminator. Depending on the goal, there are differing types of… Read More »

Advantages and Disadvantages of MongoDB

MongoDB is one of the popular NoSQL database, is an open-source document-oriented database. The term ‘NoSQL’ means ‘not only SQL or non-relational’. It provides an altogether different mechanism for storage and retrieval of data, uses BSON storage format (similar to JSON format) and it is not based on relational database structure. Advantages and Disadvantages of MongoDB: Advantages- Flexibilty-… Read More »

Database Transaction Models and the CAP Theorem

According to Brewer’s theorem (also called CAP theorem), any distributed data store (like a database) can only provide two of the following three guarantees: Consistency Availability Partition tolerance Now when it comes to pain tolerance, like a network partition failure, one of the following decisions need to be made: Cancel the operation => decrease the availability but ensure… Read More »

Confusing terms in Networking

There are few technical terms related to networking which are often used in day-to-day language so it becomes necessary to know what they actually mean and also the differences between them. Sometimes we use online tools to test our network strength and there are often few technical jargons related to it. Below are a few terms which are… Read More »

Multiplication of two numbers in C++

In this article, we have discussed various methods to multiply two numbers in C++. These are simple program, you can learn them easily. Method-1 : With Hardcoded Inputs Output: 30 Method-2 : With user Inputs Output: Output depends on user inputs, that will be multiplication of both numbers. Method-3 : With class Output: Output depends on user inputs,… Read More »

Division of two numbers in C++

In this article, we have discussed various methods to divide two numbers in C++. These are simple program, you can learn them easily. Method-1 : With Hardcoded Inputs Output: 2 Method-2 : With user Inputs Output: Output depends on user inputs, that will be division of both numbers. Method-3 : With class Output: Output depends on user inputs,… Read More »

Subtraction of two numbers in C++

In this article, we have discussed various methods to subtract two numbers in C++. These are simple program, you can learn them easily. Method-1 : With Hardcoded Inputs Output: -1 Method-2 : With user Inputs Output: Output depends on user inputs, that will be subtraction of both numbers. Method-3 : With class Output: Output depends on user inputs,… Read More »

What is stdio.h and why do we use?

stdio.h is a header file in the C Standard Library, which is commonly used in C programming. It stands for “Standard Input/Output Header”. This header file defines a set of functions and macros that provide input and output capabilities for C programs. Some of the most commonly used functions in stdio.h are printf, scanf, fopen, fclose, fread, fwrite,… Read More »