Skip to content

Commit d0c49a0

Browse files
committed
updated
1 parent c4c2db7 commit d0c49a0

File tree

4 files changed

+412
-0
lines changed

4 files changed

+412
-0
lines changed
+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# MongoDB Questions (Query Operations and Projection)
2+
3+
## Q1. What are MongoDB query operators? Provide some examples.
4+
5+
MongoDB query operators are used to specify criteria in queries and to perform a variety of operations, such as comparison, logical operations, and element evaluation.
6+
7+
* **$eq**: Matches values that are equal to a specified value.
8+
* **$gt**: Matches values that are greater than a specified value.
9+
* **$lt**: Matches values that are less than a specified value.
10+
* **$in**: Matches any of the values specified in an array.
11+
* **$and**: Joins query clauses with a logical AND.
12+
* **$or**: Joins query clauses with a logical OR.
13+
14+
## Q2. How does the $regex operator work in MongoDB? Provide an example query.
15+
16+
The `$regex` operator provides regular expression capabilities for pattern matching strings in queries.
17+
18+
```json
19+
{ "name": { "$regex": "^A", "$options": "i" } }
20+
```
21+
22+
## Q3. Explain how to use the $regex operator to find documents where the 'name' field starts with 'apple'.
23+
24+
```json
25+
db.products.find({ name: /^apple/ });
26+
```
27+
28+
## Q3. What is projection in MongoDB and why is it useful?
29+
30+
Projection in MongoDB is the process of selecting specific fields to return in query results. It is useful for:
31+
32+
* Reducing the amount of data transferred over the network.
33+
* Improving query performance by retrieving only necessary data.
34+
35+
```json
36+
db.collection.find({ "status": "active" }, { "name": 1, "email": 1, "_id": 0 })
37+
```
38+
39+
## Q4. How do you perform a projection to exclude specific fields in MongoDB?
40+
41+
To exclude specific fields in a projection, set their values to 0.
42+
43+
```json
44+
db.collection.find({}, { "password": 0, "creditCardNumber": 0 })
45+
```
46+
>This query returns all fields except password and creditCardNumber.
47+
48+
## Q5. What is the purpose of the $slice operator in MongoDB projection? Provide an example.
49+
50+
The `$slice` operator limits the number of elements in an array returned by a query.
51+
52+
```json
53+
db.collection.find({}, { "comments": { "$slice": 5 } })
54+
```
55+
56+
## Q6. Describe how the $elemMatch projection operator works. Provide an example.
57+
58+
The $elemMatch projection operator limits the contents of an array field to contain only the first element that matches the specified query condition.
59+
60+
```json
61+
db.collection.find(
62+
{ "results": { "$elemMatch": { "score": { "$gt": 80 } } } },
63+
{ "results": { "$elemMatch": { "score": { "$gt": 80 } } } }
64+
)
65+
```
66+
67+
This query matches documents where the `results` array contains at least one element with a `score` greater than 80, and projects only that element.
68+
69+
## Q7. What is the purpose of the $ operator in projections, and how does it differ from its use in updates?
70+
71+
In projections, the `$` operator limits the output to contain only the first array element that matches the query condition. In updates, it identifies the first matching element in an array for modification.
72+
73+
```json
74+
db.collection.find(
75+
{ "results.score": { "$gt": 80 } },
76+
{ "results.$": 1 }
77+
)
78+
```
79+
80+
This query returns documents where results.score is greater than 80, projecting only the first matching results array element.
81+
82+
```json
83+
db.collection.updateOne(
84+
{ "results.score": { "$gt": 80 } },
85+
{ "$set": { "results.$.score": 90 } }
86+
)
87+
```
88+
89+
This query updates the `score` to 90 for the first element in the `results` array that matches the condition `score > 80`.
90+
91+
<!---
92+
Adarsh
93+
2nd August 2024
94+
7:10 AM
95+
(09:24)
96+
--->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
# 100 React Questions (Routing)
2+
3+
## Q1. What is Routing and Router in React? `V. IMP.`
4+
5+
### Routing
6+
Routing allows you to create a single-page web application with navigation, without the need for a full-page refresh.
7+
8+
### React Router
9+
10+
React Router is a library for handling routing and enables navigation and rendering of different components based on the URL.
11+
12+
## Q2. How to Implement Routing in React? `V. IMP.`
13+
14+
* Install React-Router
15+
* Create Navigation
16+
* Create Routes
17+
18+
```bash
19+
npm install react-router-dom
20+
```
21+
22+
### Navbar.js
23+
```javascript
24+
import React from 'react';
25+
import { Routes, Route, Link } from 'react-router-dom';
26+
27+
// Elements or imported components
28+
const Home = () => <h2>Home</h2>;
29+
const About = () => <h2>About</h2>;
30+
const Contact = () => <h2>Contact</h2>;
31+
32+
const AppRoute = () => (
33+
<div>
34+
{/* Navigation links */}
35+
<nav>
36+
<ul>
37+
<li><Link to="/">Home</Link></li>
38+
<li><Link to="/about">About</Link></li>
39+
<li><Link to="/contact">Contact</Link></li>
40+
</ul>
41+
</nav>
42+
```
43+
44+
### index.js
45+
```javascript
46+
import AppRoute from './Others/AppRoute';
47+
import { BrowserRouter as Router } from 'react-router-dom';
48+
49+
const root = ReactDOM.createRoot(document.getElementById('root'));
50+
root.render(
51+
<Router>
52+
<AppRoute />
53+
</Router>
54+
);
55+
56+
{/* Routes */}
57+
<Routes>
58+
<Route path="/" element={<Home />} />
59+
<Route path="/about" element={<About />} />
60+
<Route path="/contact" element={<Contact />} />
61+
</Routes>
62+
</div>
63+
);
64+
65+
export default AppRoute;
66+
```
67+
68+
## Q3. What are the roles of <Routes> & <Route> component in React Routing? `V. IMP.`
69+
70+
* The <Routes> component is used as the root container for declaring your `collection of routes`.
71+
* The <Route> component is used to define a route and specify the component that should render when the `route matches`.
72+
* For example, in this code if user enter "websitename.com/about [invalid URL removed]" in url, then matching "About" component will be rendered.
73+
74+
```javascript
75+
import React from 'react';
76+
import { Routes, Route, Link } from 'react-router-dom';
77+
78+
<Routes>
79+
<Route path="/" element={<Home />} />
80+
<Route path="/about" element={<About />} />
81+
<Route path="/contact" element={<Contact />} />
82+
</Routes>
83+
```
84+
85+
## Q4. What are Route Parameters in React Routing?
86+
87+
Route parameters in React Router are a way to pass dynamic values(data) to the component `as part of the URL path`.
88+
89+
```javascript
90+
{/* userId is the route parameter */}
91+
<Route path="/users/:userId" component={UserProfile}/>
92+
```
93+
94+
## Q5. What is the role of Switch Component in React Routing?
95+
96+
* Switch component ensures that only the `first matching <Route> is rendered` and rest are ignored.
97+
* For example, Switch is commonly used to handle 404 or "not fount" routes.
98+
99+
```javascript
100+
import {Switch, Route} from 'react-router-dom';
101+
<Switch>
102+
<Route path="/users" component={UserList}/>
103+
<Route path="/users/:id" component={UserProfile}/>
104+
</Switch>
105+
```
106+
107+
## Q6. What is the role of exact prop in React Routing?
108+
109+
exact prop is used with the <Route> component to `match exactly` to the provided path.
110+
111+
```javascript
112+
{/*Without exact (default behavior)*/}
113+
{/*Match /about, /about/team, /about/contact, etc.*/}
114+
<Route path="/about" component={About} />
115+
```
116+
```javascript
117+
{/*With exact*/}
118+
{/*Only match /about*/}
119+
<Route path="/about" exact component={About} />
120+
```
121+
122+
123+
<!---
124+
Adarsh
125+
2nd August 2024
126+
09:52 PM
127+
(20:29)
128+
--->

0 commit comments

Comments
 (0)