Update new tags on roadmaps

pull/5075/head
Kamran Ahmed 10 months ago
parent 747652c0f3
commit 5bcb3e282d
  1. 2
      src/data/question-groups/javascript/javascript.md
  2. 16
      src/data/question-groups/nodejs/nodejs.md
  3. 2
      src/data/question-groups/react/react.md
  4. 2
      src/data/roadmaps/android/android.md
  5. 2
      src/data/roadmaps/cpp/cpp.md

@ -4,7 +4,7 @@ briefTitle: 'JavaScript'
briefDescription: 'Test, rate and improve your JavaScript knowledge with these questions.' briefDescription: 'Test, rate and improve your JavaScript knowledge with these questions.'
title: 'JavaScript Questions' title: 'JavaScript Questions'
description: 'Test, rate and improve your JavaScript knowledge with these questions.' description: 'Test, rate and improve your JavaScript knowledge with these questions.'
isNew: true isNew: false
seo: seo:
title: 'JavaScript Questions' title: 'JavaScript Questions'
description: 'Curated list of JavaScript questions to test, rate and improve your knowledge. Questions are based on real world experience and knowledge.' description: 'Curated list of JavaScript questions to test, rate and improve your knowledge. Questions are based on real world experience and knowledge.'

@ -3,7 +3,7 @@ order: 1
briefTitle: 'Node.js' briefTitle: 'Node.js'
briefDescription: 'Test, rate and improve your Node.js knowledge with these questions.' briefDescription: 'Test, rate and improve your Node.js knowledge with these questions.'
title: 'Node.js Questions' title: 'Node.js Questions'
description: 'Curated list of Node.js questions to test, rate and improve your knowledge. Questions are based on real world experience and knowledge.' description: 'Test, rate and improve your Node.js knowledge with these questions.'
isNew: true isNew: true
seo: seo:
title: 'Node.js Questions' title: 'Node.js Questions'
@ -36,7 +36,7 @@ questions:
- 'Beginner' - 'Beginner'
- question: What is Event Loop in Node.js? - question: What is Event Loop in Node.js?
answer: | answer: |
The event loop is a single-threaded loop responsible for handling all asynchronous callbacks in Node.js. It continuously checks for events and executes associated callback functions, allowing Node.js to handle asynchronous tasks efficiently. Its non-blocking I/O model ensures that it can process multiple operations simultaneously without waiting for one to complete before moving on to the next, contributing to its scalability and performance. The event loop is a single-threaded loop responsible for handling all asynchronous tasks in Node.js. It continuously checks for events and executes associated callback functions, allowing Node.js to handle asynchronous tasks efficiently. Its non-blocking I/O model ensures that it can process multiple operations simultaneously without waiting for one to complete before moving on to the next, contributing to its scalability and performance. [Watch this video](https://www.youtube.com/watch?v=8aGhZQkoFbQ) to learn more about the topic.
topics: topics:
- 'Core' - 'Core'
- 'Intermediate' - 'Intermediate'
@ -160,7 +160,7 @@ questions:
- question: How to take user input from the command line in Node.js? - question: How to take user input from the command line in Node.js?
answer: input-from-command-line.md answer: input-from-command-line.md
topics: topics:
- 'Core' - 'CLI'
- 'Beginner' - 'Beginner'
- question: How to create a web server in Node.js? - question: How to create a web server in Node.js?
answer: web-server.md answer: web-server.md
@ -172,19 +172,19 @@ questions:
Streams are objects that allow you to read data from a source or write data to a destination in a continuous manner. They are used to handle large amounts of data efficiently. Streams are objects that allow you to read data from a source or write data to a destination in a continuous manner. They are used to handle large amounts of data efficiently.
topics: topics:
- 'Core' - 'Core'
- 'Intermediate' - 'Advanced'
- question: What is difference between `fork` and `spawn` methods of `child_process` module? - question: What is difference between `fork` and `spawn` methods of `child_process` module?
answer: | answer: |
The `fork` method is used when you want to run another JavaScript file in a separate worker. It's like having a friend with a specific task. You can communicate with them via messages and they can send messages back to you. The `spawn` method is used when you want to run a command in a separate process. It's like asking someone to do a specific. You can communicate with them via stdin/stdout/stderr, but it's more like giving orders and getting results. The `fork` method is used when you want to run another JavaScript file in a separate worker. It's like having a friend with a specific task. You can communicate with them via messages and they can send messages back to you. The `spawn` method is used when you want to run a command in a separate process. It's like asking someone to do a specific. You can communicate with them via stdin/stdout/stderr, but it's more like giving orders and getting results.
topics: topics:
- 'Core' - 'Core'
- 'Intermediate' - 'Advanced'
- question: What is the `os` module? - question: What is the `os` module?
answer: | answer: |
The `os` module provides methods for interacting with the operating system. It can be used to get information about the operating system, such as the hostname, platform, architecture, etc. The `os` module provides methods for interacting with the operating system. It can be used to get information about the operating system, such as the hostname, platform, architecture, etc.
topics: topics:
- 'Core' - 'Core'
- 'Beginner' - 'Intermediate'
- question: Can you access the DOM in Node.js? - question: Can you access the DOM in Node.js?
answer: | answer: |
No, you cannot access the DOM in Node.js because it does not have a DOM. It is a server-side runtime for JavaScript, so it does not have access to the browser's DOM. No, you cannot access the DOM in Node.js because it does not have a DOM. It is a server-side runtime for JavaScript, so it does not have access to the browser's DOM.
@ -196,8 +196,8 @@ questions:
Clustering is a technique used to distribute the load across multiple processes. It is used to improve the performance and scalability of Node.js applications. Clustering is a technique used to distribute the load across multiple processes. It is used to improve the performance and scalability of Node.js applications.
topics: topics:
- 'Core' - 'Core'
- 'Intermediate' - 'Advanced'
- question: Why memory leak happens in Node.js? - question: How can memory leaks happen in Node.js?
answer: | answer: |
Memory leaks happen when a program allocates memory but does not release it when it is no longer needed. This can happen due to bugs in the program or due to the way the program is designed. In Node.js, memory leaks can happen due to the use of closures, circular references, and global variables. Memory leaks happen when a program allocates memory but does not release it when it is no longer needed. This can happen due to bugs in the program or due to the way the program is designed. In Node.js, memory leaks can happen due to the use of closures, circular references, and global variables.
topics: topics:

@ -4,7 +4,7 @@ briefTitle: 'React'
briefDescription: 'Test, rate and improve your React knowledge with these questions.' briefDescription: 'Test, rate and improve your React knowledge with these questions.'
title: 'React Questions' title: 'React Questions'
description: 'Test, rate and improve your React knowledge with these questions.' description: 'Test, rate and improve your React knowledge with these questions.'
isNew: true isNew: false
seo: seo:
title: 'React Questions' title: 'React Questions'
description: 'Curated list of React questions to test, rate and improve your knowledge. Questions are based on real world experience and knowledge.' description: 'Curated list of React questions to test, rate and improve your knowledge. Questions are based on real world experience and knowledge.'

@ -6,7 +6,7 @@ briefDescription: 'Step by step guide to becoming an Android Developer in 2024'
title: 'Android Developer' title: 'Android Developer'
description: 'Step by step guide to becoming an Android developer in 2024' description: 'Step by step guide to becoming an Android developer in 2024'
hasTopics: true hasTopics: true
isNew: true isNew: false
dimensions: dimensions:
width: 968 width: 968
height: 2197.76 height: 2197.76

@ -6,7 +6,7 @@ briefTitle: 'C++'
briefDescription: 'Step by step guide to becoming a C++ Developer in 2024' briefDescription: 'Step by step guide to becoming a C++ Developer in 2024'
title: 'C++ Developer Roadmap' title: 'C++ Developer Roadmap'
description: 'Step by step guide to becoming a C++ developer in 2024' description: 'Step by step guide to becoming a C++ developer in 2024'
isNew: true isNew: false
hasTopics: true hasTopics: true
dimensions: dimensions:
width: 1000 width: 1000

Loading…
Cancel
Save