Why Data Structures and Algorithms are “Must Have” for Developers and Where...
With advancement and innovation in technology, programming is becoming a highly in-demand skill for Software Developers. Everything you see around yourself from Smart TVs, ACs,… Read More » The post...
View ArticleDifference between High Level and Low level languages
Both High level language and low level language are the programming languages’s types. The main difference between high level language and low level language is… Read More » The post Difference between...
View ArticleObservables : KnockoutJS
INTRODUCTION TO OBSERVABLES: Special Object Property that changes dynamically through User Interaction, can notify subscribers about changes and automatically detect dependencies. FEATURES: Reading and...
View ArticleCheck if the two given stacks are same
Given two Stacks, the task is to check if the given stacks are same or not. Two stacks are said to be same if they… Read More » The post Check if the two given stacks are same appeared first on...
View ArticleData Structures and Algorithms Online Courses : Free and Paid
Data Structures and Algorithms are one of the most important skills that every computer science student must have. It is often seen that people with… Read More » The post Data Structures and Algorithms...
View ArticleIntroduction to Model View View Model (MVVM)
BASIC INTRODUCTION: [ Way to Structure Code ] Note : Link between Model and View Model is Manipulating Data and between ViewModel and View is… Read More » The post Introduction to Model View View Model...
View ArticleAI Model For Neurodegenerative Diseases
I. ABSTRACT Models of neural networks are receiving widespread attention as potential new architectures for computing systems. The models we consider here consist of highly… Read More » The post AI...
View ArticleProgram for Gauss Siedel Method (Computational Mathematics)
The Gauss Seidel method is an iterative process to solve a square system of (multiple) linear equations. It is also prominently known as ‘Liebmann’ method.… Read More » The post Program for Gauss...
View ArticleWhat is the Role of Java in the IT Industry?
The IT industry, especially in India, heavily uses Java in most of their projects. Being a Java developer, one should have the knowledge about the… Read More » The post What is the Role of Java in the...
View ArticleSum of an array using MPI
Prerequisite: MPI – Distributed Computing made easy Message Passing Interface(MPI) is a library of routines that can be used to create parallel programs in C… Read More » The post Sum of an array using...
View ArticleInteresting Facts in C Programming | Set 2
Below are some more interesting facts about C programming: 1. Macros can have unbalanced braces: When we use #define for a constant, the preprocessor produces… Read More » The post Interesting Facts in...
View ArticleOptimized Longest Path is NP Complete
Optimized Longest Path Problem: The optimized longest path problem states that given a graph G, of a set of vertices V and edges E, the… Read More » The post Optimized Longest Path is NP Complete...
View ArticleEfficient ways to compare a variable with multiple values
In this article, we will discuss the ways to compare a variable with values. Method 1: The idea is to compare each variable individually to… Read More » The post Efficient ways to compare a variable...
View ArticleFlutter – AppBar Widget
AppBar is usually the topmost component of the app (or sometimes the bottom-most), it contains the toolbar and some other common action buttons. As all… Read More » The post Flutter – AppBar Widget...
View ArticleDifference between sizeof(int *) and sizeof(int) in C/C++
sizeof() is commonly used operator in the C or C++. It is a compile-time unary operator that can be used to compute the size of… Read More » The post Difference between sizeof(int *) and sizeof(int) in...
View ArticleMost important type of Algorithms
Algorithm: An algorithm is a step-by-step procedure to solve a problem. A good algorithm should be optimized in terms of time and space. Different types of… Read More » The post Most important type of...
View ArticleDocker – COPY Instruction
In Docker, there are two ways to copy a file, namely, ADD and COPY. Though there is a slight difference between them in regard to… Read More » The post Docker – COPY Instruction appeared first on...
View ArticleSubset Sum is NP Complete
Prerequisite: NP-Completeness, Subset Sum Problem Subset Sum Problem: Given N non-negative integers a1…aN and a target sum K, the task is to decide if there… Read More » The post Subset Sum is NP...
View ArticleThe Slowest Sorting Algorithms
A Sorting Algorithm is used to rearrange a given array or list elements according to a comparison operator on the elements. The comparison operator is… Read More » The post The Slowest Sorting...
View ArticleDifference between Min Heap and Max Heap
A Heap is a special Tree-based data structure in which the tree is a complete binary tree. Since a heap is a complete binary tree,… Read More » The post Difference between Min Heap and Max Heap...
View Article