You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -361,3 +359,37 @@ Note the following points carefully:
361
359
362
360
363
361
[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’.
[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’.
[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’.
0 commit comments