
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Kiran Kumar Panigrahi has Published 392 Articles

Kiran Kumar Panigrahi
37K+ Views
Java supports overloading, i.e., in a Java class, we can have two different methods with the same name and different parameter lists (different number of parameters with same type or, same number of parameters with different types). Whereas, method overriding is a concept where the super class and the sub-class ... Read More

Kiran Kumar Panigrahi
2K+ Views
Java is an object-oriented programming language, which means that everything in Java is represented as a class and object. Every entity with state and behavior is an object. And, classes are the templates to create objects. It contains data and functions so that it can later be accessed by their ... Read More

Kiran Kumar Panigrahi
100K+ Views
Before getting into the ways of creating a file using Bash, let's first understand how Linux treats its files. Linux organizes all its data into files and files are organized into directories. Further, the directories are organized into tree-like structures called the file system. When you have to work in ... Read More

Kiran Kumar Panigrahi
7K+ Views
Both compilers and assemblers are the language processors used to convert software codes written in high-level language and assembly language into machine language codes. Compiler and assemblers are the types of system software. These are required because a computer cannot process a code written in high-level programming language like C, ... Read More

Kiran Kumar Panigrahi
59K+ Views
The main constituent of any database is its tables, in order to make data accessibility custom there is concept of Views in other words we can say that with the help of Views of a table we can restrict any user to access only that data which is supposed to ... Read More

Kiran Kumar Panigrahi
31K+ Views
In C, we have containers to hold data of same data type as well as different data types. C provides the concept of Arrays to store data variables of same type; while for storing data of different types, C has the concept of structures and unions. Both Structures and Unions ... Read More

Kiran Kumar Panigrahi
45K+ Views
In engineering analysis, a complex mathematically modelled physical system is converted into a simpler, solvable model by employing an integral transform. Once the model is solved, the inverse integral transform is used to provide the solution in the original form. There are two most commonly used integral transforms namely ... Read More

Kiran Kumar Panigrahi
64K+ Views
As processes are loaded and removed from memory, the free memory space is broken into little pieces. It may so happen after sometime that processes cannot be allocated to memory blocks considering their small size and memory blocks remain unused. This problem is known as Fragmentation. There are two types ... Read More

Kiran Kumar Panigrahi
40K+ Views
A motor in general is an electrical machine that converts electrical energy into mechanical energy. Electric motors can either be DC Motors or AC Motors, depending on the type of power supply that is supplied as its input.AC motors are further classified into two types−Asynchronous or Induction MotorSynchronous MotorA synchronous ... Read More

Kiran Kumar Panigrahi
34K+ Views
Digital as well as Analog Systems, both are used to transmit signals from one place to another like audio/video. Digital systems use binary format as 0 and 1, whereas analog systems use electronic pulses with varying magnitude to send data. Read through this article to find out more about digital ... Read More