Mam... please take object oriented programming classes...
@aravinthkumar75522 жыл бұрын
You are ultimate.
@jooprasanth5943Ай бұрын
Will they give mark for this ? Becoz it is not contain any algorithm 🤷
@deepa_140024 жыл бұрын
Mam I understand your lecture and pls give some notes mam
@sakthivelk52232 жыл бұрын
நன்றிகள் 😍
@ReguRaam-b7y Жыл бұрын
mam rotines are in java. but in sylabus its want to be in python.
@vikranthvenniАй бұрын
Can you observe in this topic mam 🙏
@hariharan43684 жыл бұрын
Super explanation mam
@studywithjbrtrisea4 жыл бұрын
Thank you. Keep studying.
@AkashKumar-vb4br4 жыл бұрын
Mam neenga array la elements fill pannum pothu eppavum yen last array blank ah vidringa ?? Suppose naan list[5]= {5,10,15,20,25} intha maathiri 5 elements kuduthu array va fill pannita neenga deletion operation panna mudiyuma mam .
@studywithjbrtrisea4 жыл бұрын
yes you can do.
@AkashKumar-vb4br4 жыл бұрын
@@studywithjbrtrisea Mam but array la elements fulla irunthuchuna last la blank irukkathu apo routine maarum thana mam like for(i=pos;i
@AkashKumar-vb4br4 жыл бұрын
@@studywithjbrtrisea array elements fulla iruntha insertion eppadi panna mudiyum ?? List[5] la naan 5 elements fill pannita ithuku center la naan eppadi innoru element fill panna mudiyum
@studywithjbrtrisea4 жыл бұрын
if the size of the array is 100 then you can insert maximum 100 elements in the array. we can not insert more than the size of the array. this is the disadvantage of using array. to overcome this we are using linked list.
@studywithjbrtrisea4 жыл бұрын
if the array is full then we can not insert more elements.
@arunsuresh8547 Жыл бұрын
Exam la Routine ku pathila example code eluthalama .. illa routine than eluthanuma mam .. pls reply me mam .. and find(int key , int a[]) munadi yen return type podala ? at 15.00 timing ..
@shahithyar2496 Жыл бұрын
Routine vera code vera
@harinirabbie5 ай бұрын
Routine means a block of code that performs specific tasks. example code is just for your understanding but you should write every methods to implement
@mohan-sg8ih2 жыл бұрын
Exam ku neenga nadathirukartha ezhuthana pothuma mam
@studywithjbrtrisea2 жыл бұрын
yes
@shahithyar2496 Жыл бұрын
Can you please share your notes in a pdf
@KandhaMaaran-103 жыл бұрын
Mam, deletion operation la step 2 la shift element from 3rd position to 2nd position dhaana mam?we consider the first position is 0 so as follows i think... How you can write 4th position to 3rd? Pls sollunga mam
@studywithjbrtrisea3 жыл бұрын
can you tell the timing?
@KandhaMaaran-103 жыл бұрын
@@studywithjbrtrisea 13.08 mam
@studywithjbrtrisea3 жыл бұрын
@@KandhaMaaran-10 Yes. to delete 2nd index value we shift 3rd index to 2nd index. then 4th index to 3rd index and so on. To do this we use the for loop. we start from the correct position after that as the loop continues till the last position all the elements shift one position left by the loop.
@KandhaMaaran-103 жыл бұрын
@@studywithjbrtrisea ok mam understood thankyou so much mam
@shinchu5617 Жыл бұрын
Mam can you upload the notes pdf
@ArunKumar-wd4gp5 жыл бұрын
Thanks mam
@studywithjbrtrisea5 жыл бұрын
Thanks Arun
@Newmobiles-10 ай бұрын
This full PDF vanum mam
@MAREESWARAN-g9bАй бұрын
mam intha pdf venum mam
@swornimshah889811 ай бұрын
FOr insertion: for(i=n - 1, i > pos; i--) { arr[i] = arr[i-1]; } arr[pos] = item