Wednesday, August 31, 2005

SCJP study notes: Chapter 7 Threads

Originally written by Velmurugan Periasamy. Copyright belongs to him.

Chapter 7 Threads

(Some info is outdated if you are preparing for the SCJP 1.4 exam).

· Java is fundamentally multi-threaded.

· Every thread corresponds to an instance of java.lang.Thread class or a sub-class.

· A thread becomes eligible to run, when its start() method is called. Thread scheduler co-ordinates between the threads and allows them to run.

· When a thread begins execution, the scheduler calls its run method.

Signature of run method – public void run()

· When a thread returns from its run method (or stop method is called – deprecated in 1.2), its dead. It cannot be restarted, but its methods can be called. (it’s just an object no more in a running state)

· If start is called again on a dead thread, IllegalThreadStateException is thrown.

· When a thread is in running state, it may move out of that state for various reasons. When it becomes eligible for execution again, thread scheduler allows it to run.

· There are two ways to implement threads.

1. Extend Thread class

· Create a new class, extending the Thread class.

· Provide a public void run method, otherwise empty run in Thread class will be executed.

· Create an instance of the new class.

· Call start method on the instance (don’t call run – it will be executed on the same thread)

2. Implement Runnable interface

· Create a new class implementing the Runnable interface.

· Provide a public void run method.

· Create an instance of this class.

· Create a Thread, passing the instance as a target – new Thread(object)

· Target should implement Runnable, Thread class implements it, so it can be a target itself.

· Call the start method on the Thread.

· JVM creates one user thread for running a program. This thread is called main thread. The main method of the class is called from the main thread. It dies when the main method ends. If other user threads have been spawned from the main thread, program keeps running even if main thread dies. Basically a program runs until all the user threads (non-daemon threads) are dead.

· A thread can be designated as a daemon thread by calling setDaemon(boolean) method. This method should be called before the thread is started, otherwise IllegalThreadStateException will be thrown.

· A thread spawned by a daemon thread is a daemon thread.

· Threads have priorities. Thread class have constants MAX_PRIORITY (10), MIN_PRIORITY (1), NORM_PRIORITY (5)

· A newly created thread gets its priority from the creating thread. Normally it’ll be NORM_PRIORITY.

· getPriority and setPriority are the methods to deal with priority of threads.

· Java leaves the implementation of thread scheduling to JVM developers. Two types of scheduling can be done.

1. Pre-emptive Scheduling.

Ways for a thread to leave running state -

· It can cease to be ready to execute ( by calling a blocking i/o method)

· It can get pre-empted by a high-priority thread, which becomes ready to execute.

· It can explicitly call a thread-scheduling method such as wait or suspend.

· Solaris JVM’s are pre-emptive.

· Windows JVM’s were pre-emptive until Java 1.0.2

2. Time-sliced or Round Robin Scheduling

· A thread is only allowed to execute for a certain amount of time. After that, it has to contend for the CPU (virtual CPU, JVM) time with other threads.

· This prevents a high-priority thread mono-policing the CPU.

· The drawback with this scheduling is – it creates a non-deterministic system – at any point in time, you cannot tell which thread is running and how long it may continue to run.

· Mactinosh JVM’s

· Windows JVM’s after Java 1.0.2

· Different states of a thread:

1. Yielding

· Yield is a static method. Operates on current thread.

· Moves the thread from running to ready state.

· If there are no threads in ready state, the yielded thread may continue execution, otherwise it may have to compete with the other threads to run.

· Run the threads that are doing time-consuming operations with a low priority and call yield periodically from those threads to avoid those threads locking up the CPU.

2. Sleeping

· Sleep is also a static method.

· Sleeps for a certain amount of time. (passing time without doing anything and w/o using CPU)

· Two overloaded versions – one with milliseconds, one with milliseconds and nanoseconds.

· Throws an InterruptedException.(must be caught)

· After the time expires, the sleeping thread goes to ready state. It may not execute immediately after the time expires. If there are other threads in ready state, it may have to compete with those threads to run. The correct statement is the sleeping thread would execute some time after the specified time period has elapsed.

· If interrupt method is invoked on a sleeping thread, the thread moves to ready state. The next time it begins running, it executes the InterruptedException handler.

3. Suspending

· Suspend and resume are instance methods and are deprecated in 1.2

· A thread that receives a suspend call, goes to suspended state and stays there until it receives a resume call on it.

· A thread can suspend it itself, or another thread can suspend it.

· But, a thread can be resumed only by another thread.

