Published in Towards Dev·PinnedGo Language — Part 1(What is Go Language and Setup the Environment)GO Language is also known as Golang. In this article, I’ll explain basic information about Go Language. We will build a basic application to understand the theories of the Go Language. Why Go Language? Go is a programming language developed at Google in 2007. And it is open-sourced. But at that time there…Go6 min read
May 1MongoDB Query Exercises and SolutionsMongoDB is an open-source NoSQL database management program. NoSQL is used as an alternative to traditional relational databases. NoSQL databases are quite useful for working with large sets of distributed data. MongoDB is a tool that can manage document-oriented information, and store or retrieve information. MongoDB supports various forms of…Mongodb7 min read
Apr 13React Tutorial A Step-by-Step Guide(2)In this tutorial, I am going to explain the Folder Structure of React applications, What is a React component in a detailed manner, and How we can use them. Folder Structure of React Application It is really important to understand the Files and the Folders involved and How the control flows when you run the…React7 min read
Apr 10React Tutorial A Step-by-Step Guide(1)In this React tutorial, I will explain What is React, Why should you learn React, and the technical aspects of React. In the end, I will show how to start a simple React application. What is React? React is an open-source javascript library for building user interfaces. React is not a framework. It's…React6 min read
Apr 2Difference Between == and .equals() Method in JavaIn this article, we discuss all .equals() method and == operator in Java. You will get a deep understanding of these 2 concepts and their usages. Let’s say you have two integers number1 and number2. Let's try to compare these two integers using the equals(“==”) operator. I am going to…Equals Method Java6 min read
Mar 30Comparable vs Comparator in JavaIn this article, I will explain about What is the difference between Comparator and Comparable. And when to use Comparable and Comparator. First, let's identify the difference between these two sectors. Comparable Comparable provides a single sorting sequence. In other words, we can sort the collection on the basis of a…Comparable5 min read
Published in Geek Culture·Mar 20What is Apache Kafka?In this tutorial, I am going to simply explain what is apache Kafka, what is the History behind Apache Kafka, What are the key concepts which make Apache Kafka such a unique platform with some examples and Apache Kafka Architecture. Apache Kafka is a, Distributed Event Streaming Message Publish/ Subscribe …Kafka11 min read
Mar 18“super” vs “this” in JavaIn this tutorial, I am going to explain the difference between “super” and “this” keywords in Java and what scenarios we can use these keywords. These 2 keywords are very important and frequently used in Java. Super Keyword and Usage The super keyword is a reference variable that is used to refer to the…Java6 min read
Mar 15Marker Interfaces in JavaIn this tutorial, I am going to explain Marker Interfaces in Java and the Uses of Marker Interfaces. First of all, you should know What is an Interface. When we talk about Interfaces we should know about Classes. Class means it's just a blueprint to create Objects. IN class we…Marker Interface5 min read
Mar 11Strings are Immutable in JavaIn this tutorial I am going to explain Why Strings are Immutable, Immutable Objects and How to use the new keyword with Strings. Immutable Objects Immutable Objects are Objects whose contents can not be changed. You already know that content is a variable whose value cannot be changed. Similarly, an Immutable object…Java Strings5 min read