Featured

ReactJS – JSX and Props

INTRODUCTION In this blog article, I will provide an overview of JSX and Props. In ReactJS, JSX is how we define our UI and Props is how we pass data from one component to another. JSX is similar to HTML. First let me begin with JSX JSX: Standard way of defining UI Javascript XML(JSX) lets […]

Read More ReactJS – JSX and Props

Palindrome validation

Hello everyone, Today we are going to talk about checking whether the string is a palindrome or not. With this, we will also be demonstrating that in programming a problem can have various solutions and we have to dig deeper to find the best solutions among them. Let’s begin. A Palindrome is a string that […]

Read More Palindrome validation

Binary search

Hello everyone, today I am here with a new blog. This will be about Searching Problem and it’s solution: Binary Search Algorithm. This is very crucial algorithm for getting better understanding of searching in Programming as well as for examinations and interviews. Without further ado, let’s begin with searching problem shall we. Assume, you have […]

Read More Binary search

REACTJS – Context API

Previously in ReactJS series, we learned about React states as objects that are mutable through setter and adds reactivity to the Component. In this blog, I am going to write about Context API, which allows multiple components to use the same state and helps avoid prop drilling. With Context API, we will avoid having to […]

Read More REACTJS – Context API

Reactjs – State

Introduction In the previous blog of the ReactJS series I wrote about JSX and Props and how they allow us to render HTML and pass data among components respectively. Next, I would like to discuss about state management. State in ReactJS Components State in ReactJS helps us manage changing data in Components or the Application. […]

Read More Reactjs – State

Integration Management – Develop Project Charter

Integration Management is a process by which all the other processes and activities in a project are identified, defined, coordinated and unified. The actions of Project Integration Management are to be applied from the start of the project through completion. It includes decisions relating to: Matching processes to project objectives Resource Allocation Balancing competing demands […]

Read More Integration Management – Develop Project Charter

System Development Lifecycle

Welcome! In previous blog of Project Management series, I wrote about project management framework. If you have not read that, you can read it here. Alongside Project Management framework following two concepts are the building blocks of Project Management, specially in the Software Development and IT Domain: 1. System Development Lifecycle (Phases) 2. System Development […]

Read More System Development Lifecycle

Memory Types and Hierarchy

In the previous computer architecture blog I discussed about Von Neuman architecture and it’s components. Now I am going to dive deeper into Computer Organization. The basic computer organization requires following system and techniques: a. Memory Syste, b. Input Output System, c. Secondary Storage Techniques and d. I/O Technology. In this blog, I will try […]

Read More Memory Types and Hierarchy

Project Management Framework

In previous blog of this series, I discussed what project is and how it is constrained by time, scope and cost. In this project, I am going to discuss about Project Management Framework and it’s components. PROJECT MANAGEMENT Project Management can be defined as executing various project activities by applying knowledge, skills, tools and techniques […]

Read More Project Management Framework