· Calling resume on a thread that is not suspended has no effect.

· Compiler won’t warn you if suspend and resume are successive statements, although the thread may not be able to be restarted.

4. Blocking

· Methods that are performing I/O have to wait for some occurrence in the outside world to happen before they can proceed. This behavior is blocking.

· If a method needs to wait an indeterminable amount of time until some I/O takes place, then the thread should graciously step out of the CPU. All Java I/O methods behave this way.

· A thread can also become blocked, if it failed to acquire the lock of a monitor.

5. Waiting

· wait, notify and notifyAll methods are not called on Thread, they’re called on Object. Because the object is the one which controls the threads in this case. It asks the threads to wait and then notifies when its state changes. It’s called a monitor.

· Wait puts an executing thread into waiting state.(to the monitor’s waiting pool)

· Notify moves one thread in the monitor’s waiting pool to ready state. We cannot control which thread is being notified. notifyAll is recommended.

· NotifyAll moves all threads in the monitor’s waiting pool to ready.

· These methods can only be called from synchronized code, or an IllegalMonitorStateException will be thrown. In other words, only the threads that obtained the object’s lock can call these methods.

Locks, Monitors and Synchronization

· Every object has a lock (for every synchronized code block). At any moment, this lock is controlled by at most one thread.

· A thread that wants to execute an object’s synchronized code must acquire the lock of the object. If it cannot acquire the lock, the thread goes into blocked state and comes to ready only when the object’s lock is available.

· When a thread, which owns a lock, finishes executing the synchronized code, it gives up the lock.

· Monitor (a.k.a Semaphore) is an object that can block and revive threads, an object that controls client threads. Asks the client threads to wait and notifies them when the time is right to continue, based on its state. In strict Java terminology, any object that has some synchronized code is a monitor.

· 2 ways to synchronize:

1. Synchronize the entire method

· Declare the method to be synchronized - very common practice.

· Thread should obtain the object’s lock.

2. Synchronize part of the method

· Have to pass an arbitrary object which lock is to be obtained to execute the synchronized code block (part of a method).

· We can specify “this” in place object, to obtain very brief locking – not very common.

· wait – points to remember

§ calling thread gives up CPU

§ calling thread gives up the lock

§ calling thread goes to monitor’s waiting pool

§ wait also has a version with timeout in milliseconds. Use this if you’re not sure when the current thread will get notified, this avoids the thread being stuck in wait state forever.

· notify – points to remember

§ one thread gets moved out of monitor’s waiting pool to ready state

§ notifyAll moves all the threads to ready state

§ Thread gets to execute must re-acquire the lock of the monitor before it can proceed.

· Note the differences between blocked and waiting.

Blocked

Waiting

Thread is waiting to get a lock on the monitor.

(or waiting for a blocking i/o method)

Thread has been asked to wait. (by means of wait method)

Caused by the thread tried to execute some synchronized code. (or a blocking i/o method)

The thread already acquired the lock and executed some synchronized code before coming across a wait call.

Can move to ready only when the lock is available. ( or the i/o operation is complete)

Can move to ready only when it gets notified (by means of notify or notifyAll)

· Points for complex models:

1. Always check monitor’s state in a while loop, rather than in an if statement.

2. Always call notifyAll, instead of notify.

· Class locks control the static methods.

· wait and sleep must be enclosed in a try/catch for InterruptedException.

· A single thread can obtain multiple locks on multiple objects (or on the same object)

· A thread owning the lock of an object can call other synchronous methods on the same object. (this is another lock) Other threads can’t do that. They should wait to get the lock.

· Non-synchronous methods can be called at any time by any thread.

· Synchronous methods are re-entrant. So they can be called recursively.

· Synchronized methods can be overrided to be non-synchronous. synchronized behavior affects only the original class.

· Locks on inner/outer objects are independent. Getting a lock on outer object doesn’t mean getting the lock on an inner object as well, that lock should be obtained separately.

· wait and notify should be called from synchronized code. This ensures that while calling these methods the thread always has the lock on the object. If you have wait/notify in non-synchronized code compiler won’t catch this. At runtime, if the thread doesn’t have the lock while calling these methods, an IllegalMonitorStateException is thrown.

· Deadlocks can occur easily. e.g, Thread A locked Object A and waiting to get a lock on Object B, but Thread B locked Object B and waiting to get a lock on Object A. They’ll be in this state forever.

· It’s the programmer’s responsibility to avoid the deadlock. Always get the locks in the same order.

