Sequence of Commands to upload a NEXT JS Project on vercelTo upload a Next.js project to Vercel, you can follow these steps: Install the Vercel CLI (Command Line Interface) globally on your machine if you haven't already. You can install it using npm: npm install -g vercel Navigate to the root directory...May 27, 2023·1 min read
Top 20 mostly asked Dsa Graph questions in interviewImplement Dijkstra's algorithm: This question is commonly asked by companies like Google, Amazon, Microsoft, and Facebook. Implement Kruskal's algorithm: This question is commonly asked by companies like Amazon, Microsoft, and Google. Implement Pri...Mar 7, 2023·2 min read
UseEffect Hook in react jsuseEffect is a React hook that allows you to perform side effects in your functional components. Side effects are actions that are performed outside of the component, such as updating the document title or making an API call. Here's an example of how...Mar 7, 2023·2 min read
What is Hackathon ?Hackathons are collaborative events where participants gather to solve a specific problem or create a new product or service within a limited time frame, usually ranging from a few hours to several days. These events can be in-person or online and ty...Mar 5, 2023·2 min read
Top Most Linux CommandsThere are many Linux commands available, but some of the most commonly used and important ones include: ls: Lists the files and directories in the current directory. cd: Changes the current directory to another directory. mkdir: Creates a new dire...Mar 5, 2023·1 min read
Top 50 most asked dsa theory interview questionsSure, here are 50 commonly asked data structures and algorithms (DSA) interview questions: What are data structures? What are the different types of data structures? What is an algorithm? What is the difference between an algorithm and a data str...Mar 4, 2023·2 min read
Different types of Fetch MethodsIn React.js, there are several types of fetch methods available to make HTTP requests to APIs and retrieve data. These include: Fetch API: The Fetch API is a browser built-in function for making HTTP requests that returns a Promise object. It allows...Mar 4, 2023·2 min read