Skip to content

Commit e7bb812

Browse files
Index
1 parent 52a5e8a commit e7bb812

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -3,48 +3,48 @@
33

44
## [WEEK 1](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)
55

6-
[Java Week 1:Q1] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-1/Exercise1_1.java) To find the perimeter and area of a circle given a value of radius.
6+
[Java Week 1:Q1](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-1/Exercise1_1.java) To find the perimeter and area of a circle given a value of radius.
77

8-
[Java Week 1:Q2] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-1/Exercise1_2.java) To find the largest among three numbers x, y, and z.
8+
[Java Week 1:Q2](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-1/Exercise1_2.java) To find the largest among three numbers x, y, and z.
99

10-
[Java Week 1:Q3] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-1/Exercise1_3.java) Consider First n even numbers starting from zero(0) and calculate sum of all the numbers divisible by 3 from 0 to n. Print the sum.
10+
[Java Week 1:Q3](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-1/Exercise1_3.java) Consider First n even numbers starting from zero(0) and calculate sum of all the numbers divisible by 3 from 0 to n. Print the sum.
1111

12-
[Java Week 1:Q4] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-1/Exercise1_4.java) To check whether the number is an Armstrong number or not.
12+
[Java Week 1:Q4](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-1/Exercise1_4.java) To check whether the number is an Armstrong number or not.
1313

14-
[Java Week 1:Q5] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-1/Exercise1_5.java) To help Ram , find the highest mark and average mark secured by him in "s" number of subjects.
14+
[Java Week 1:Q5](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-1/Exercise1_5.java) To help Ram , find the highest mark and average mark secured by him in "s" number of subjects.
1515

1616

1717
## [WEEK 2](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-2)
1818

19-
[Java Week 2:Q1] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-2/Question211.java) To call the method print() in class Student following the concept of inner class.
19+
[Java Week 2:Q1](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-2/Question211.java) To call the method print() in class Student following the concept of inner class.
2020

21-
[Java Week 2:Q2] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-2/Question212.java) To call the method print() of class Student first and then call print() method of class School.
21+
[Java Week 2:Q2](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-2/Question212.java) To call the method print() of class Student first and then call print() method of class School.
2222

23-
[Java Week 2:Q3] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-2/Question213.java) To call print() method of class Question by creating a method named ‘studentMethod()’.
23+
[Java Week 2:Q3](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-2/Question213.java) To call print() method of class Question by creating a method named ‘studentMethod()’.
2424

25-
[Java Week 2:Q4] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-2/Question214.java) To call default constructor first and then any other constructor in the class Answer.
25+
[Java Week 2:Q4](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-2/Question214.java) To call default constructor first and then any other constructor in the class Answer.
2626

27-
[Java Week 2:Q5] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-2/Question215.java) To debug the program which is intended to print 'NPTEL JAVA'.
27+
[Java Week 2:Q5](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-2/Question215.java) To debug the program which is intended to print 'NPTEL JAVA'.
2828

2929

3030
## [WEEK 3](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-3)
3131

32-
[Java Week 3:Q1] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-3/Fibonacci.java) To the generation of Fibonacci numbers.
32+
[Java Week 3:Q1](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-3/Fibonacci.java) To the generation of Fibonacci numbers.
3333

34-
[Java Week 3:Q2] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-3/Circle.java) Define a class Point with two fields x and y each of type double. Also , define a method distance(Point p1, Point p2) to calculate the distance between points p1 and p2 and return the value in double. Complete the code segment given below. Use Math.sqrt( ) to calculate the square root.
34+
[Java Week 3:Q2](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-3/Circle.java) Define a class Point with two fields x and y each of type double. Also , define a method distance(Point p1, Point p2) to calculate the distance between points p1 and p2 and return the value in double. Complete the code segment given below. Use Math.sqrt( ) to calculate the square root.
3535

36-
[Java Week 3:Q3] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-3/Test1.java) A class Shape is defined with two overloading constructors in it. Another class Test1 is partially defined which inherits the class Shape. The class Test1 should include two overloading constructors as appropriate for some object instantiation shown in main( ) method. You should define the constructors using the super class constructors. Also, override the method calculate( ) in Test1 to calculate the volume of a Shape.
36+
[Java Week 3:Q3](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-3/Test1.java) A class Shape is defined with two overloading constructors in it. Another class Test1 is partially defined which inherits the class Shape. The class Test1 should include two overloading constructors as appropriate for some object instantiation shown in main( ) method. You should define the constructors using the super class constructors. Also, override the method calculate( ) in Test1 to calculate the volume of a Shape.
3737

38-
[Java Week 3:Q4] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-3/Test3.java) This program to exercise the call of static and non-static methods. A partial code is given defining two methods, namely sum( ) and multiply ( ). You have to call these methods to find the sum and product of two numbers.
38+
[Java Week 3:Q4](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-3/Test3.java) This program to exercise the call of static and non-static methods. A partial code is given defining two methods, namely sum( ) and multiply ( ). You have to call these methods to find the sum and product of two numbers.
3939

40-
[Java Week 3:Q5] (https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-3/Question3.java) To swap two numbers using call by object reference.
40+
[Java Week 3:Q5](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/blob/WEEK-3/Question3.java) To swap two numbers using call by object reference.
4141

42-
## [WEEK 4](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)
42+
## [WEEK 4](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)
4343

44-
## [WEEK 5](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)
44+
## [WEEK 5](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)
4545

46-
## [WEEK 6](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)
46+
## [WEEK 6](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)
4747

48-
## [WEEK 7](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)
48+
## [WEEK 7](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)
4949

50-
## [WEEK 8](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)
50+
## [WEEK 8](https://github.com/bkkothari2255/Programming_In_Java_NPTEL/tree/WEEK-1)

0 commit comments

Comments
 (0)