Aditya PahilwaniforAditya 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...Rutik Wankhade and 13 others are discussing this14 people are discussing thisDiscuss·288 likes·2.7K readsinternships
Uduak Obong-ErenforG33k Chroniclesmeekg33k.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 ...Victoria Lo and 4 others are discussing this5 people are discussing thisDiscuss·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...Alberto Bonacina and 6 others are discussing this7 people are discussing thisDiscuss·185 likes·827 readsGeneral AdviceQuality writers 🙌💛 And I love reading their blog posts. 3
Kenneth Darrick QuigginsforKen's Codekenscode.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. ...DiscussGraph
Anirudha Patilforatomicjuggernaut.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...DiscussJavaScript
Rajib MondalforDeveloper's Dunerajibmondal.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...DiscussSystem Design
Om DhanwantforCodeCraftcode-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...Discuss·11 likesJavascript Core ConceptsJavaScript
Abhishek Yadavforitabhishekyadav.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...Discuss·46 readsDevops
Anirudha Patilforatomicjuggernaut.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...Discuss·1 likeGeneral Programming
Swetha VechalapuforSwetha Vechalapu's blogswethavechalapu.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); } } } ...DiscussJava
Anirudha Patilforatomicjuggernaut.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...Discuss·2 likesJavaScript
Jayraj Singhforjayrajblog.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...Discuss·31 readsJavaScript
Saravana Sai forSaravana sai blogsaravanasai.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...Discuss·33 readsSoftware Engineering