Data Structures #education #cse #Telugu
29:20
c  language in Telugu #education #cse #JNTUH
41:33
How to construct DFA  #cse #trending #telugu
12:31
c language vs Java difference
4:01
21 күн бұрын
DBMS  Definition || Applications #cse
1:53
DBMS vs File system
4:56
21 күн бұрын
Levels of Abstraction in DBMS
4:04
21 күн бұрын
structure of C in telugu
4:15
Ай бұрын
Java Basic Definitions
2:10
Ай бұрын
Inheritance in Java || CSE
8:55
Пікірлер
@Koushik_thota
@Koushik_thota 4 күн бұрын
Your teaching makes it easy sir🔥
@cse.123
@cse.123 4 күн бұрын
Thanks! Glad you found it helpful.
@Rohith-h1n
@Rohith-h1n 4 күн бұрын
thank you sir it was very helpful
@cse.123
@cse.123 4 күн бұрын
Glad to hear it was helpful!
@kannaerrolla018
@kannaerrolla018 7 күн бұрын
Thankyou sir 🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻enno videos chusina kani ardham kaledhu. Ippudu ardham ayindhi 🙏🏻🙏🏻🙏🏻🙏🏻
@cse.123
@cse.123 7 күн бұрын
Thank you brother
@JnaneswarD
@JnaneswarD 12 күн бұрын
sir F -> id/ (E) ( id pakkana minus unte) ------> F -> -id / (E) first function anedi " -id ,( " avuthunda lekunte " -,( " avutundha sir
@cse.123
@cse.123 12 күн бұрын
@@JnaneswarD -id
@chiranjeeviambeeru
@chiranjeeviambeeru 15 күн бұрын
What is the machine code sir
@cse.123
@cse.123 12 күн бұрын
Machine language is a low-level programming language that consists of binary bits i.e. only 0 and 1.
@mrsjeonv
@mrsjeonv 15 күн бұрын
Can I know when will the sem exam end for second years??
@cse.123
@cse.123 15 күн бұрын
@@mrsjeonv r u from JNTUH?
@ruchithamedi4608
@ruchithamedi4608 12 күн бұрын
Sir is this useful for Jan 4th exm? Jntuh
@cse.123
@cse.123 12 күн бұрын
@@ruchithamedi4608 yes
@cse.123
@cse.123 12 күн бұрын
@@ruchithamedi4608 you want important questions?
@ruchithamedi4608
@ruchithamedi4608 12 күн бұрын
@@cse.123 yes sir
@Sambasivarao-e9t
@Sambasivarao-e9t Ай бұрын
Good explaining skill sir. Thank you 🙏
@nasruddinmohd9750
@nasruddinmohd9750 Ай бұрын
Thank you so much sir your videos useful for our semester 🎉
@vishnusai7735
@vishnusai7735 Ай бұрын
Very nice interview. Useful for aspirants 🎉🎉🎉
@cse.123
@cse.123 12 күн бұрын
Thanks, glad you found it useful!
@thecreative3099
@thecreative3099 Ай бұрын
Sir please smile , it looks good on you😊
@cse.123
@cse.123 Ай бұрын
Ok. Thanks😊
@UnitedTollywood8688
@UnitedTollywood8688 Ай бұрын
It's useful thank you..🎉
@YogendraGummadeela
@YogendraGummadeela Ай бұрын
Bro send part 3 pls and your explanation is super super super 😅
@YogendraGummadeela
@YogendraGummadeela Ай бұрын
Thank you bro 😅😊
@thecreative3099
@thecreative3099 Ай бұрын
Very much helpful video sir , keep posting sir 👏 👍
@vinodkumar-md2ww
@vinodkumar-md2ww Ай бұрын
Congratulations Brother 👏👏 really your hard work paid back to you..
@Anjali-q9h9o
@Anjali-q9h9o Ай бұрын
Thanks for valuable information ❤😊
@cse.123
@cse.123 Ай бұрын
@@Anjali-q9h9o Thank you madam
@thecreative3099
@thecreative3099 Ай бұрын
Got to learn many things sir , please post this kind of videos
@dheerajsaivenkataavinashbo403
@dheerajsaivenkataavinashbo403 Ай бұрын
Its an really inspiring story❤
@Rohith-h1n
@Rohith-h1n Ай бұрын
Inspiring story sir , would like to see more videos like this
@cse.123
@cse.123 Ай бұрын
Sure Thank you..
@Saketipavani-p9q
@Saketipavani-p9q Ай бұрын
Example program ivvandi sir
@cse.123
@cse.123 Ай бұрын
// Single program demonstrating MVC architecture public class MVCExample { // Model class static class Student { private String name; private int rollNo; // Constructor public Student(String name, int rollNo) { this.name = name; this.rollNo = rollNo; } // Getters and Setters public String getName() { return name; } public void setName(String name) { this.name = name; } public int getRollNo() { return rollNo; } public void setRollNo(int rollNo) { this.rollNo = rollNo; } } // View class static class StudentView { public void printStudentDetails(String studentName, int studentRollNo) { System.out.println("Student Details:"); System.out.println("Name: " + studentName); System.out.println("Roll No: " + studentRollNo); } } // Controller class static class StudentController { private Student model; private StudentView view; // Constructor public StudentController(Student model, StudentView view) { this.model = model; this.view = view; } // Updates the model's name public void setStudentName(String name) { model.setName(name); } // Fetches the model's name public String getStudentName() { return model.getName(); } // Updates the model's roll number public void setStudentRollNo(int rollNo) { model.setRollNo(rollNo); } // Fetches the model's roll number public int getStudentRollNo() { return model.getRollNo(); } // Updates the view with model's data public void updateView() { view.printStudentDetails(model.getName(), model.getRollNo()); } } // Main method public static void main(String[] args) { // Initialize the Model Student model = new Student("John Doe", 101); // Initialize the View StudentView view = new StudentView(); // Initialize the Controller StudentController controller = new StudentController(model, view); // Display initial data controller.updateView(); // Modify model data via the controller controller.setStudentName("Jane Smith"); controller.setStudentRollNo(202); // Display updated data controller.updateView(); } }
@Webcraft-ib4
@Webcraft-ib4 Ай бұрын
Nice explanation
@Akhil_the_youtuber_45
@Akhil_the_youtuber_45 Ай бұрын
Thank you sir it's help us
@cse.123
@cse.123 Ай бұрын
kzbin.info/www/bejne/gHSop4iaiLeZmtEsi=IhO8glvsPapZ-ta_
@prathapkeysofficial2004
@prathapkeysofficial2004 Ай бұрын
HEARTY CONGRATULATIONS FOR UR 1K SUBSCRIBERS SIR 💗✨️🔥
@pykchinna7783
@pykchinna7783 Ай бұрын
Kunchum telugulo ardhamaiyetatlu chepochuga bro Telugu channel ani pettukunnav ani open chesa But ardhamindhele gane Some words Telugulo chepthe bagundu ani anthe Overall good Thank you ANNA
@cse.123
@cse.123 Ай бұрын
Ok thank you
@rohithmadhav4796
@rohithmadhav4796 Ай бұрын
Rajuuu bhaiiii euuuuuu smart dikra 🌝
@KasayeTarekegn-ug4sq
@KasayeTarekegn-ug4sq Ай бұрын
❤❤❤
@inspire__msd2019
@inspire__msd2019 Ай бұрын
good expaination
@cse.123
@cse.123 Ай бұрын
@@inspire__msd2019 thank you so much❤️
@ImranDell-wl4xo
@ImranDell-wl4xo Ай бұрын
Thank you sir 🙏🏻
@shivateja6057
@shivateja6057 Ай бұрын
First like sir nice video 🦥
@cse.123
@cse.123 Ай бұрын
Many many thanks
@dinnerboy_ster249
@dinnerboy_ster249 2 ай бұрын
R20 syllabus
@cse.123
@cse.123 2 ай бұрын
@@dinnerboy_ster249 yes
@dinnerboy_ster249
@dinnerboy_ster249 2 ай бұрын
Jntuk vallaku idhey important aa sir​@@cse.123
@chandanam9109
@chandanam9109 2 ай бұрын
How to get notes?
@cse.123
@cse.123 2 ай бұрын
@@chandanam9109 you can mail or what asp
@cse.123
@cse.123 2 ай бұрын
@@chandanam9109 rajucse531@gmail. com
@cse.123
@cse.123 2 ай бұрын
@@chandanam9109 9949266150
@sweetytharru7112
@sweetytharru7112 2 ай бұрын
Can you please give caption sir Ur clear explanation very useful 🎉 thank you ❤
@cse.123
@cse.123 2 ай бұрын
@@sweetytharru7112 welcome plese subscribe 🙏🏿
@freefire-g8r8u
@freefire-g8r8u 2 ай бұрын
New Subscriber SIr🤩
@chiranjeeviambeeru
@chiranjeeviambeeru 2 ай бұрын
super explaintion sir 🙂
@cse.123
@cse.123 2 ай бұрын
Thanks and welcome❤️
@SmileyshankarSmileyShankareerl
@SmileyshankarSmileyShankareerl 2 ай бұрын
Your explaining was to good sir 👌
@adityamamidiadhi
@adityamamidiadhi 2 ай бұрын
Good explanation sir 👌
@ashrithsai2334
@ashrithsai2334 2 ай бұрын
Very useful sir👍🏻
@thanvibanjaracreations143
@thanvibanjaracreations143 2 ай бұрын
Super sir
@Shyamesh26
@Shyamesh26 2 ай бұрын
@anilk3165
@anilk3165 2 ай бұрын
hello bro, compiler design course lo help kaavali...i want to contact you..please respond.
@cse.123
@cse.123 2 ай бұрын
9949266150 whatapp
@cse.123
@cse.123 2 ай бұрын
Plese response
@Shyamesh26
@Shyamesh26 2 ай бұрын
@Koushik_thota
@Koushik_thota 2 ай бұрын
It's amazing how a creative approach can make complex topics easier to understand. Thanks for the valuable insights❤
@MMaharshi-l6k
@MMaharshi-l6k 2 ай бұрын
Nice explanation sir 🙌
@ImranDell-wl4xo
@ImranDell-wl4xo 2 ай бұрын
Worthy 🌟
@prathapkeysofficial2004
@prathapkeysofficial2004 2 ай бұрын
Advance Congrats for 1k subscribers sir ❤💥