· While ‘suspended’, the thread keeps the locks it obtained – so suspend is deprecated in 1.2

· Use of stop is also deprecated, instead use a flag in run method. Compiler won’t warn you, if you have statements after a call to stop, even though they are not reachable.

122 comments:

  1. nice explanation........

    ReplyDelete
  2. Anonymous7:48 AM

    This comment has been removed by the author.

    ReplyDelete
  3. Anonymous7:50 AM

    Thanks for all the information ,it was very helpful i really like that you are providing information on core and advance java ,being enrolled in
    advance and core java http://www.wiziq.com/course/1779-core-and-advance-java-concepts i was looking for such information on advance and core java and your information helped me a lot. I really like that you are providing such information. Thanks

    ReplyDelete
  4. Anonymous8:10 PM

    Hi,i hope to really understand this information.Sharing for useful information...Thanks for that nice blogs!!!hadoop training in chennai....

    ReplyDelete
  5. Thanks Good Information for QTP Freshers
    Refer thr link,
    QTP Training In Chennai

    BESANT TECHNOLOGIES

    ReplyDelete

  6. We are the best providers of SharePoint Training in Chennai with experts. Our training program is very much mixed both practical and interview point of questions.

    sharepoint-training-institute-in-chennai

    ReplyDelete
  7. Anonymous12:35 AM

    Our Android Training in Chennai aims to teach beginners and employees.Android is the fastest growing smart phone OS in the world today..To know more,follow the below link
    Best android training institute in chennai

    ReplyDelete
  8. This comment has been removed by the author.

    ReplyDelete
  9. This page is dedicated for our Besant Technologies Reviews and Testimonials by our students. Please give your reviews here,
    Besant Tech Review

    ReplyDelete
  10. Anonymous3:51 AM

    Good Collection ...........

    Oracle DBA Training in Chennai

    ReplyDelete
  11. Nice information about the load testing!!! I prefer Loadrunner automation testing tool to validate the performance of software application/system under actual load. Loadrunner training institute in Chennai

    ReplyDelete
  12. Java new concepts are really interesting to study.and understand the concept very clearely..
    Software Testing Training in Chennai

    ReplyDelete
  13. Anonymous11:59 PM

    Really nice post. Unix is a multiuser and multi tasking operating system at the same time. Unix Training Chennai offering real time Unix course at reasonable cost.

    ReplyDelete
  14. Nice article i was really impressed by seeing this article, it was very interesting and it is
    very useful for Learners..
    SharePoint Training Institute in Chennai | SharePoint Training

    ReplyDelete
  15. Thanks for sharing this valuable information to our vision. You have posted a trust worthy blog keep sharing....
    Regards,
    iOS Training in Chennai | Informatica Training in Chennai

    ReplyDelete
  16. Hi, You sharing for this article effective information..Thank you so much..

    Informatica Training in Chenna

    ReplyDelete
  17. There are lots of information about latest technology and how to get trained in them, like Hadoop Training Chennai have spread around the web, but this is a unique one according to me. The strategy you have updated here will make me to get trained in future technologies(Hadoop Training in Chennai). By the way you are running a great blog. Thanks for sharing this (Salesforce Training institutes in Chennai).

    ReplyDelete
  18. This information is impressive; I am inspired with your post writing style & how continuously you describe this topic. After reading your post, thanks for taking the time to discuss this, I feel happy about it and I love learning more about this topic.
    Regards,
    Informatica training in chennai|SAP training in chennai|Informatica course in Chennai

    ReplyDelete
  19. Wow, brilliant article on dot net training in Chennai that I was searching for. Helps us a lot in referring at my dot net training institutes in Chennai. Thanks a lot. Keep writing more on dot net training Chennai, would love to follow your posts and refer to others in dot net training institute in Chennai.

    ReplyDelete
  20. That is a brilliant article on dot net training in Chennai that I was searching for. Helps us a lot in referring at our dot net training institute in Chennai. Thanks a lot. Keep writing more on dot net course in Chennai, would love to follow your posts and refer to others in dot net training institutes in Chennai.

    ReplyDelete
  21. Testing is the only way to deliver reliable products in the Information Technology market(Software testing training in chennai). Articles like this are vital in improvising one's ability as a software testing professional(Software testing course chennai). Thank you so much for sharing this information in here(Software testing training chennai). Keep blogging.

    ReplyDelete
  22. Anonymous10:39 PM

    Thank you for taking the time to provide us with your valuable information. We strive to provide our candidates with excellent care and we take your comments to heart.As always, we appreciate your confidence and trust in us.
    ... sharepoint Training in chennai

    ReplyDelete
  23. Anonymous5:11 AM

    We provides focus and real time training session, which equipped you with skill to get best career option in the industry. We offered training and certification basic to advance level in Software testing training in Chennai.

    ReplyDelete
  24. Anonymous5:11 AM

    This comment has been removed by the author.

    ReplyDelete
  25. Anonymous5:13 AM

    Thanks for sharing such a great information..Its really nice and informative.
    android training in Chennai

    ReplyDelete
  26. Anonymous5:13 AM

    Thanks for sharing this information, it helped me a lot in finding valuable resources for my career
    android training in Chennai

    ReplyDelete
  27. Anonymous5:24 AM

    Cool One Thanks for sharing this valuable information to our vision. You have posted a trust worthy blog keep sharing.
    Regards,

    Regards,
    CCNA Training in Chennai | CCNA Training Institute in Chennai | Best CCNA Training in Chennai

    ReplyDelete
  28. All things considered, there you have it: a few WordPress talk modules to look over. They all convey something somewhat distinctive to the table yet what they share is a goal to make collaborating with and changing over clients only a tiny bit less demanding.
    Wp Chat

    ReplyDelete
  29. Thanks a lot for letting me a chance to visit your any pointers. Your article about web design is really impressed me very much.telephone apps

    ReplyDelete
  30. Anonymous5:32 AM

    Java proramming will be interested..
    SEO training in hyderabad by experts in digital markeing And by prosessional experts in seo.All the training by placement and also guide by the professionals.SEO training in hyderabad

    ReplyDelete
  31. Understanding Products and services of a Dentist
    salesforce training in hyderabad

    ReplyDelete
  32. Freshers jobs way provide freshers jobs ,walkins,direct recruitment,openings for freshers and experienced and recruiting experienced and freshers Walkins

    ReplyDelete
  33. Anonymous3:41 AM

    Excellent posts about java..
    sap fiori training in hyderabad



    ReplyDelete
  34. Anonymous5:53 AM

    Thanku for sharing this excelent posts..

    SAP Hana online training in hyderabad


    ReplyDelete
  35. useful information

    Online recruitment for bank jobs and government jobs and you can get Notification and application to apply

    online for bank jobs and govt jobs

    ReplyDelete
  36. Anonymous3:53 AM

    Recruitment voice contains Daily GK Updates, Bank Recruitment, Government jobs, Bank jobs, Interview Tips, Banking News, GK Updates <a href="http://recruitmentvoice.com

    ReplyDelete
  37. Anonymous5:49 AM

    Useful Information:
    Telugu Cinema Contains Telugu Cinema News, Latest Movie Reviews, Actor, Actress, Movie Galleries And Many More Telugu Cinema

    ReplyDelete
  38. Thanks for sharing this informative content that guided me to know the details about the training offered in different technology.
    digital marketing course in chennai | digital marketing training

    ReplyDelete
  39. Thanks for sharing useful information article to us keep sharing this info,
    Hi we at Colan Infotech Private Limited , a company which is Situated in US and India, will provide you best java web service and our talented
    java application development.
    team will assure you best result and we are familiar with international markets, We work with customers in a wide variety of sectors. Our talented team can handle all the aspects of
    Java web application development,
    we are the best among the
    Java development company.
    We have quite an extensive experience working with
    java development services.
    we are the only Java application development company.
    which offer custom services to a wide range of industries by exceeding our client’s expectations. You can even interact directly with the team regarding your project, just as you would with your in-house team.Our pro team will provide you the best
    java appliaction development services.
    We are best among the
    java development companies in Chennai,
    please review our customer feedbacks so that you may find a clue about us. If you want one stop solution for java development outsourcing, Colan infotech is the only stop you need to step in. Colan Infotech is the unique
    java web development company.
    were our team of unique
    java application developer
    were ranked top in
    java enterprise application development.

    ReplyDelete

  40. This is excellent information. It is amazing and wonderful to visit your site.Thanks for sharng this information,this is useful to me...
    Android training in chennai
    Ios training in chennai

    ReplyDelete
  41. happy new year 2018 sms
    happy new year quotes in hindi
    advance happy new year 2018
    whatsapp new year dp
    happy new year 2018 wallpaper 3d
    new year whatsapp dp
    this post is really informative, I want to share it with all of my friends. Please allow me to share it with my friends who will subscribe to your site.

    ReplyDelete
  42. This comment has been removed by the author.

    ReplyDelete
  43. I enjoy what you guys are usually up too. This sort of clever work and coverage! Keep up the wonderful works guys I’ve added you guys to my blog roll. Dotnet developer
    dotnet training in bangalore

    ReplyDelete
  44. Hello admin, thank you for your informative post.
    Me projects in chennai

    ReplyDelete
  45. I found your blog while searching for the updates, I am happy to be here. Very useful content and also easily understandable providing.. Believe me I did wrote an post about tutorials for beginners with reference of your blog. 
    Devops training in Chennai
    Devops training in Bangalore
    Devops training in Pune
    Devops Online training
    Devops training in Pune
    Devops training in Bangalore
    Devops training in tambaram

    ReplyDelete
  46. This comment has been removed by the author.

    ReplyDelete
  47. Its really an Excellent post. I just stumbled upon your blog and wanted to say that I have really enjoyed reading your blog. Thanks for sharing....


    angularjs Training in chennai
    angularjs-Training in pune

    angularjs-Training in chennai

    angularjs Training in chennai

    angularjs-Training in tambaram

    angularjs-Training in sholinganallur

    ReplyDelete
  48. Please let me know if you’re looking for an author for your site. You have some great posts,
    nebosh course in chennai

    ReplyDelete
  49. I look forward to hearing from you! Great blog by the way!
    safety course in chennai

    ReplyDelete
  50. In the beginning, I would like to thank you much about this great post. Its very useful and helpful for anyone looking for tips to help him learn and master in Angularjs. I like your writing style and I hope you will keep doing this good working.
    Angularjs Training in Bangalore
    Angularjs Training Institute In Bangalore
    Android App Development Training in Bangalore
    Android Training Center in Bangalore
    Android Institute in Bangalore

    ReplyDelete
  51. Innovative thinking of you in this blog makes me very useful to learn.
    i need more info to learn so kindly update it.
    Selenium Courses in T nagar
    Selenium Training Institutes in T nagar
    Selenium Training Institutes in OMR
    Selenium Courses in OMR

    ReplyDelete
  52. Thanks for making me this article. You have done a great job by sharing this content in here. Keep writing article like this.

    Cloud Training
    Cloud Training in Chennai
    Cloud Training in OMR
    Cloud Training in Velachery
    Cloud Training in Thiruvanmiyur

    ReplyDelete
  53. Amazing blog you have given and you made a great work.surely i would look into this insight and i hope it will help me to clear my points.please share more information's.
    devops Course in Anna Nagar
    Best devops Training Institute in Anna nagar
    devops Certification Training in Anna nagar
    devops Training in Ambattur

    ReplyDelete
  54. Such an informative blog that i have red yet.I hope the data you gave is helpful for the students.i have read it very interesting information's.
    best devops course in bangalore
    devops training near me
    devops training near me
    devops training in chennai

    ReplyDelete
  55. I have visited this blog first time and i got a lot of informative data from here which is quiet helpful for me indeed.
    apple service center chennai | apple iphone service center chennai | apple ipad service center chennai | apple mac service center chennai | ipad service center

    ReplyDelete
  56. Hi there,I enjoy reading through your article post, I wanted to write a little comment to support you and wish you a good continuation.
    Devops Training in Chennai | Devops Training Institute in Chennai

    ReplyDelete
  57. Great Blog thanks for sharing. The digital marketing company in chennai providing a best digital marketing service in chennai.

    ReplyDelete
  58. I believe there are many more pleasurable opportunities ahead for individuals that looked at your site.
    Azure Training in Chennai

    ReplyDelete
  59. Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge as updated one, keep blogging.
    Sharepoint Training in Electronic City

    ReplyDelete
  60. I Love your website i am ready your all website article 먹튀검증

    ReplyDelete
  61. Really i appreciate the effort you made to share the knowledge. The topic here i found was really effective...

    Became an Expert In Google Cloud Platform Training in Bangalore! Learn from experienced Trainers and get the knowledge to crack a coding interview, @Softgen Infotech Located in BTM Layout.

    ReplyDelete
  62. Thanks for one marvelous posting! I enjoyed reading it; you are a great author. I will make sure to bookmark your blog and may come back someday. I want to encourage that you continue your great posts.Prathima Infotech training center bangalore

    ReplyDelete

  63. Awesome,Thank you so much for sharing such an awesome blog.Prathima Infotech training center bangalore

    ReplyDelete

  64. Learned a lot of new things from your post! Good creation and HATS OFF to the creativity of your mind.Student Reviews

    ReplyDelete
  65. Thanks for sharing this blog. This very important and informative blog. content










    ReplyDelete
  66. i love your website thanks for share this amazing content 파워볼사이트

    ReplyDelete

  67. Wondeful post,very well explained.Thanks for sharing,extremly easy to understand.Python is higly expressive prograaming language.These days all IT industries suggest one to take course on python.
    Best Python Training in BTM Layout

    ReplyDelete
  68. Very Nice and Great i was lucky to find a good language school near berlin where i live.

    I took some private language lessons and was really suprised how much better i picked up the language 우리카지노

    ReplyDelete
  69. nice blog has been shared by you. before i read this blog i didn't have any knowledge about this but now i got some knowledge. so keep on sharing such kind of an interesting blogs.
    Salesforce Training in Chennai

    Salesforce Online Training in Chennai

    Salesforce Training in Bangalore

    Salesforce Training in Hyderabad

    Salesforce training in ameerpet

    Salesforce Training in Pune

    Salesforce Online Training

    Salesforce Training

    ReplyDelete
  70. nice information provided thanks
    oracle training in chennai

    ReplyDelete
  71. Great post!I am actually getting ready to across this information,i am very happy to this commands.Also great blog here with all of the valuable information you have.Well done,its a great knowledge.data science training in chennai

    data science training in tambaram

    android training in chennai

    android training in tambaram

    devops training in chennai

    devops training in tambaram

    artificial intelligence training in chennai

    artificial intelligence training in tambaram

    ReplyDelete
  72. Nice information, valuable and excellent design, as share good stuff with good ideas and concepts, lots of great information and inspiration, both of which I need, thanks to offer such a helpful information here.



    sap training in chennai

    sap training in annanagar

    azure training in chennai

    azure training in annanagar

    cyber security course in chennai

    cyber security course in annanagar

    ethical hacking course in chennai

    ethical hacking course in annanagar

    ReplyDelete
  73. 좋은 블로그 !!! 당신의 블로그를 전달하는 방식이 더 인상적입니다. 귀중한 정보에 감사드립니다. 정말 유용한 정보입니다. 좋은 공유.
    내 지식에 추가해 주셔서 감사합니다.메리트카지노

    ReplyDelete
  74. This comment has been removed by the author.

    ReplyDelete
  75. Shop Repair & Buy Mobiles Online At best prices in India only at https://rshop.in/location/kilimanoor/

    ReplyDelete
  76. Wonderful Post. This is a very knowledgeable post. These are the helpfull tips for. I shall like to discuss with my friends. To know more about tally contact me 9311002620 or visit our website- https://www.htsindia.com/

    ReplyDelete
  77. Trade Stocks, Forex, And Bitcoin Anywhere In The World: roboforex login Is The Leading Provider Of Software That Allows You To Trade On Your Own Terms. Whether You Are Operating In The Forex, Stock, Or Cryptocurrency Markets, Use roboforex login Software And Anonymous Digital Wallet To Connect With The Financial World.: roboforex login Is A Currency Trading Company That Allows You To Trade Stocks, Forex, And Cryptocurrency.

    ReplyDelete
  78. hi thanku for sharning this infromation thanku so much
    cs executive
    freecseetvideolectures/

    ReplyDelete
  79. Needed to compose you a very little word to thank you yet again
    regarding the nice suggestions you’ve contributed here.
    oracle dba training in chennai
    java training in chennai

    ReplyDelete
  80. this is really amazing, this article has very good information which is very useful. thanks for it. Visit us for looking lands in Hyderabad Open Plots Near Sadasivpet Telangana

    ReplyDelete
  81. Anonymous10:01 PM

    Thanks for sharing such an informative and useful blog. it was worth reading.
    Join Java course in Pune

    ReplyDelete
  82. This is a fantastic read. I appreciate the thorough research and attention to detail. It’s always refreshing to find well-written content that’s both informative and engaging

    Mysore Ooty Coorg Tour Package
    Mysore Ooty Kodaikanal Tour Package
    Manali Rohtang Tour Package

    ReplyDelete
  83. This is a really interesting post. I appreciate the depth of your research and the clarity of your writing. Looking forward to reading more

    Khajuraho Tour Packages
    Western Group of Temples in Khajuraho

    ReplyDelete
  84. This post was exactly what I needed to read today. It’s very well-written and provides practical advice. Keep up the great work

    Destination Wedding Planner Packages
    Mice Tour Operators
    Corporate Event Planner

    ReplyDelete