Aditya Pahilwaniaditya01.hashnode.netยทJun 7, 2021FeaturedThe Stonks Guide To Getting Your First InternshipHello Everyone! I got something amazing to share, I have joined Grofers as a React-Native Intern. I am very grateful to join them and very thankful to my family, friends, and mentors who have supported me. So before Grofers, I was scouting to get a s...288 likesยท2.7K readsinternships
Uduak Obong-Erenmeekg33k.hashnode.netยทMar 11, 2021Featured6 Red Flags I Saw While Doing 60+ Technical Interviews in 30 DaysWhat is the one thing you would look out for if you had to join a company? Sometime between January and March 2020, I wanted to change jobs and was looking to join a new company. This, among other reasons, led me to embark on a marathon of technical ...221 likesยท45.7K readsinterview
Catalin PitforHashnode Town Hallarrogant-crook-interrupt-85.hashnode.netยทJun 17, 2021FeaturedLet's Talk With May's Top 5 Hashnode AuthorsAt Hashnode, we are always on the lookout for ways to uplift existing writers. Thus, with this article, we start another initiative whose purpose is to give a platform to Hashnode writers. Each month, we invite the top five authors to answer a series...185 likesยท827 readsGeneral Advice
Kenneth Darrick Quigginskenscode.hashnode.netยทApr 25, 2023Graph Data StructureInitializing a Graph When a new graph object is created using the Graph() constructor, an empty dictionary is initialized in the __init__ method: def __init__(self): self.adj_list = {} This dictionary will hold the adjacency list for the graph. ...Graph
Anirudha Patilatomicjuggernaut.hashnode.netยทApr 25, 20232.2 JavaScript Interview Preparation: Array ManipulationAs a beginner in JavaScript, it is essential to learn how to manipulate arrays, which are one of the most commonly used data structures in JavaScript. Manipulating arrays involves adding, removing, inserting, or replacing elements in an array. In thi...JavaScript
Rajib Mondalrajibmondal.hashnode.netยทApr 25, 2023How to approach System Design interview questionsKey Outlines for this article I. Introduction Brief overview of what system design interviews are and why they matter Explanation of the purpose of the article and what readers can expect to learn II. Understanding the Problem Importance of clar...System Design
Om Dhanwantcode-craft.hashnode.netยทApr 24, 2023call() , apply() and bind() methods in javascriptA most asked javascript Interview question. JavaScript provides three methods for manipulating the this keyword in functions: call(), apply(), and bind(). These methods allow you to change the context of the this keyword, which can be useful for cont...11 likesJavascript Core ConceptsJavaScript
Abhishek Yadavitabhishekyadav.hashnode.netยทApr 24, 2023Day 29 Task: Jenkins Important interview Questions.Questions Whatโs the difference between continuous integration, continuous delivery, and continuous deployment? Benefits of CI/CD What is meant by CI-CD? What is Jenkins Pipeline? How do you configure the job in Jenkins? Where do you find error...46 readsDevops
Anirudha Patilatomicjuggernaut.hashnode.netยทApr 24, 20232.1 JavaScript Interview Preparation: ArraysIf you are new to JavaScript, one of the essential concepts to grasp is arrays. An array is a data structure used to store a collection of values or elements under a single variable name. It is an ordered list of values that can be accessed and manip...1 likeGeneral Programming
Swetha Vechalapuswethavechalapu.hashnode.netยทApr 24, 2023Java Interview QuestionsCommand line arguments This program shows working example of command line arguments public class CommandLineArgument { public static void main(String[] args) { for(String t: args) { System.out.println(t); } } } ...Java
Anirudha Patilatomicjuggernaut.hashnode.netยทApr 23, 2023Ep. 4 How functions work in JS โค๏ธ & Variable Environment - HOISTING | Namaste JavaScriptIf you're new to JavaScript, you may have heard the term "hoisting" thrown around but not fully understood what it means. In this article, we'll dive into the concept of hoisting and how it affects the way your code is executed. What is Hoisting in J...2 likesJavaScript
Jayraj Singhjayrajblog.hashnode.netยทApr 23, 2023"Mastering the Top 5 Most Asked Topics in JavaScript: A Comprehensive Guide for Developers"Call In javascript call() is a built-in method of the Function prototype that allows you to call a function with a specified this value and arguments provided individually.The call() method is similar to the apply() method, except that it takes argum...31 readsJavaScript
Saravana Sai saravanasai.hashnode.netยทApr 23, 2023Why Micro Service Architecture?Introduction Hi, Folks I'm so excited to share my thoughts on the need for microservice architecture in 2023. I hope you'll find something that resonates with you. So sit back, grab a cup of coffee, and dive in! Pre-requisites Before getting into the...33 readsSoftware Engineering