module2a it is module 2 so it is module 2.pptxbharath555tth
The document details various Java collection classes, including AbstractCollection, AbstractList, AbstractSet, HashSet, LinkedList, ArrayList, and TreeSet, alongside their corresponding features and example code. Each class provides specific functionalities for managing groups of objects, supporting operations such as adding, removing, and iterating over elements. The document also introduces Map interfaces and their implementations, highlighting key operations and characteristics of different map types.
Queue is a first-in, first-out (FIFO) data structure. It can be implemented using arrays or linked lists. The key operations are enqueue to add an item to the rear and dequeue to remove an item from the front. When using an array to implement a queue, a front and rear pointer track the first and last elements. Items are added by incrementing rear and removed by incrementing front. A circular queue solves the problem of overflow by treating the array as a circular structure.
Collections in object oriented programmingKaranAgrawal78
The document provides an overview of Java collections, focusing on their interfaces and classes, including ArrayList, LinkedList, and HashSet, along with their characteristics and use cases. It explains concepts such as generics, wildcards, Comparable and Comparator interfaces, and the implementation of various classes, highlighting code examples for better understanding. Additionally, it discusses methods for sorting and comparisons in user-defined classes and presents potential compilation errors related to generic types.
The document discusses templates in C++ and various data structures like stacks, queues, and mazes. It provides template definitions for a stack, queue, and selection sort algorithm. It also covers inheritance between abstract data types like using a stack as a subclass of a bag. Finally, it presents a maze as an example problem that could utilize a queue to solve by breadth-first search.
The document outlines the Java Collections Framework (java.util), covering various collection classes and interfaces, including ArrayList, HashSet, TreeSet, PriorityQueue, and ArrayDeque. It explains the characteristics, usage, and key methods for these collections, as well as how to access and manipulate user-defined classes within them. Additionally, it highlights the iterator's role in accessing collection elements and provides code examples for illustration.
The document discusses Java's Collections framework. It provides an overview of collections and their benefits. The core collections framework forms a hierarchy with interfaces like Collection, Set, List, Queue, Map, SortedSet and SortedMap. The document describes the operations supported by these interfaces and common usage patterns including iteration, bulk operations and views. It also covers implementations of each interface and thread safety considerations.
The document discusses Java's Collections framework. It provides an overview of Collections and their benefits, describes the core Collections interfaces like Collection, Set, List, Queue, Map, SortedSet and SortedMap. It also discusses common operations, implementations, iteration, algorithms and thread safety considerations for Collections.
The document discusses Java's Collections framework, which provides a unified approach to store, retrieve, and manipulate groups of data. It describes the core interfaces like Collection, Set, List, Queue, and Map. It explains the benefits of the framework and common operations supported. It also covers iteration, implementations of interfaces, usage examples, and thread safety considerations.
In Python, a list is a built-in dynamic sized array. We can store all types o...Karthik Rohan
In Python, a list is a built-in dynamic sized array (automatically grows and shrinks). We can store all types of items (including another list) in a list.
This document is a beginner's guide to Java Collections Framework. It introduces common data structures like lists, sets, queues and maps. It explains basic concepts like algorithms, collection types and implementations. It also covers operations on collections like iteration, sorting and filtering. The guide demonstrates how to select the appropriate data structure based on usage and provides examples of bulk operations using streams.
This document is a beginner's guide to Java Collections Framework. It introduces common data structures like lists, sets, queues and maps. It explains basic concepts like algorithms, collection types and implementations. It also covers operations on collections like iteration, sorting and filtering. The guide demonstrates how to select the appropriate data structure and implementation based on requirements. It provides examples of using collections and streams to perform bulk operations on data.
This document discusses linear data structures like stacks and queues. It defines them as ordered data collections where items are added and removed from specific ends. Stacks follow LIFO while queues follow FIFO. The key operations for stacks are push and pop, while queues use enqueue and dequeue. Python implementations are shown using lists. Functions are created to add, remove, and display items for both stacks and queues.
The document provides an overview of the Java Collections Framework, including various collection interfaces and classes like ArrayList, LinkedList, and HashSet, as well as their methods and usage. It aims to educate readers on the capabilities of collections, including accessing data, sorting, and using iterators. Key topics also include legacy classes, Collections utility methods, Iterators, Comparators, and the differences between different collection types.
The document provides an overview of data structures and algorithms, particularly focusing on concepts such as stacks, queues, and linked lists, along with their implementations in C. It outlines the basic operations and performance considerations for these data structures, as well as introduces algorithm specifications and their applications. Various implementation methods for stacks and queues are discussed, highlighting advantages and disadvantages of each.
The document provides an in-depth training on Java Collections Framework, specifically focusing on Lists and Sets, including ArrayLists, LinkedLists, and HashSets. It covers the differences in performance and implementations of these data structures, along with usage examples and methods for manipulating collections. Additionally, it highlights the advantages and expected behaviors of each collection type, such as access speed and memory efficiency.
The document provides an overview of common data structures including lists, stacks, queues, trees, and hash tables. It describes each data structure, how it can be implemented both statically and dynamically, and how to use the core Java classes like ArrayList, Stack, LinkedList, and HashMap that implement these structures. Key points covered include common operations for each structure, examples of using the Java classes, and applications like finding prime numbers in a range or matching brackets in an expression.
The document discusses queues and priority queues. It defines a queue as a waiting line that grows by adding elements to its end and shrinks by taking elements from its front. Common queue operations include enqueue, dequeue, front, clear, isEmpty. Queues follow FIFO order. Priority queues allow elements to be dequeued out of order based on priority. Array and linked list implementations of regular and priority queues are presented. Applications discussed include round robin scheduling, waiting lists, and shared resource access.
The document provides an overview of Java's Collections API, highlighting the limitations of arrays and the advantages of using list implementations such as ArrayList and LinkedList. It details the fundamental methods and interfaces within the Collections framework, including the collection and iterator interfaces, and showcases examples of using ArrayList with user-defined class objects. The agenda also suggests upcoming topics related to searching and sorting within collections.
Lists in Java allow ordered collections that permit duplicates. There are two main List implementations: LinkedList provides faster insertion/deletion while ArrayList provides faster random access. The List interface extends the Collection interface and adds methods for positional access and searching. Iterators can traverse Lists forward or backward. SubLists allow manipulating a range of elements in a List.
The document provides an introduction to the Standard Template Library (STL) in C++. It describes the main components of STL including containers, iterators, algorithms and function objects. It explains that containers store data, iterators access data, algorithms manipulate data, and function objects can be used by algorithms. Specific containers like vector, deque, list, set and map are outlined along with their characteristics and sample functions. Iterators and their categories are also summarized. Common algorithms like for_each, find, sort and merge are demonstrated through examples. Finally, it shows how function objects can be used by algorithms to customize operations.
The Java Collections framework provides a unified approach to store, retrieve, and manipulate groups of data. It includes interfaces and classes to implement commonly used data structures like lists, sets, maps, queues, and more. The framework is generic, provides standard algorithms and operations, and improves performance and quality of Java applications. It also supports thread safety through utility methods.
The document describes the implementation of a linked list in Java, including its constructors, basic methods (such as adding and removing elements), and additional features like 'spinlist' and 'altlists' methods. The lab program showcases how to create linked lists from arrays, copy them, and test their equality, as well as how to manipulate iterators and handle edge cases with empty or null lists. Overall, the document serves as a guide for developing and testing linked list functionalities.
The document discusses different collection types in C#, including arrays, ArrayList, List, LinkedList, Dictionary, Queue and Stack. It provides code examples to demonstrate how to create and use each collection type, and describes their key properties and methods. Generic collections like List provide stronger typing and are preferred over non-generic collections like ArrayList. Collections like Dictionary provide fast retrieval based on keys, while Queue and Stack access elements based on FIFO and LIFO principles respectively.
El entrenamiento de certificación de Java se enfoca en el marco de colecciones de Java, específicamente en la clase ArrayList, que proporciona arreglos dinámicos. Se discuten los constructores, métodos y beneficios de ArrayList, así como su funcionamiento interno y cómo manejar elementos. Además, se destacan las ventajas de ArrayList sobre los arreglos, como la capacidad de agregar elementos duplicados y modificar dinámicamente el tamaño.
The document discusses Java collections framework. It describes that the framework includes interfaces like List, Set, and Map that define different types of collections. It also discusses some implementations of these interfaces like ArrayList, LinkedList, Vector. ArrayList is like an array but resizable, while LinkedList stores elements in memory locations linked by addresses, making insertion/deletion faster than ArrayList. The document also covers methods of collections like add, remove, contains.
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptxBelicia R.S
Role play : First Aid- CPR, Recovery position and Hand hygiene.
Scene 1: Three friends are shopping in a mall
Scene 2: One of the friend becomes victim to electric shock.
Scene 3: Arrival of a first aider
Steps:
Safety First
Evaluate the victim‘s condition
Call for help
Perform CPR- Secure an open airway, Chest compression, Recuse breaths.
Put the victim in Recovery position if unconscious and breathing normally.
ABCs of Bookkeeping for Nonprofits TechSoup.pdfTechSoup
Accounting can be hard enough if you haven’t studied it in school. Nonprofit accounting is actually very different and more challenging still.
Need help? Join Nonprofit CPA and QuickBooks expert Gregg Bossen in this first-time webinar and learn the ABCs of keeping books for a nonprofit organization.
Key takeaways
* What accounting is and how it works
* How to read a financial statement
* What financial statements should be given to the board each month
* What three things nonprofits are required to track
What features to use in QuickBooks to track programs and grants
More Related Content
Similar to Collection implementation classes - Arraylist, linkedlist, Stack (20)
In Python, a list is a built-in dynamic sized array. We can store all types o...Karthik Rohan
In Python, a list is a built-in dynamic sized array (automatically grows and shrinks). We can store all types of items (including another list) in a list.
This document is a beginner's guide to Java Collections Framework. It introduces common data structures like lists, sets, queues and maps. It explains basic concepts like algorithms, collection types and implementations. It also covers operations on collections like iteration, sorting and filtering. The guide demonstrates how to select the appropriate data structure based on usage and provides examples of bulk operations using streams.
This document is a beginner's guide to Java Collections Framework. It introduces common data structures like lists, sets, queues and maps. It explains basic concepts like algorithms, collection types and implementations. It also covers operations on collections like iteration, sorting and filtering. The guide demonstrates how to select the appropriate data structure and implementation based on requirements. It provides examples of using collections and streams to perform bulk operations on data.
This document discusses linear data structures like stacks and queues. It defines them as ordered data collections where items are added and removed from specific ends. Stacks follow LIFO while queues follow FIFO. The key operations for stacks are push and pop, while queues use enqueue and dequeue. Python implementations are shown using lists. Functions are created to add, remove, and display items for both stacks and queues.
The document provides an overview of the Java Collections Framework, including various collection interfaces and classes like ArrayList, LinkedList, and HashSet, as well as their methods and usage. It aims to educate readers on the capabilities of collections, including accessing data, sorting, and using iterators. Key topics also include legacy classes, Collections utility methods, Iterators, Comparators, and the differences between different collection types.
The document provides an overview of data structures and algorithms, particularly focusing on concepts such as stacks, queues, and linked lists, along with their implementations in C. It outlines the basic operations and performance considerations for these data structures, as well as introduces algorithm specifications and their applications. Various implementation methods for stacks and queues are discussed, highlighting advantages and disadvantages of each.
The document provides an in-depth training on Java Collections Framework, specifically focusing on Lists and Sets, including ArrayLists, LinkedLists, and HashSets. It covers the differences in performance and implementations of these data structures, along with usage examples and methods for manipulating collections. Additionally, it highlights the advantages and expected behaviors of each collection type, such as access speed and memory efficiency.
The document provides an overview of common data structures including lists, stacks, queues, trees, and hash tables. It describes each data structure, how it can be implemented both statically and dynamically, and how to use the core Java classes like ArrayList, Stack, LinkedList, and HashMap that implement these structures. Key points covered include common operations for each structure, examples of using the Java classes, and applications like finding prime numbers in a range or matching brackets in an expression.
The document discusses queues and priority queues. It defines a queue as a waiting line that grows by adding elements to its end and shrinks by taking elements from its front. Common queue operations include enqueue, dequeue, front, clear, isEmpty. Queues follow FIFO order. Priority queues allow elements to be dequeued out of order based on priority. Array and linked list implementations of regular and priority queues are presented. Applications discussed include round robin scheduling, waiting lists, and shared resource access.
The document provides an overview of Java's Collections API, highlighting the limitations of arrays and the advantages of using list implementations such as ArrayList and LinkedList. It details the fundamental methods and interfaces within the Collections framework, including the collection and iterator interfaces, and showcases examples of using ArrayList with user-defined class objects. The agenda also suggests upcoming topics related to searching and sorting within collections.
Lists in Java allow ordered collections that permit duplicates. There are two main List implementations: LinkedList provides faster insertion/deletion while ArrayList provides faster random access. The List interface extends the Collection interface and adds methods for positional access and searching. Iterators can traverse Lists forward or backward. SubLists allow manipulating a range of elements in a List.
The document provides an introduction to the Standard Template Library (STL) in C++. It describes the main components of STL including containers, iterators, algorithms and function objects. It explains that containers store data, iterators access data, algorithms manipulate data, and function objects can be used by algorithms. Specific containers like vector, deque, list, set and map are outlined along with their characteristics and sample functions. Iterators and their categories are also summarized. Common algorithms like for_each, find, sort and merge are demonstrated through examples. Finally, it shows how function objects can be used by algorithms to customize operations.
The Java Collections framework provides a unified approach to store, retrieve, and manipulate groups of data. It includes interfaces and classes to implement commonly used data structures like lists, sets, maps, queues, and more. The framework is generic, provides standard algorithms and operations, and improves performance and quality of Java applications. It also supports thread safety through utility methods.
The document describes the implementation of a linked list in Java, including its constructors, basic methods (such as adding and removing elements), and additional features like 'spinlist' and 'altlists' methods. The lab program showcases how to create linked lists from arrays, copy them, and test their equality, as well as how to manipulate iterators and handle edge cases with empty or null lists. Overall, the document serves as a guide for developing and testing linked list functionalities.
The document discusses different collection types in C#, including arrays, ArrayList, List, LinkedList, Dictionary, Queue and Stack. It provides code examples to demonstrate how to create and use each collection type, and describes their key properties and methods. Generic collections like List provide stronger typing and are preferred over non-generic collections like ArrayList. Collections like Dictionary provide fast retrieval based on keys, while Queue and Stack access elements based on FIFO and LIFO principles respectively.
El entrenamiento de certificación de Java se enfoca en el marco de colecciones de Java, específicamente en la clase ArrayList, que proporciona arreglos dinámicos. Se discuten los constructores, métodos y beneficios de ArrayList, así como su funcionamiento interno y cómo manejar elementos. Además, se destacan las ventajas de ArrayList sobre los arreglos, como la capacidad de agregar elementos duplicados y modificar dinámicamente el tamaño.
The document discusses Java collections framework. It describes that the framework includes interfaces like List, Set, and Map that define different types of collections. It also discusses some implementations of these interfaces like ArrayList, LinkedList, Vector. ArrayList is like an array but resizable, while LinkedList stores elements in memory locations linked by addresses, making insertion/deletion faster than ArrayList. The document also covers methods of collections like add, remove, contains.
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptxBelicia R.S
Role play : First Aid- CPR, Recovery position and Hand hygiene.
Scene 1: Three friends are shopping in a mall
Scene 2: One of the friend becomes victim to electric shock.
Scene 3: Arrival of a first aider
Steps:
Safety First
Evaluate the victim‘s condition
Call for help
Perform CPR- Secure an open airway, Chest compression, Recuse breaths.
Put the victim in Recovery position if unconscious and breathing normally.
ABCs of Bookkeeping for Nonprofits TechSoup.pdfTechSoup
Accounting can be hard enough if you haven’t studied it in school. Nonprofit accounting is actually very different and more challenging still.
Need help? Join Nonprofit CPA and QuickBooks expert Gregg Bossen in this first-time webinar and learn the ABCs of keeping books for a nonprofit organization.
Key takeaways
* What accounting is and how it works
* How to read a financial statement
* What financial statements should be given to the board each month
* What three things nonprofits are required to track
What features to use in QuickBooks to track programs and grants
How to Manage Inventory Movement in Odoo 18 POSCeline George
Inventory management in the Odoo 18 Point of Sale system is tightly integrated with the inventory module, offering a solution to businesses to manage sales and stock in one united system.
Paper 108 | Thoreau’s Influence on Gandhi: The Evolution of Civil DisobedienceRajdeep Bavaliya
Dive into the powerful journey from Thoreau’s 19th‑century essay to Gandhi’s mass movement, and discover how one man’s moral stand became the backbone of nonviolent resistance worldwide. Learn how conscience met strategy to spark revolutions, and why their legacy still inspires today’s social justice warriors. Uncover the evolution of civil disobedience. Don’t forget to like, share, and follow for more deep dives into the ideas that changed the world.
M.A. Sem - 2 | Presentation
Presentation Season - 2
Paper - 108: The American Literature
Submitted Date: April 2, 2025
Paper Name: The American Literature
Topic: Thoreau’s Influence on Gandhi: The Evolution of Civil Disobedience
[Please copy the link and paste it into any web browser to access the content.]
Video Link: https://youtu.be/HXeq6utg7iQ
For a more in-depth discussion of this presentation, please visit the full blog post at the following link: https://rajdeepbavaliya2.blogspot.com/2025/04/thoreau-s-influence-on-gandhi-the-evolution-of-civil-disobedience.html
Please visit this blog to explore additional presentations from this season:
Hashtags:
#CivilDisobedience #ThoreauToGandhi #NonviolentResistance #Satyagraha #Transcendentalism #SocialJustice #HistoryUncovered #GandhiLegacy #ThoreauInfluence #PeacefulProtest
Keyword Tags:
civil disobedience, Thoreau, Gandhi, Satyagraha, nonviolent protest, transcendentalism, moral resistance, Gandhi Thoreau connection, social change, political philosophy
Non-Communicable Diseases and National Health Programs – Unit 10 | B.Sc Nursi...RAKESH SAJJAN
This PowerPoint presentation is prepared for Unit 10 – Non-Communicable Diseases and National Health Programs, as per the 5th Semester B.Sc Nursing syllabus outlined by the Indian Nursing Council (INC) under the subject Community Health Nursing – I.
This unit focuses on equipping students with knowledge of the causes, prevention, and control of non-communicable diseases (NCDs), which are a major public health challenge in India. The presentation emphasizes the nurse’s role in early detection, screening, management, and referral services under national-level programs.
🔹 Key Topics Included:
Definition, burden, and impact of NCDs in India
Epidemiology, risk factors, signs/symptoms, prevention, and management of:
Diabetes Mellitus
Hypertension
Cardiovascular Diseases
Stroke & Obesity
Thyroid Disorders
Blindness
Deafness
Injuries and Accidents (incl. road traffic injuries and trauma guidelines)
NCD-2 Cancers:
Breast Cancer
Cervical Cancer
Oral Cancer
Risk factors, screening, diagnosis, early signs, referral & palliative care
Role of nurse in screening, referral, counseling, and continuum of care
National Programs:
National Program for Prevention and Control of Cancer, Diabetes, Cardiovascular Diseases and Stroke (NPCDCS)
National Program for Control of Blindness
National Program for Prevention and Control of Deafness
National Tobacco Control Program (NTCP)
Introduction to Universal Health Coverage and Ayushman Bharat
Use of standard treatment protocols and referral flowcharts
This presentation is ideal for:
Classroom lectures, field assignments, health education planning, and student projects
Preparing for university exams, class tests, and community field postings
How to Manage Different Customer Addresses in Odoo 18 AccountingCeline George
A business often have customers with multiple locations such as office, warehouse, home addresses and this feature allows us to associate with different addresses with each customer streamlining the process of creating sales order invoices and delivery orders.
Assisting Individuals and Families to Promote and Maintain Health – Unit 7 | ...RAKESH SAJJAN
This PowerPoint presentation is based on Unit 7 – Assisting Individuals and Families to Promote and Maintain Their Health, a core topic in Community Health Nursing – I for 5th Semester B.Sc Nursing students, as per the Indian Nursing Council (INC) guidelines.
The unit emphasizes the nurse’s role in family-centered care, early detection of health problems, health promotion, and appropriate referrals, especially in the context of home visits and community outreach. It also strengthens the student’s understanding of nursing responsibilities in real-life community settings.
📘 Key Topics Covered in the Presentation:
Introduction to family health care: needs, principles, and objectives
Assessment of health needs of individuals, families, and groups
Observation and documentation during home visits and field assessments
Identifying risk factors: environmental, behavioral, genetic, and social
Conducting growth and development monitoring in infants and children
Recording and observing:
Milestones of development
Menstrual health and reproductive cycle
Temperature, blood pressure, and vital signs
General physical appearance and personal hygiene
Social assessment: understanding family dynamics, occupation, income, living conditions
Health education and counseling for individuals and families
Guidelines for early detection and referral of communicable and non-communicable diseases
Maintenance of family health records and individual health cards
Assisting families with:
Maternal and child care
Elderly and chronic disease management
Hygiene and nutrition guidance
Utilization of community resources – referral linkages, support services, and local health programs
Role of nurse in coordinating care, advocating for vulnerable individuals, and empowering families
Promoting self-care and family participation in disease prevention and health maintenance
This presentation is highly useful for:
Nursing students preparing for internal exams, university theory papers, or community postings
Health educators conducting family teaching sessions
Students conducting fieldwork and project work during community postings
Public health nurses and outreach workers dealing with preventive, promotive, and rehabilitative care
It’s structured in a step-by-step format, featuring tables, case examples, and simplified explanations tailored for easy understanding and classroom delivery.
Health Care Planning and Organization of Health Care at Various Levels – Unit...RAKESH SAJJAN
This comprehensive PowerPoint presentation is prepared for B.Sc Nursing 5th Semester students and covers Unit 2 of Community Health Nursing – I based on the Indian Nursing Council (INC) syllabus. The unit focuses on the planning, structure, and functioning of health care services at various levels in India. It is especially useful for nursing educators and students preparing for university exams, internal assessments, or professional teaching assignments.
The content of this presentation includes:
Historical development of health planning in India
Detailed study of various health committees: Bhore, Mudaliar, Kartar Singh, Shrivastava Committee, etc.
Overview of major health commissions
In-depth understanding of Five-Year Plans and their impact on health care
Community participation and stakeholder involvement in health care planning
Structure of health care delivery system at central, state, district, and peripheral levels
Concepts and implementation of Primary Health Care (PHC) and Sustainable Development Goals (SDGs)
Introduction to Comprehensive Primary Health Care (CPHC) and Health and Wellness Centers (HWCs)
Expanded role of Mid-Level Health Providers (MLHPs) and Community Health Providers (CHPs)
Explanation of national health policies: NHP 1983, 2002, and 2017
Key national missions and schemes including:
National Health Mission (NHM)
National Rural Health Mission (NRHM)
National Urban Health Mission (NUHM)
Ayushman Bharat – Pradhan Mantri Jan Arogya Yojana (PM-JAY)
Universal Health Coverage (UHC) and India’s commitment to equitable health care
This presentation is ideal for:
Nursing students (B.Sc, GNM, Post Basic)
Nursing tutors and faculty
Health educators
Competitive exam aspirants in nursing and public health
It is organized in a clear, point-wise format with relevant terminologies and a focus on applied knowledge. The slides can also be used for community health demonstrations, teaching sessions, and revision guides.
LDMMIA Practitioner Student Reiki Yoga S2 Video PDF Without Yogi GoddessLDM & Mia eStudios
A bonus dept update. Happy Summer 25 almost. Do Welcome or Welcome back. Our 10th Free workshop will be released the end of this week, June 20th Weekend. All Materials/updates/Workshops are timeless for future students.
♥ Your Attendance is valued.
We hit over 5k views for Spring Workshops and Updates-TY.
♥ Coming to our Shop This Weekend.
Timeless for Future Grad Level Students.
Practitioner Student. Level/Session 2 Packages.
* ♥The Review & Topics:
* All virtual, adult, education students must be over 18 years to attend LDMMIA eClasses and vStudio Thx.
* Please refer to our Free Workshops anytime for review/notes.
* Orientation Counts as S1 on introduction. Sold Separately as a PDF. Our S2 includes 2 Videos within 2 Mp4s. Sold Separately for Uploading.
* Reiki Is Japanese Energy Healing used Globally.
* Yoga is over 5k years old from India. It hosts many styles, teacher versions, and it’s Mainstream now vs decades ago.
* Teaching Vod, 720 Res, Mp4: Yoga Therapy is Reviewed as a Hatha, Classical, Med Yoga (ND) Base. Take practice notes as needed or repeat videos.
* Fused Teaching Vod, 720 Res, Mp4: Yoga Therapy Meets Reiki Review. Take Practice notes as needed or repeat videos.
* Video, 720 Res, Mp4: Practitioner Congrats and Workshop Visual Review with Suggestions.
♥ Bonus Studio Video, 720 Res, Mp4: Our 1st Reiki Video. Produced under Yogi Goddess, LDM Recording. As a Reiki, Kundalini, ASMR Spa, Music Visual. For Our Remastered, Beatz Single for Goddess Vevo Watchers. https://www.reverbnation.com/yogigoddess
* ♥ Our Videos are Vevo TV and promoted within the LDMMIA Profiles.
* Scheduled upload for or by Weekend Friday June 13th.
* LDMMIA Digital & Merch Shop: https://ldm-mia.creator-spring.com
* ♥ As a student, make sure you have high speed connections/wifi for attendance. This sounds basic, I know lol. But, for our video section. The High Speed and Tech is necessary. Otherwise, any device can be used. Our Zip drive files should serve MAC/PC as well.
* ♥ On TECH Emergency: I have had some rare, rough, horrid timed situations as a Remote Student. Pros and Cons to being on campus. So Any Starbucks (coffee shop) or library can be used for wifi hot spots. You can work at your own speed and pace.
* ♥ We will not be hosting deadlines, tests/exams.
* ♥Any homework will be session practice and business planning. Nothing stressful or assignment submissions.
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...Ultimatewinner0342
🧠 Lazy Sunday Quiz | General Knowledge Trivia by SMC Quiz Club – Silchar Medical College
Presenting the Lazy Sunday Quiz, a fun and thought-provoking general knowledge quiz created by the SMC Quiz Club of Silchar Medical College & Hospital (SMCH). This quiz is designed for casual learners, quiz enthusiasts, and competitive teams looking for a diverse, engaging set of questions with clean visuals and smart clues.
🎯 What is the Lazy Sunday Quiz?
The Lazy Sunday Quiz is a light-hearted yet intellectually rewarding quiz session held under the SMC Quiz Club banner. It’s a general quiz covering a mix of current affairs, pop culture, history, India, sports, medicine, science, and more.
Whether you’re hosting a quiz event, preparing a session for students, or just looking for quality trivia to enjoy with friends, this PowerPoint deck is perfect for you.
📋 Quiz Format & Structure
Total Questions: ~50
Types: MCQs, one-liners, image-based, visual connects, lateral thinking
Rounds: Warm-up, Main Quiz, Visual Round, Connects (optional bonus)
Design: Simple, clear slides with answer explanations included
Tools Needed: Just a projector or screen – ready to use!
🧠 Who Is It For?
College quiz clubs
School or medical students
Teachers or faculty for classroom engagement
Event organizers needing quiz content
Quizzers preparing for competitions
Freelancers building quiz portfolios
💡 Why Use This Quiz?
Ready-made, high-quality content
Curated with lateral thinking and storytelling in mind
Covers both academic and pop culture topics
Designed by a quizzer with real event experience
Usable in inter-college fests, informal quizzes, or Sunday brain workouts
📚 About the Creators
This quiz has been created by Rana Mayank Pratap, an MBBS student and quizmaster at SMC Quiz Club, Silchar Medical College. The club aims to promote a culture of curiosity and smart thinking through weekly and monthly quiz events.
🔍 SEO Tags:
quiz, general knowledge quiz, trivia quiz, SlideShare quiz, college quiz, fun quiz, medical college quiz, India quiz, pop culture quiz, visual quiz, MCQ quiz, connect quiz, science quiz, current affairs quiz, SMC Quiz Club, Silchar Medical College
📣 Reuse & Credit
You’re free to use or adapt this quiz for your own events or sessions with credit to:
SMC Quiz Club – Silchar Medical College & Hospital
Curated by: Rana Mayank Pratap
Paper 109 | Archetypal Journeys in ‘Interstellar’: Exploring Universal Themes...Rajdeep Bavaliya
Get ready to embark on a cosmic quest as we unpack the archetypal power behind Christopher Nolan’s ‘Interstellar.’ Discover how hero’s journey tropes, mythic symbols like wormholes and tesseracts, and themes of love, sacrifice, and environmental urgency shape this epic odyssey. Whether you’re a film theory buff or a casual viewer, you’ll learn why Cooper’s journey resonates with timeless myths—and what it means for our own future. Smash that like button, and follow for more deep dives into cinema’s greatest stories!
M.A. Sem - 2 | Presentation
Presentation Season - 2
Paper - 109: Literary Theory & Criticism and Indian Aesthetics
Submitted Date: April 5, 2025
Paper Name: Literary Theory & Criticism and Indian Aesthetics
Topic: Archetypal Journeys in ‘Interstellar’: Exploring Universal Themes in Nolan’s Cosmic Odyssey
[Please copy the link and paste it into any web browser to access the content.]
Video Link: https://youtu.be/vHLaLZPHumk
For a more in-depth discussion of this presentation, please visit the full blog post at the following link: https://rajdeepbavaliya2.blogspot.com/2025/04/archetypal-journeys-in-interstellar-exploring-universal-themes-in-nolan-s-cosmic-odyssey.html
Please visit this blog to explore additional presentations from this season:
Hashtags:
#ChristopherNolan #Interstellar #NolanFilms #HeroJourney #CosmicOdyssey #FilmTheory #ArchetypalCriticism #SciFiCinema #TimeDilation #EnvironmentalCinema #MythicStorytelling
Keyword Tags:
Interstellar analysis, Christopher Nolan archetypes, hero’s journey explained, wormhole symbolism, tesseract meaning, myth in sci-fi, cinematic archetypes, environmental themes film, love across time, Nolan film breakdown
Pests of Maize: An comprehensive overview.pptxArshad Shaikh
Maize is susceptible to various pests that can significantly impact yields. Key pests include the fall armyworm, stem borers, cob earworms, shoot fly. These pests can cause extensive damage, from leaf feeding and stalk tunneling to grain destruction. Effective management strategies, such as integrated pest management (IPM), resistant varieties, biological control, and judicious use of chemicals, are essential to mitigate losses and ensure sustainable maize production.
2. Learning Outcome
• Understand the working and methods in classes
– ArrayList
– LinkedList
– Queue
– Set
– Trees
• Interfaces
– Iterator
– ListIterator
3. Collection class- ArrayList
• ArrayList supports dynamic arrays that can grow as needed
• ArrayList is a variable-length array of object references.
• An ArrayList can dynamically increase or decrease insize.
• Array lists are created with an initial size
• When this size is exceeded, the collection is automatically
enlarged. When objects are removed, the array can be
shrunk.
• public class ArrayList<E> extends AbstractList<E> implements
List<E>, RandomAccess, Cloneable, Serializable
6. Original List: [India, China, US, Germany,
Bhutan]
After add: [India, China, US, SriLanka,
Germany, Bhutan]
After remove: [India, US, SriLanka,
Bhutan]
alist.size() 0
alist.size() 5
ArrayList
7. After Sort: [Bhutan, India, SriLanka, US]
After reverse: [US, SriLanka, India,
Bhutan]
Using get(): India
After subList: [SriLanka, India]
After set: [Nepal, India]
After Combine: [US, SriLanka, India,
Bhutan, Nepal, India]
8. For loop – iterated through List
for(String v : alist)
{
System.out.print(v + “*** ");
}
US *** SriLanka*** India***Bhutan***Nepal***India
9. Storing user defined class in ArrayList
import java.util.*;
class Book
{
private String title;
private int price;
Book(String title, int price)
{
this.title=title;
this.price=price;
}
@Override
public String toString() {
return "Title is: "+this.title+"n" +" Price is: "+this.price;
}
}
10. Storing user defined class in ArrayList
class BookList {
public static void main(String args[]) {
ArrayList<Book> al= new ArrayList<Book>();
al.add(new Book("Java Fundamentals", 340));
al.add(new Book("Data Structure", 140));
al.add(new Book("Python Programming", 320));
for (Book tmp: al)
System.out.println(tmp);
}
}
11. Output:
Title is: Java Fundamentals
Price is: 340
Title is: Data Structure
Price is: 140
Title is: Python Programming
Price is: 320
12. Linked List class
• public class LinkedList<E> extends AbstractSequentialList<E>
implements List<E>, Deque<E>, Cloneable, Serializable
• LinkedList( )
• LinkedList(Collection<? extends E> c)
• To add elements to the start of list - addFirst( ) or offerFirst( ).
• To add elements to the end of list - addLast( ) or offerLast( ).
• To obtain the first element - getFirst( ) or peekFirst( ).
• To obtain the last element - getLast( ) or peekLast( ).
• To remove the first element - removeFirst( ) or pollFirst( ).
• To remove the last element - removeLast( ) or pollLast( ).
• First method gives exception on list empty, Second method
returns null or false
14. LinkedList class
• Doubly-linked list implementation of the List
and Deque interfaces.
• Implements all optional list operations, and
permits all elements (including null).
• All of the operations perform as could be
expected for a doubly-linked list.
16. Operations
• To create a LinkedList of String type:
LinkedList<String> llist=new LinkedList<String>();
• To add an element to a list:
llist.add(2,”Apple”); llist.add(”Apple”);
llist.addFirst(”Apple”); llist.addLast(”Apple”);
• To remove an element from the list:
llist.remove();
llist.remove(2); llist.remove(”Apple”);
llist.removeFirst(); llist.removeLast();
• To get the element from the list:
llist.get(3); llist.getFirst(); llist.getLast();
17. Operations
• To insert the specified element to a list: return boolean
llist.offer(“Mango”); llist.offerFirst(”Mango”);
llist.offerLast(”Mango”);
• To remove an element from the list: returns spl. Value
llist.poll(); llist.pollFirst(); llist.pollLast();
• To search an element from the list: returns spl. Value
llist.peek();llist.peekFirst(); llist.peekLast();
18. LinkedList
import java.util.*;
class LinkListTest
{
public static void main(String args[])
{
LinkedList<String> llist = new LinkedList<String>();
llist.add("Mango");
llist.add("Grapes");
llist.addLast("Orange");
System.out.println("Original List: "+llist);
llist.addFirst("Apple");
System.out.println("After addFirst: "+llist);
llist.add("Kiwi");
System.out.println("After add: "+llist);
System.out.println("Peek First: "+llist.peekFirst());
Original List: [Mango, Grapes, Orange]
After addFirst: [Apple, Mango, Grapes,
Orange]
After add: [Apple, Mango, Grapes, Orange, Kiwi]
Peek First: Apple
20. Iterator interface
• Use the Iterator object provided by each Collection
class, to access each element in the Collection.
• public interface Iterator<E>
• Steps to access collections via Iterator
– 1. Obtain an iterator to the start of the collection by
calling the collection’s iterator( ) method.
Iterator<E> iterator()
– 2. Set up a loop that makes a call to hasNext( ). Have the
loop iterate as long as hasNext( ) returns true.
– 3. Within the loop, obtain each element by calling next( ).
22. ListIterator interface
• ListIterator is available only to those collections
that implement the List interface.
• For collections that implement List, obtain an
iterator by calling listIterator( )
• A listiterator has the ability to access the
collection in either the forward or backward
direction and allows to modify an element.
• public interface ListIterator<E> extends Iterator
<E>
24. import java.util.*;
class ArrIter
{
public static void main(String args[])
{
ArrayList<String> al = new ArrayList<String>();
al.add("C");
al.add("A");
al.add("E");
al.add("B");
al.add("D");
al.add("F");
System.out.print("Original contents of al: ");
Iterator<String> itr = al.iterator();
while(itr.hasNext()) {
String element = itr.next();
System.out.print(element + " ");
}
Original contents of al: C A E B D F
25. System.out.println(“Original list”+al);
ListIterator<String> litr = al.listIterator();
while(litr.hasNext()) {
String element = litr.next();
litr.set(element + "+");
}
System.out.println(“Modified list ”+al);
System.out.print("Modified list backwards: ");
while(litr.hasPrevious()) {
String element = litr.previous();
System.out.print(element + " ");
}
} //main
} //class
Modified list [C+, A+, E+, B+, D+, F+]
Original list C A E B D F
Modified list backwards:
F+ D+ B+ E+ A+ C+
27. PriorityQueue Class
• public class PriorityQueue<E> extends AbstractQueue<E>
implements Serializable
• Dynamic queue
• PriorityQueue( )
• PriorityQueue(int capacity)
• PriorityQueue(int capacity, Comparator<? super E> comp) ---- default
comparator is ascending order, can define custom defined
comparator (timestamp)
• PriorityQueue(Collection<? extends E> c)
• PriorityQueue(PriorityQueue<? extends E> c)
• PriorityQueue(SortedSet<? extends E> c)
• Min Heap Storage by default
29. PriorityQueue
import java.util.*;
public class PriorityQueueDemo {
public static void main(String args[])
{
// Creating an empty PriorityQueue
PriorityQueue<Integer> queue = new PriorityQueue<Integer>();
// Use add() method to add elements into the Queue
queue.add(10);
queue.add(15);
queue.add(30);
queue.add(20);
queue.add(5);
System.out.println("PriorityQueue: " + queue);
}
}
PriorityQueue: [5, 10, 30, 20, 15]
31. PriorityQueue
import java.util.*;
public class PriorityQueueDemo {
public static void main(String args[])
{
// Creating an empty PriorityQueue
PriorityQueue<Integer> queue = new PriorityQueue<Integer>();
// Use add() method to add elements into the Queue
queue.add(10);
queue.add(15);
queue.add(30);
queue.add(20);
queue.add(5);
queue.add(22);
queue.add(3);
queue.add(50);
queue.add(18);
System.out.println("PriorityQueue: " + queue);
}
}
32. PriorityQueue
import java.util.*;
public class PriorityQueueDemo {
public static void main(String args[])
{
// Creating an empty PriorityQueue
PriorityQueue<Integer> queue = new PriorityQueue<Integer>();
// Use add() method to add elements into the Queue
queue.add(10);
queue.add(15);
queue.add(30);
queue.add(20);
queue.add(5);
queue.add(22);
queue.add(3);
queue.add(50);
queue.add(18);
System.out.println("PriorityQueue: " + queue);
}
}
PriorityQueue: [3, 10, 5, 18, 15, 30, 22, 50, 20]
33. Operations
import java.util.*;
public class Example
{
public static void main(String args[])
{
// Creating empty priority queue
PriorityQueue<String> pQueue =
new PriorityQueue<String>();
// Adding items to the pQueue using add()
pQueue.add("C");
pQueue.add("Python");
pQueue.add("C++");
pQueue.add("Java");
System.out.println("Elements in Priority Queue : "+pQueue);
// Printing the most priority element
System.out.println("Head value using peek function:"
+ pQueue.peek());
// Printing all elements
System.out.println("The queue elements:");
Iterator itr = pQueue.iterator();
while (itr.hasNext())
System.out.println(itr.next());
Elements in Priority Queue :
[C, Java, C++, Python]
Head value using peek function:C
The queue elements:
C
Java
C++
Python
34. Operations
// Removing the top priority element (or head) and
// printing the modified pQueue using poll()
pQueue.poll();
System.out.println("After removing an element" +
"with poll function: " +pQueue);
// Removing Java using remove()
pQueue.remove("Java");
System.out.println("after removing Java with" +
" remove function: "+pQueue);
Iterator<String> itr3 = pQueue.iterator();
// Check if an element is present using contains()
boolean b = pQueue.contains("C");
System.out.println ( "Priority queue contains C " +
"or not?: " + b);
// Getting objects from the queue using toArray()
// in an array and print the array
Object[] arr = pQueue.toArray();
System.out.println ( "Value in array: ");
for (int i = 0; i<arr.length; i++)
System.out.println ( "Value: " + arr[i].toString()) ;
}
}
After removing an element with
poll function: [C++, Java, Python]
after removing Java with remove function:
[C++, Python]
Priority queue contains C or not?: false
Value in array:
Value: C++
Value: Python
35. TreeSet Class
• public class TreeSet<E> extends AbstractSet<E>
implements NavigableSet<E>, Cloneable,
Serializable
• It creates a collection that uses a tree for storage.
Objects are stored in sorted, ascending order.
• Access and retrieval times are quite fast, which
makes TreeSet an excellent choice when storing
large amounts of sorted information that must
be found quickly.
37. Constructors
• TreeSet( )
• TreeSet(Collection<? extends E> c)
• TreeSet(Comparator<? super E> comp)
• TreeSet(SortedSet<E> ss)
• TreeSet implements the SortedSet interface so
duplicate values are not allowed.
38. TreeSet
import java.util.TreeSet;
public class TreeSetExample
{ public static void main(String args[]) {
// TreeSet of String Type
TreeSet<String> tset = new TreeSet<String>();
// Adding elements to TreeSet<String>
tset.add("ABC");
tset.add("String");
tset.add("Test");
tset.add("Pen");
tset.add("Ink");
tset.add("Jack");
tset.add("Pen"); // no error. Duplicate value is not inserted
//Displaying TreeSet
System.out.println(tset);
} }
[ABC, Ink, Jack, Pen, String, Test]
39. System.out.println(tset);
System.out.println("The first element is: " + tset.first());
// first element is removed
System.out.println("First lowest element " +
"removed is : " + tset.pollFirst()); //pollLast removes last highestelement
System.out.println("After removing element" +
" from TreeSet: " + tset);
System.out.println(tset.lower("SSN")); //< Pen
System.out.println(tset.lower("String")); //< Pen
System.out.println(tset.floor("String")); //<= String
System.out.println(tset.ceiling("String")); //>= String
System.out.println(tset.higher("String")); //> Test
System.out.println(tset.descendingSet()); // [Test, String, Pen, Jack, Ink]
System.out.println(tset.headSet("Pen")); // all elements < [Ink, Jack]
System.out.println(tset.tailSet("Pen")); //all elements >= [Pen, String, Test]
System.out.println(tset.subSet("Jack","String")); //[Jack, Pen]
[ABC, Ink, Jack, Pen, String, Test]
The first element is: ABC
First lowest element removed is : ABC
After removing element from TreeSet:
[Ink, Jack, Pen, String, Test]