Kiran Kumar Panigrahi has Published 392 Articles

Difference between Method Overloading and Method Overriding in Java

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 14-Apr-2025 10:40:50

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

Difference between Object and Class in Java

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 12-Apr-2025 16:28:00

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

How to Create a File in Linux from the Command Line?

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 13-Mar-2025 14:40:52

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

Difference between Compiler and Assembler

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 15-Jan-2025 16:23:47

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

Difference between Views and Materialized Views in SQL

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 23-Dec-2024 19:33:23

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

Difference between Structure and Union in C Program

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 28-Jun-2024 00:12:04

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

Difference between Laplace Transform and Fourier Transform

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 07-Nov-2023 13:41:31

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

Difference between Internal Fragmentation and External Fragmentation

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 07-Nov-2023 04:19:54

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

Difference between Synchronous Motor and Induction Motor

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 03-Nov-2023 21:41:21

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

Differences between Digital and Analog System.

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 03-Nov-2023 13:06:53

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

1 2 3 4 5 ... 40 Next
Advertisements