In computer networks, data is sent in small blocks known as packets. Each packet is transmitted individually and may also follow different route to reach the de
In address bar of a browser, have you noticed either http:// or https:// at the time of browsing a website? If neither of these are present then most likely, it
Many folks get confused between these two terms which are associated with the Web. Are they really same? First thing first. HTML is a Language while HTTP is a P
AES and DES are both examples of symmetric block ciphers but have certain dissimilarities. AES DES AES stands for Advanced Encryption Standard DES stands for Da
Prerequisite – Mealy and Moore Machines Mealy Machine – A mealy machine is defined as a machine in theory of computation whose output values are determined
There are two ways by which Input/output subsystems can improve the performance and efficiency of the computer by using a memory space in main memory or on the
Artificial Intelligence and Machine Learning are the terms of computer science. This article discusses some points on the basis of which we can differentiate be
Schedulers are special system software which handle process scheduling in various ways. Their main task is to select the jobs to be submitted into the system an
CALL instruction is used to call a subroutine. Subroutines are often used to perform tasks that need to be performed frequently. The JMP instruction is used to
Every application(program) comes into execution through means of process, process is a running instance of a program. Processes are created through different sy
In C#, Dictionary is a generic collection which is generally used to store key/value pairs. Dictionary is defined under System.Collection.Generics namespace. It
structures in C A structure is a user-defined data type available in C that allows to combining data items of different kinds. Structures are used to represent
Pointers are used for storing address of dynamically allocated arrays and for arrays which are passed as arguments to functions. In other contexts, arrays and p
All of these functions read a character from input and return an integer value. The integer is returned to accommodate a special value used to indicate failure.
HTML and ASP are two very common aspects in the web programming world. HTML stands for HyperText Markup Language used to develop webpages and specifically web d
Both CPU Cache and TLB are hardware used in microprocessors but what’s the difference, especially when someone says that TLB is also a type of Cache? First th
Prerequisite – Combinational circuits using Decoder, Introduction of Sequential Circuits Combinational circuits are defined as the time independent circuits w
Analog and digital signals are used to transmit information (such as any audio or video), usually through electric signals. In digital technology, translation o
Hive: Hive is a datawarehousing package built on the top of Hadoop. It is mainly used for data analysis. It generally target towards users already comfortable w
Relational Database Management System (RDBMS) – RDBMS is for SQL, and for all modern database systems like MS SQL Server, IBM DB2, Oracle, MySQL, and Microsof
Inverted Index It is a data structure that stores mapping from words to documents or set of documents i.e. directs you from word to document. Steps to build Inv
Static or Embedded SQL are SQL statements in an application that do not change at runtime and, therefore, can be hard-coded into the application. Dynamic SQL is
Prerequisites – SQL, NoSQL When it comes to choosing a database the biggest decisions is picking a relational (SQL) or non-relational (NoSQL) data structure.