Skip to content

Commit 14c90f3

Browse files
committed
Update README.md
1 parent 904c2bd commit 14c90f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,9 @@ O/P: TTT
204204
numbers `T(n)` similar to Fibonacci numbers, except that a number is formed by adding the three
205205
previous numbers, i.e., `T(n)=T(n-1)+T(n-2)+T(n-3), T(1)=T(2)=1, and T(3)=2`). [Ans](https://github.com/jacobjohn2016/Java-Programming/blob/master/extra-assignment/src/Tribonacci.java)
206206
207-
17. Student volunteers from three batches of B.Tech are selected to ensure the smooth conduct of a Technical event. Assume that only 4 volunteers from batch1, 3 volunteers from batch2, 1 volunteer from batch3 are selected. Create a 2-D ragged array of strings to store their register numbers batch wise. The first row stores register numbers of the volunteers in batch1, second row – batch2 and so forth. Use for-each loop to traverse the array elements.
207+
17. Student volunteers from three batches of B.Tech are selected to ensure the smooth conduct of a Technical event. Assume that only 4 volunteers from batch1, 3 volunteers from batch2, 1 volunteer from batch3 are selected. Create a 2-D ragged array of strings to store their register numbers batch wise. The first row stores register numbers of the volunteers in batch1, second row – batch2 and so forth. Use for-each loop to traverse the array elements.[Ans](https://github.com/jacobjohn2016/Java-Programming/blob/master/FAT-Practice/src/volunteers.java)
208+
209+
18.
208210
209211
## Contributions
210212
* Initial Author - [jacobjohn2016](github.com/jacobjohn2016)

0 commit comments

Comments
 (0)