Skip to content

Commit 0ce5707

Browse files
Index
Week 11 Update
1 parent 3a6b159 commit 0ce5707

File tree

1 file changed

+34
-2
lines changed

1 file changed

+34
-2
lines changed

docs/README.md

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,8 +336,6 @@ Note the following points carefully:
336336
2. The input and output array size must be of dimension 5 × 5.
337337
3. Flip-Flop: If 0 then 1 and vice-versa.
338338
```
339-
# [Programming_In_Java_NPTEL](https://github.com/bkkothari2255/Programming_In_Java_NPTEL)
340-
341339

342340
## [WEEK 10](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-10)
343341

@@ -361,3 +359,37 @@ Note the following points carefully:
361359

362360

363361
[Java Week 10:Q5](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-10/Question105.java) Complete the code segment to rename an already created table named ‘PLAYERS’ into ‘SPORTS’.
362+
363+
## [WEEK 11](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-11)
364+
365+
[Java Week 11:Q1](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-11/InsertData.java) Complete the code segment to insert the following data using prepared statement in the existing table ‘PLAYERS’.
366+
367+
| Coulmn | UID | First_Name | Last_Name | Age |
368+
|--------|-----|------------|-----------|-----|
369+
| Row 1 | 1 | Ram | Gopal | 26 |
370+
| Row 2 | 2 | John | Mayer | 22 |
371+
372+
[Java Week 11:Q2](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-11/UpdateData.java) Write the required code in order to update the following data in the table ‘PLAYERS’.
373+
374+
| Coulmn | UID | First_Name | Last_Name | Age |
375+
|--------|-----|------------|-----------|-----|
376+
| From | 1 | Ram | Gopal | 26 |
377+
| To | 1 | Rama | Gopala | 24 |
378+
379+
[Java Week 11:Q3](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-11/DeleteData.java) Write the appropriate code in order to delete the following data in the table ‘PLAYERS’.
380+
381+
| Coulmn | UID | First_Name | Last_Name | Age |
382+
|--------|-----|------------|-----------|-----|
383+
| Delete | 1 | Rama | Gopala | 24 |
384+
385+
[Java Week 11:Q4](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-11/CalAverage.java) Complete the following program to calculate the average age of the players in the table ‘PLAYERS’.
386+
387+
Structure of Table 'PLAYERS' is given below:
388+
| Coulmn | UID | First_Name | Last_Name | Age |
389+
|--------|---------|-------------|-------------|---------|
390+
| Type | Integer | Varchar(45) | Varchar(45) | Integer |
391+
| | | | | |
392+
393+
394+
[Java Week 11:Q5](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-11/DropTable.java) Complete the code segment to drop the table named ‘PLAYERS’.
395+

0 commit comments

Comments
 (0)