โพHANDWRITTEN NOTES โ๏ธ โพ๏ธ
๐บDATA STRUCTURE SHORT NOTES
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 1)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 2)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 3)
๐บDBMS (DATABASE MANAGEMENT SYSTEM)NOTES
๐บC PROGRAMMING SHORT NOTES
๐บDATA STRUCTURE SHORT NOTES
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 1)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 2)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 3)
๐บDBMS (DATABASE MANAGEMENT SYSTEM)NOTES
๐บC PROGRAMMING SHORT NOTES
Please open Telegram to view this post
VIEW IN TELEGRAM
๐3
โบ๏ธ Need your help for Heroku โ๏ธ
โ๏ธ Heroku add 1$ verification process for Adding CC so it's impossible to add fake cc now.
โ๏ธ But we can do one thing, let's started tweet about it on Twitter(X)
๐ Do these steps:
1) Download & Signup Twitter (X) โ
2) Copy this message: โ
๐
#BringBackHerokuFreePlans #SupportStudents #Heroku #Salesforce
#free_heroku_for_student
#heroku
#remove_cc_for_student
5) Reply to that tweet by pasting the message you copied and saved. Or Tweet yourself ๐
โ๏ธ Heroku add 1$ verification process for Adding CC so it's impossible to add fake cc now.
โ๏ธ But we can do one thing, let's started tweet about it on Twitter(X)
๐ Do these steps:
1) Download & Signup Twitter (X) โ
2) Copy this message: โ
๐
Dear @heroku & @Salesforce, as students, we depend on your platform to learn, innovate, and build our dreams. The $1 verification is a significant barrier for many of us who don't have credit cards. Please bring back the free tier and support the future of tech.#BringBackHerokuFreePlans #SupportStudents #Heroku #Salesforce
#free_heroku_for_student
#heroku
#remove_cc_for_student
5) Reply to that tweet by pasting the message you copied and saved. Or Tweet yourself ๐
โค2๐1
Interview Question:
1. Which type of chart will you use to compare and show the sales by region in Power BI?
Answer:
To compare and show the sales by region in Power BI, a bar chart or column chart is typically used. These charts are effective for comparing data across different categories, such as regions, and they clearly display differences in sales values.
Sample Dataset:
| Region | Quarter | Product | Sales |
|---------|---------|----------|-------|
| North | Q1 | Product A| 50000 |
| North | Q1 | Product B| 30000 |
| North | Q2 | Product A| 40000 |
| North | Q2 | Product B| 35000 |
| South | Q1 | Product A| 45000 |
| South | Q1 | Product B| 25000 |
| South | Q2 | Product A| 30000 |
| South | Q2 | Product B| 32000 |
| East | Q1 | Product A| 42000 |
| East | Q1 | Product B| 28000 |
| East | Q2 | Product A| 39000 |
| East | Q2 | Product B| 31000 |
| West | Q1 | Product A| 41000 |
| West | Q1 | Product B| 29000 |
| West | Q2 | Product A| 35000 |
| West | Q2 | Product B| 29000 |
| Central | Q1 | Product A| 48000 |
| Central | Q1 | Product B| 32000 |
| Central | Q2 | Product A| 43000 |
| Central | Q2 | Product B| 31000 |
Steps to Visualize in Power BI:
1. Import the Dataset:
- Open Power BI Desktop.
- Import the dataset into Power BI.
2. Create the Bar Chart:
- In the Fields pane, select the fields Region, Quarter, Product, and Sales.
- From the Visualizations pane, select the Clustered Bar Chart or Stacked Bar Chart icon.
3. Configure the Chart:
- Drag Region to the Axis field well.
- Drag Sales to the Values field well.
- Drag Quarter and Product to the Legend or Small Multiples field well to add additional dimensions.
4. Customize the Chart:
- Add data labels to show the exact sales figures.
- Adjust colors and styles to improve readability.
- Use filters or slicers to focus on specific regions, quarters, or products if needed.
Answer Explanation:
A bar chart or column chart with additional dimensions like Quarter and Product allows for a more detailed comparison of sales by region. You can see not only the total sales per region but also how each product performs across different quarters within each region.
### Additional Interview Questions:
2. How can you create a calculated column in Power BI to show the profit margin percentage?
Answer:
To create a calculated column in Power BI to show the profit margin percentage, follow these steps:
1. Go to the Data view in Power BI Desktop.
2. Select the table where you want to create the new column.
3. Click on the New Column button in the Modeling tab.
4. Enter the formula for the calculated column. For example:
Profit Margin = (Sales - Cost) / Sales * 100
5. Press Enter.
This will create a new column in your table showing the profit margin percentage for each row.
3. What is the difference between a measure and a calculated column in Power BI?
Answer:
The key difference between a measure and a calculated column in Power BI is how and when they are calculated and used:
- A calculated column is calculated row by row when the data is loaded into the data model. It is stored in the table and can be used like any other column in the table.
- A measure, on the other hand, is calculated on the fly based on the context of the visualization. Measures are typically used for aggregations, such as sums, averages, or counts, and they are not stored in the table but are recalculated as needed.
4. How would you handle a situation where your Power BI report is performing slowly?
Answer:
To handle a situation where a Power BI report is performing slowly, you can:
1. Optimize your data model by removing unnecessary columns and tables.
1. Which type of chart will you use to compare and show the sales by region in Power BI?
Answer:
To compare and show the sales by region in Power BI, a bar chart or column chart is typically used. These charts are effective for comparing data across different categories, such as regions, and they clearly display differences in sales values.
Sample Dataset:
| Region | Quarter | Product | Sales |
|---------|---------|----------|-------|
| North | Q1 | Product A| 50000 |
| North | Q1 | Product B| 30000 |
| North | Q2 | Product A| 40000 |
| North | Q2 | Product B| 35000 |
| South | Q1 | Product A| 45000 |
| South | Q1 | Product B| 25000 |
| South | Q2 | Product A| 30000 |
| South | Q2 | Product B| 32000 |
| East | Q1 | Product A| 42000 |
| East | Q1 | Product B| 28000 |
| East | Q2 | Product A| 39000 |
| East | Q2 | Product B| 31000 |
| West | Q1 | Product A| 41000 |
| West | Q1 | Product B| 29000 |
| West | Q2 | Product A| 35000 |
| West | Q2 | Product B| 29000 |
| Central | Q1 | Product A| 48000 |
| Central | Q1 | Product B| 32000 |
| Central | Q2 | Product A| 43000 |
| Central | Q2 | Product B| 31000 |
Steps to Visualize in Power BI:
1. Import the Dataset:
- Open Power BI Desktop.
- Import the dataset into Power BI.
2. Create the Bar Chart:
- In the Fields pane, select the fields Region, Quarter, Product, and Sales.
- From the Visualizations pane, select the Clustered Bar Chart or Stacked Bar Chart icon.
3. Configure the Chart:
- Drag Region to the Axis field well.
- Drag Sales to the Values field well.
- Drag Quarter and Product to the Legend or Small Multiples field well to add additional dimensions.
4. Customize the Chart:
- Add data labels to show the exact sales figures.
- Adjust colors and styles to improve readability.
- Use filters or slicers to focus on specific regions, quarters, or products if needed.
Answer Explanation:
A bar chart or column chart with additional dimensions like Quarter and Product allows for a more detailed comparison of sales by region. You can see not only the total sales per region but also how each product performs across different quarters within each region.
### Additional Interview Questions:
2. How can you create a calculated column in Power BI to show the profit margin percentage?
Answer:
To create a calculated column in Power BI to show the profit margin percentage, follow these steps:
1. Go to the Data view in Power BI Desktop.
2. Select the table where you want to create the new column.
3. Click on the New Column button in the Modeling tab.
4. Enter the formula for the calculated column. For example:
Profit Margin = (Sales - Cost) / Sales * 100
5. Press Enter.
This will create a new column in your table showing the profit margin percentage for each row.
3. What is the difference between a measure and a calculated column in Power BI?
Answer:
The key difference between a measure and a calculated column in Power BI is how and when they are calculated and used:
- A calculated column is calculated row by row when the data is loaded into the data model. It is stored in the table and can be used like any other column in the table.
- A measure, on the other hand, is calculated on the fly based on the context of the visualization. Measures are typically used for aggregations, such as sums, averages, or counts, and they are not stored in the table but are recalculated as needed.
4. How would you handle a situation where your Power BI report is performing slowly?
Answer:
To handle a situation where a Power BI report is performing slowly, you can:
1. Optimize your data model by removing unnecessary columns and tables.
๐4โค2
2. Use relationships and filtering carefully to minimize the amount of data processed.
3. Avoid using complex DAX calculations in visuals; instead, create calculated columns or tables if needed.
4. Use aggregate tables or pre-aggregated data to reduce the volume of data processed in visuals.
5. Ensure that your data source is optimized for performance, such as indexing important columns or partitioning large tables.
6. Use Power BI Performance Analyzer to identify and troubleshoot performance bottlenecks in your report.
3. Avoid using complex DAX calculations in visuals; instead, create calculated columns or tables if needed.
4. Use aggregate tables or pre-aggregated data to reduce the volume of data processed in visuals.
5. Ensure that your data source is optimized for performance, such as indexing important columns or partitioning large tables.
6. Use Power BI Performance Analyzer to identify and troubleshoot performance bottlenecks in your report.
๐1
๐๐จ๐ฐ๐๐ซ ๐๐ ๐๐๐๐ฅ ๐๐ข๐ฆ๐ ๐๐ซ๐จ๐ฃ๐๐๐ญ ๐๐๐ซ๐ข๐๐ฌ ๐
๐๐ข๐๐๐๐ซ๐๐ง๐๐ ๐๐๐ญ๐ฐ๐๐๐ง ๐๐๐ฉ๐จ๐ซ๐ญ๐ฌ ๐ฏ๐ฌ ๐๐๐ฌ๐ก๐๐จ๐๐ซ๐๐ฌ
๐๐๐ฉ๐จ๐ซ๐ญ:
๐๐ก๐๐ซ๐ ๐ฒ๐จ๐ฎ ๐ฆ๐๐ค๐ ๐ข๐ญ: Power BI Desktop,
๐๐ก๐๐ญ ๐ข๐ญ ๐ฌ๐ก๐จ๐ฐ๐ฌ: Reports in Power BI are detailed documents that use charts, graphs, and tables to explain your data. They help you analyze trends and find insights.
๐๐๐ฌ๐ก๐๐จ๐๐ซ๐:
๐๐ก๐๐ซ๐ ๐ฒ๐จ๐ฎ ๐ฆ๐๐ค๐ ๐ข๐ญ: Power BI service
๐๐ก๐๐ญ ๐ข๐ญ ๐ฌ๐ก๐จ๐ฐ๐ฌ: Dashboards is a display of key metrics and KPIs from multiple reports. They give you a quick overview of your data.
๐๐จ๐ฎ ๐๐๐ง ๐ฌ๐๐ฅ๐๐๐ญ ๐ฏ๐ข๐ฌ๐ฎ๐๐ฅ๐ฌ ๐๐ซ๐จ๐ฆ ๐ฆ๐ฎ๐ฅ๐ญ๐ข๐ฉ๐ฅ๐ ๐ซ๐๐ฉ๐จ๐ซ๐ญ๐ฌ ๐ญ๐จ ๐๐ซ๐๐๐ญ๐ ๐ ๐ฌ๐ข๐ง๐ ๐ฅ๐ ๐๐๐ฌ๐ก๐๐จ๐๐ซ๐.
๐๐ข๐๐๐๐ซ๐๐ง๐๐ ๐๐๐ญ๐ฐ๐๐๐ง ๐๐๐ฉ๐จ๐ซ๐ญ๐ฌ ๐ฏ๐ฌ ๐๐๐ฌ๐ก๐๐จ๐๐ซ๐๐ฌ
๐๐๐ฉ๐จ๐ซ๐ญ:
๐๐ก๐๐ซ๐ ๐ฒ๐จ๐ฎ ๐ฆ๐๐ค๐ ๐ข๐ญ: Power BI Desktop,
๐๐ก๐๐ญ ๐ข๐ญ ๐ฌ๐ก๐จ๐ฐ๐ฌ: Reports in Power BI are detailed documents that use charts, graphs, and tables to explain your data. They help you analyze trends and find insights.
๐๐๐ฌ๐ก๐๐จ๐๐ซ๐:
๐๐ก๐๐ซ๐ ๐ฒ๐จ๐ฎ ๐ฆ๐๐ค๐ ๐ข๐ญ: Power BI service
๐๐ก๐๐ญ ๐ข๐ญ ๐ฌ๐ก๐จ๐ฐ๐ฌ: Dashboards is a display of key metrics and KPIs from multiple reports. They give you a quick overview of your data.
๐๐จ๐ฎ ๐๐๐ง ๐ฌ๐๐ฅ๐๐๐ญ ๐ฏ๐ข๐ฌ๐ฎ๐๐ฅ๐ฌ ๐๐ซ๐จ๐ฆ ๐ฆ๐ฎ๐ฅ๐ญ๐ข๐ฉ๐ฅ๐ ๐ซ๐๐ฉ๐จ๐ซ๐ญ๐ฌ ๐ญ๐จ ๐๐ซ๐๐๐ญ๐ ๐ ๐ฌ๐ข๐ง๐ ๐ฅ๐ ๐๐๐ฌ๐ก๐๐จ๐๐ซ๐.
๐1
โพHANDWRITTEN NOTES โ๏ธ โพ๏ธ
๐บDATA STRUCTURE SHORT NOTES
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 1)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 2)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 3)
๐บDBMS (DATABASE MANAGEMENT SYSTEM)NOTES
๐บC PROGRAMMING SHORT NOTES
๐บDATA STRUCTURE SHORT NOTES
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 1)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 2)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 3)
๐บDBMS (DATABASE MANAGEMENT SYSTEM)NOTES
๐บC PROGRAMMING SHORT NOTES
Please open Telegram to view this post
VIEW IN TELEGRAM
โค2๐2
My YOUTUBE HANDLE-
https://youtu.be/BSAh7nCzYyQ?si=ENogZEVFY_XawsNK
https://youtu.be/BSAh7nCzYyQ?si=ENogZEVFY_XawsNK
Follow karke rakho..Future me kuch bhi help chaye to Ya dosti hi rakhni ho to !!
Please open Telegram to view this post
VIEW IN TELEGRAM
๐1
*You can learn ReactJS easily ๐คฉ*
Here's all you need to get started ๐
1.Components
โข Functional Components
โข Class Components
โข JSX (JavaScript XML) Syntax
2.Props (Properties)
โข Passing Props
โข Default Props
โข Prop Types
3.State
โข useState Hook
โข Class Component State
โข Immutable State
4.Lifecycle Methods (Class Components)
โข componentDidMount
โข componentDidUpdate
โข componentWillUnmount
5.Hooks (Functional Components)
โข useState
โข useEffect
โข useContext
โข useReducer
โข useCallback
โข useMemo
โข useRef
โข useImperativeHandle
โข useLayoutEffect
6.Event Handling
โข Handling Events in Functional Components
โข Handling Events in Class Components
7.Conditional Rendering
โข if Statements
โข Ternary Operators
โข Logical && Operator
8.Lists and Keys
โข Rendering Lists
โข Keys in React Lists
9.Component Composition
โข Reusing Components
โข Children Props
โข Composition vs Inheritance
10.Higher-Order Components (HOC)
โข Creating HOCs
โข Using HOCs for Reusability
11.Render Props
โข Using Render Props Pattern
12.React Router
โข <BrowserRouter>
โข <Route>
โข <Link>
โข <Switch>
โข Route Parameters
13.Navigation
โข useHistory Hook
โข useLocation Hook
State Management
14.Context API
โข Creating Context
โข useContext Hook
15.Redux
โข Actions
โข Reducers
โข Store
โข connect Function (React-Redux)
16.Forms
โข Handling Form Data
โข Controlled Components
โข Uncontrolled Components
17.Side Effects
โข useEffect for Data Fetching
โข useEffect Cleanup
18.AJAX Requests
โข Fetch API
โข Axios Library
Error Handling
19.Error Boundaries
โข componentDidCatch (Class Components)
โข ErrorBoundary Component (Functional
Components)
20.Testing
โข Jest Testing Framework
โข React Testing Library
21. Best Practices
โข Code Splitting
โข PureComponent and React.memo
โข Avoiding Reconciliation
โข Keys for Dynamic Lists
22.Optimization
โข Memoization
โข Profiling and Performance Monitoring
23. Build and Deployment
โข Create React App (CRA)
โข Production Builds
โข Deployment Strategies
Frameworks and Libraries
24.Styling Libraries
โข Styled-components
โข CSS Modules
25.State Management Libraries
โข Redux
โข MobX
26.Routing Libraries
โข React Router
โข Reach Router
Here's all you need to get started ๐
1.Components
โข Functional Components
โข Class Components
โข JSX (JavaScript XML) Syntax
2.Props (Properties)
โข Passing Props
โข Default Props
โข Prop Types
3.State
โข useState Hook
โข Class Component State
โข Immutable State
4.Lifecycle Methods (Class Components)
โข componentDidMount
โข componentDidUpdate
โข componentWillUnmount
5.Hooks (Functional Components)
โข useState
โข useEffect
โข useContext
โข useReducer
โข useCallback
โข useMemo
โข useRef
โข useImperativeHandle
โข useLayoutEffect
6.Event Handling
โข Handling Events in Functional Components
โข Handling Events in Class Components
7.Conditional Rendering
โข if Statements
โข Ternary Operators
โข Logical && Operator
8.Lists and Keys
โข Rendering Lists
โข Keys in React Lists
9.Component Composition
โข Reusing Components
โข Children Props
โข Composition vs Inheritance
10.Higher-Order Components (HOC)
โข Creating HOCs
โข Using HOCs for Reusability
11.Render Props
โข Using Render Props Pattern
12.React Router
โข <BrowserRouter>
โข <Route>
โข <Link>
โข <Switch>
โข Route Parameters
13.Navigation
โข useHistory Hook
โข useLocation Hook
State Management
14.Context API
โข Creating Context
โข useContext Hook
15.Redux
โข Actions
โข Reducers
โข Store
โข connect Function (React-Redux)
16.Forms
โข Handling Form Data
โข Controlled Components
โข Uncontrolled Components
17.Side Effects
โข useEffect for Data Fetching
โข useEffect Cleanup
18.AJAX Requests
โข Fetch API
โข Axios Library
Error Handling
19.Error Boundaries
โข componentDidCatch (Class Components)
โข ErrorBoundary Component (Functional
Components)
20.Testing
โข Jest Testing Framework
โข React Testing Library
21. Best Practices
โข Code Splitting
โข PureComponent and React.memo
โข Avoiding Reconciliation
โข Keys for Dynamic Lists
22.Optimization
โข Memoization
โข Profiling and Performance Monitoring
23. Build and Deployment
โข Create React App (CRA)
โข Production Builds
โข Deployment Strategies
Frameworks and Libraries
24.Styling Libraries
โข Styled-components
โข CSS Modules
25.State Management Libraries
โข Redux
โข MobX
26.Routing Libraries
โข React Router
โข Reach Router
๐2
Basic web development roadmap
๐ง
1.Learn: How websites work, front-end vs back-end, code editorโโ
๐ง
2: Basic front-end:
a. Html
b. Css
c. Javascript
Expected time 7+14+30=51 days.
๐ง
3. Learn front-end frameworks:
a. Learn css framework ( Bootstrap , Tailwind css , ...)
b. Learn JavaScript frameworks ( angular, react , vue...)
Expected time minimum 60 days.
๐ง
4. Learn database
a. MySQL
b. MongoDB
There are many more. Choose one and learn.
๐ง
5. Learn backend programming languages:
a. Php
b. Nodejs
There are many more. Learn any one.
Expected time: 60 days
๐ง
6. Do some projects and clone some websites.
โซ๏ธโซ๏ธ๐งโซ๏ธโซ๏ธ
๐ง
1.Learn: How websites work, front-end vs back-end, code editorโโ
๐ง
2: Basic front-end:
a. Html
b. Css
c. Javascript
Expected time 7+14+30=51 days.
๐ง
3. Learn front-end frameworks:
a. Learn css framework ( Bootstrap , Tailwind css , ...)
b. Learn JavaScript frameworks ( angular, react , vue...)
Expected time minimum 60 days.
๐ง
4. Learn database
a. MySQL
b. MongoDB
There are many more. Choose one and learn.
๐ง
5. Learn backend programming languages:
a. Php
b. Nodejs
There are many more. Learn any one.
Expected time: 60 days
๐ง
6. Do some projects and clone some websites.
โซ๏ธโซ๏ธ๐งโซ๏ธโซ๏ธ
๐5โค2
Here's a short roadmap to crack an IT job with a non-CS background ๐
1. ๐ Learn basics of CS and programming.
2. ๐ฏ Choose a specialization (e.g., web dev, data analysis).
3. ๐ Complete online courses and certifications.
4. ๐ ๏ธ Build a portfolio of projects.
5. ๐ค Network with professionals.
6. ๐ผ Seek internships for experience.
7. ๐ Keep learning and stay updated.
8. ๐ง Develop soft skills.
9. ๐ Prepare for interviews.
10. ๐ช Stay persistent and positive! Good luck!
1. ๐ Learn basics of CS and programming.
2. ๐ฏ Choose a specialization (e.g., web dev, data analysis).
3. ๐ Complete online courses and certifications.
4. ๐ ๏ธ Build a portfolio of projects.
5. ๐ค Network with professionals.
6. ๐ผ Seek internships for experience.
7. ๐ Keep learning and stay updated.
8. ๐ง Develop soft skills.
9. ๐ Prepare for interviews.
10. ๐ช Stay persistent and positive! Good luck!
โค1
๐๐ถ๐ ๐๐ ๐๐ถ๐๐๐๐ฏ: What's the Difference?
Ever mixed up Git and GitHub? Youโre not aloneโtheyโre related but serve distinct purposes!
๐๐ข๐ญ: A powerful version control system that tracks changes in your code. Itโs your local toolkit for managing versions, rolling back changes, and collaborating.
๐๐ข๐ญ๐๐ฎ๐: A cloud-based platform that hosts Git repositories online. It enhances collaboration by letting you share, review, and manage codeโthink of it as a social network for developers.
In short:
Git = Local version control tool
GitHub = Cloud-based hosting service for Git repositories
Understanding the difference can significantly improve your workflow and collaboration in software development!
Ever mixed up Git and GitHub? Youโre not aloneโtheyโre related but serve distinct purposes!
๐๐ข๐ญ: A powerful version control system that tracks changes in your code. Itโs your local toolkit for managing versions, rolling back changes, and collaborating.
๐๐ข๐ญ๐๐ฎ๐: A cloud-based platform that hosts Git repositories online. It enhances collaboration by letting you share, review, and manage codeโthink of it as a social network for developers.
In short:
Git = Local version control tool
GitHub = Cloud-based hosting service for Git repositories
Understanding the difference can significantly improve your workflow and collaboration in software development!
๐2โค1
What Is MERN?
MERN Stack is a Javascript Stack that is used for easier and faster deployment of full-stack web applications. MERN Stack comprises of 4 technologies namely: MongoDB, Express, React and Node.js. It is designed to make the development process smoother and easier.
MongoDB
MongoDb is a NoSQL DBMS where data is stored in the form of documents having key-value pairs similar to JSON objects. MongoDB enables users to create databases, schemas and tables.
ExpressJS
ExpressJS is a NodeJS framework that simplifies writing the backend code. It saves you from creating multiple Node modules.
ReactJS
ReactJS is a JS library that allows the development of user interfaces for mobile apps and SPAs. It allows you to code Javascript and develop UI components.
NodeJS
NodeJS is an open-source Javascript runtime environment that allows users to run code on the server.
MERN Stack is a Javascript Stack that is used for easier and faster deployment of full-stack web applications. MERN Stack comprises of 4 technologies namely: MongoDB, Express, React and Node.js. It is designed to make the development process smoother and easier.
MongoDB
MongoDb is a NoSQL DBMS where data is stored in the form of documents having key-value pairs similar to JSON objects. MongoDB enables users to create databases, schemas and tables.
ExpressJS
ExpressJS is a NodeJS framework that simplifies writing the backend code. It saves you from creating multiple Node modules.
ReactJS
ReactJS is a JS library that allows the development of user interfaces for mobile apps and SPAs. It allows you to code Javascript and develop UI components.
NodeJS
NodeJS is an open-source Javascript runtime environment that allows users to run code on the server.
๐5โค1
โพHANDWRITTEN NOTES โ๏ธ โพ๏ธ
๐บDATA STRUCTURE SHORT NOTES
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 1)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 2)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 3)
๐บDBMS (DATABASE MANAGEMENT SYSTEM)NOTES
๐บC PROGRAMMING SHORT NOTES
๐บDATA STRUCTURE SHORT NOTES
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 1)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 2)
๐บDATA STRUCTURE
INTERVIEW SERIES ๐น(PART - 3)
๐บDBMS (DATABASE MANAGEMENT SYSTEM)NOTES
๐บC PROGRAMMING SHORT NOTES
Please open Telegram to view this post
VIEW IN TELEGRAM
๐2
How Git Works - From Working Directory to Remote Repository
[1]. Working Directory:
Your project starts here. The working directory is where you actively make changes to your files.
[2]. Staging Area (Index):
After modifying files, use git add to stage changes. This prepares them for the next commit, acting as a checkpoint.
[3]. Local Repository:
Upon staging, execute git commit to record changes in the local repository. Commits create snapshots of your project at specific points.
[4]. Stash (Optional):
If needed, use git stash to temporarily save changes without committing. Useful when switching branches or performing other tasks.
[5]. Remote Repository:
The remote repository, hosted on platforms like GitHub, is a version of your project accessible to others. Use git push to send local commits and git pull to fetch remote changes.
[6]. Remote Branch Tracking:
Local branches can be set to track corresponding branches on the remote. This eases synchronization with git pull or git push.
[1]. Working Directory:
Your project starts here. The working directory is where you actively make changes to your files.
[2]. Staging Area (Index):
After modifying files, use git add to stage changes. This prepares them for the next commit, acting as a checkpoint.
[3]. Local Repository:
Upon staging, execute git commit to record changes in the local repository. Commits create snapshots of your project at specific points.
[4]. Stash (Optional):
If needed, use git stash to temporarily save changes without committing. Useful when switching branches or performing other tasks.
[5]. Remote Repository:
The remote repository, hosted on platforms like GitHub, is a version of your project accessible to others. Use git push to send local commits and git pull to fetch remote changes.
[6]. Remote Branch Tracking:
Local branches can be set to track corresponding branches on the remote. This eases synchronization with git pull or git push.
๐3โค1