A program in java which shows the student information(eg.sorting students personal details,searching ,deletig ,editing ,etc) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

A program in java which shows the student information(eg.sorting students personal details,searching ,deletig ,editing ,etc)

23rd Oct 2017, 6:49 AM
Ruchita Patil
Ruchita Patil - avatar
8 Answers
+ 3
thanks a lot...
23rd Oct 2017, 8:24 AM
Ruchita Patil
Ruchita Patil - avatar
+ 1
What about trying to do your homework before asking us to make it for you? 😂 And then if you can't complete it just post the code you done and we can help!
23rd Oct 2017, 7:34 AM
Chriptus13
Chriptus13 - avatar
+ 1
actually.....project.but it's very difficult for me
23rd Oct 2017, 7:37 AM
Ruchita Patil
Ruchita Patil - avatar
+ 1
That's the point you have to practice otherwise if you keep asking others to make your projects/homeworks you'll never learn it!
23rd Oct 2017, 7:46 AM
Chriptus13
Chriptus13 - avatar
+ 1
I'm a student....array is not taught to us and I'm trying to learn but not getting it exactly
23rd Oct 2017, 7:49 AM
Ruchita Patil
Ruchita Patil - avatar
+ 1
I don't want the whole program...but I'm not getting how to edit it
23rd Oct 2017, 7:52 AM
Ruchita Patil
Ruchita Patil - avatar
+ 1
if you can help me ...plz help
23rd Oct 2017, 7:53 AM
Ruchita Patil
Ruchita Patil - avatar
+ 1
@Ruchita Patil An array is just like a list of items which have indexes from [0... length[ where length is the size of the Array, for example: int[] arr1 = new int[10]; //uninitialized array of ints with length=10 int[] arr2 = {1,5,3,4,7}; //initialized array of ints with length=5 System.out.println(arr2[0]); //will print the first element of the array that is 1 System.out.println(arry2.length); //will print the length of the array that is 5 //So you can't do arr2[arr2.length] that will throw an ArrayOutOfBoundsException
23rd Oct 2017, 7:59 AM
Chriptus13
Chriptus13 - avatar