SlideShare a Scribd company logo
TEACHERS INDIVIDUALAND
INSTITUTIONAL DEVELOPMENT
MODEL CLASSES
PRESENTED BY
Ms.V.VENNILA, MCA.,M.Phil.,
Asst.Prof, Dept Of Information Technology,
Bon Secours college for women,
THANJAVUR.
WORKLOAD(2018-19)
SUBJECT CLASS HOURS
JAVA PROGRAMMING AND LAB II IT 05+ 03
MOBILE COMPUTING III IT 06
MINI PROJECT III IT 06
TEACHING SESSION
KEY FEATURES JAVA PROGRAMMING
1. WARM UP ( 5 Mints) Let students do some warm up
2. TEACHING AID ( 20 Mints) Outlines the topic that will be taught using chalk
and talk.
3. INFO BIT ( 2 Mints) Provides interesting information related to the
java
4. PRACTICE ZONE ( 5 Mints) Find out the Java quizzes
5. REVIEW ZONE ( 5 Mints) Applies the concept one java program exercises
which they learnt in previous classes
6. ENHANCE LIFE SKILLS ( 2 Mints) Contains java questions related to real time
applications
7. CROSS CONNECTION ( 2 Mints) Applies the knowledge and skills learnt in java to
other programming languages.
8. SOMETHING MORE ( 2 Mints) Includes ideas for projects using java
programming language.
9. TEST YOURSELF ( 2 Mints) Contains assessment papers for testing the
concepts learnt
TEACHING SESSION
KEY FEATURES MOBILE COMPUTING
1. WARM UP ( 5 Mints) Let students do some warm up by asking them
some prompts about mobile phones.
2. TEACHING AID ( 20 Mints) Outlines the topic that will be taught about the
mobile phones.
3. INFO BIT ( 2 Mints) Provides interesting information related to the
computation of mobile.
4. PRACTICE ZONE ( 5 Mints) Record and shared their ideas about mobiles.
5. REVIEW ZONE ( 5 Mints) Applies the concept of one mobile to another
mobile.
6. ENHANCE LIFE SKILLS ( 2
Mints)
Contains questions related to real-life situations
7. CROSS CONNECTION ( 2
Mints)
Applies the knowledge and skills learnt in science
to other subjects
8. SOMETHING MORE ( 2
Mints)
Includes ideas for experiments and projects
9. TEST YOURSELF ( 2 Mints) Contains assessment papers for testing the
concepts learnt
TEACHING SESSION
KEY FEATURES MINI PROJECT
1. WARM UP ( 5 Mints) Let students do some warm up discussion about
our college needs to do some project.
2. TEACHING AID ( 20 Mints) Outlines the topic that will be taught.
3. INFO BIT ( 2 Mints) Provides interesting information related to the
topic
4. PRACTICE ZONE ( 5 Mints) Find out the real time applications.
5. REVIEW ZONE ( 5 Mints) Applies and discuss with the concept to the
students project.
6. ENHANCE LIFE SKILLS
( 2 Mints)
Contains questions related to web based
applications.
7. CROSS CONNECTION
( 2 Mints)
Applies the knowledge and skills learnt in real
time projects to other subjects
8. SOMETHING MORE
( 2 Mints)
Includes ideas for experiments and projects
9. TEST YOURSELF ( 2 Mints) Contains assessment papers for testing the
concepts learnt
JAVA – INHERITANCE
What is Inheritance?
Inheritance is a mechanism in which one class acquires the property of
another class.
SYNTAX
class Vehicle
{
......
}
class Car extends Vehicle
{
....... //extends the property of vehicle class.
}
Now based on above example.
Vehicle is super class of Car.
Car is sub class of Vehicle.
Car IS-A Vehicle.
PROGRAM FOR INHERITANCE
class Parent
{
public void p1()
{
System.out.println("Parent method");
}
}
public class Child extends Parent {
public void c1()
{
System.out.println("Child method");
}
public static void main(String[] args)
{
Child cobj = new Child();
cobj.c1(); //method of Child class
cobj.p1(); //method of Parent class
}
}
OUTPUT
Child method
Parent method
Types of Inheritance
1.Single Inheritance
2.Multilevel Inheritance
3.Heirarchical Inheritance
RESEARCH TOPIC
DEFENSES AGAINST ONLINE PASSWORD GUESSING
ATTACKS BY USING PERSUASIVE CLICK POINTS
AIM:
 “Defenses against online password guessing attacks by
using persuasive click points” provides graphical passwords
which was pixel-based essentially use images or
representation of images as passwords.
 It aims to provide users with secure computing environments.
ABSTRACT
• Users often create memorable passwords that are easy for
attackers to guess, but assigned passwords are difficult for
users to remember.
• Graphical pixel based password is easy to remember as
well as difficult to guess.
• The major goal of this work is to reduce the guessing
attacks as well as encouraging users to select more
random, and difficult passwords to guess.
ABSTRACT CONTINUES..
• Graphical passwords essentially use pixel based images
or representation of images as passwords.
• There are various graphical password schemes or
graphical password software in the market. However,
very little research has been done to analyze graphical
passwords that are still immature.
• Therefore, this project work merges persuasive
cued click points and password guessing resistant
protocol.
THANK YOU..

More Related Content

PPTX
java packages and its types with example
PDF
SE-IT JAVA LAB SYLLABUS
DOCX
PPTX
Java Inheritance
PPT
2-ctm2-experience
PDF
Oop question-bank
XLS
PPTX
A level ict at bosworth
java packages and its types with example
SE-IT JAVA LAB SYLLABUS
Java Inheritance
2-ctm2-experience
Oop question-bank
A level ict at bosworth

Similar to MODEL CLASS (20)

PPTX
Syslog Technologies
PPT
OOPs concepts.ppt
PPT
OOPs concepts.ppt
PPT
OOPs concepts.ppt
PPT
OOPs concepts.ppt
PPT
OOPs concepts.ppt
PDF
IRJET - Abhiyantriki Shiksha
PDF
Segundo avance
PPT
Teaching Object Oriented Programming Courses by Sandeep K Singh JIIT,Noida
PPT
Introduction to Computers, the Internet and java
PPT
Welcometo imscomputers7
PDF
Resume malav bhavsar_computer_science
PDF
Java Magazine May/June 2012
PPTX
Cyber securityeducation may2015
PPTX
Computer Masti
PDF
Campus news information system - Android
PPTX
school-management-system-.pptx
PPTX
Lecture 12
PPTX
1.13.12 WDPSD Web 2.0 Inservice Presentation
Syslog Technologies
OOPs concepts.ppt
OOPs concepts.ppt
OOPs concepts.ppt
OOPs concepts.ppt
OOPs concepts.ppt
IRJET - Abhiyantriki Shiksha
Segundo avance
Teaching Object Oriented Programming Courses by Sandeep K Singh JIIT,Noida
Introduction to Computers, the Internet and java
Welcometo imscomputers7
Resume malav bhavsar_computer_science
Java Magazine May/June 2012
Cyber securityeducation may2015
Computer Masti
Campus news information system - Android
school-management-system-.pptx
Lecture 12
1.13.12 WDPSD Web 2.0 Inservice Presentation
Ad

More from VENNILAV6 (20)

PPTX
WORKING WITH GRAPHICS
PPTX
CREATING A MASTER PAGE
PPTX
CREATING A NEW PUBLICATION IN PAGEMAKER
PPTX
Relational algebra
PPTX
Joins & constraints
PPTX
STRUCTURE OF SQL QUERIES
PPTX
Database architecture
PPTX
Data definition language
PPTX
INTERCONNECTION STRUCTURE
PPTX
CACHE MEMORY
PPTX
Machine control flow
PPTX
COMPUTER FUNCTIONS
PPTX
EXTERNAL DEVICE
PPT
CORELDRAW EXAMPLES
PPT
BASICS OF DATA STRUCTURE
PPTX
object oriented system development
PPTX
virtual function
PPTX
constructor and destructor
PPTX
INHERITANCE
PPTX
BASICS OF MOBILE COMPUTING
WORKING WITH GRAPHICS
CREATING A MASTER PAGE
CREATING A NEW PUBLICATION IN PAGEMAKER
Relational algebra
Joins & constraints
STRUCTURE OF SQL QUERIES
Database architecture
Data definition language
INTERCONNECTION STRUCTURE
CACHE MEMORY
Machine control flow
COMPUTER FUNCTIONS
EXTERNAL DEVICE
CORELDRAW EXAMPLES
BASICS OF DATA STRUCTURE
object oriented system development
virtual function
constructor and destructor
INHERITANCE
BASICS OF MOBILE COMPUTING
Ad

Recently uploaded (20)

PDF
Classroom Observation Tools for Teachers
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PPTX
Radiologic_Anatomy_of_the_Brachial_plexus [final].pptx
PDF
What if we spent less time fighting change, and more time building what’s rig...
PPTX
A powerpoint presentation on the Revised K-10 Science Shaping Paper
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
PDF
IGGE1 Understanding the Self1234567891011
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
advance database management system book.pdf
PPTX
Introduction to Building Materials
PDF
Trump Administration's workforce development strategy
PDF
Empowerment Technology for Senior High School Guide
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
PDF
Weekly quiz Compilation Jan -July 25.pdf
PDF
Hazard Identification & Risk Assessment .pdf
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
Computing-Curriculum for Schools in Ghana
PDF
Complications of Minimal Access Surgery at WLH
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
Classroom Observation Tools for Teachers
Paper A Mock Exam 9_ Attempt review.pdf.
Radiologic_Anatomy_of_the_Brachial_plexus [final].pptx
What if we spent less time fighting change, and more time building what’s rig...
A powerpoint presentation on the Revised K-10 Science Shaping Paper
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
IGGE1 Understanding the Self1234567891011
202450812 BayCHI UCSC-SV 20250812 v17.pptx
advance database management system book.pdf
Introduction to Building Materials
Trump Administration's workforce development strategy
Empowerment Technology for Senior High School Guide
Final Presentation General Medicine 03-08-2024.pptx
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
Weekly quiz Compilation Jan -July 25.pdf
Hazard Identification & Risk Assessment .pdf
Supply Chain Operations Speaking Notes -ICLT Program
Computing-Curriculum for Schools in Ghana
Complications of Minimal Access Surgery at WLH
Orientation - ARALprogram of Deped to the Parents.pptx

MODEL CLASS

  • 1. TEACHERS INDIVIDUALAND INSTITUTIONAL DEVELOPMENT MODEL CLASSES PRESENTED BY Ms.V.VENNILA, MCA.,M.Phil., Asst.Prof, Dept Of Information Technology, Bon Secours college for women, THANJAVUR.
  • 2. WORKLOAD(2018-19) SUBJECT CLASS HOURS JAVA PROGRAMMING AND LAB II IT 05+ 03 MOBILE COMPUTING III IT 06 MINI PROJECT III IT 06
  • 3. TEACHING SESSION KEY FEATURES JAVA PROGRAMMING 1. WARM UP ( 5 Mints) Let students do some warm up 2. TEACHING AID ( 20 Mints) Outlines the topic that will be taught using chalk and talk. 3. INFO BIT ( 2 Mints) Provides interesting information related to the java 4. PRACTICE ZONE ( 5 Mints) Find out the Java quizzes 5. REVIEW ZONE ( 5 Mints) Applies the concept one java program exercises which they learnt in previous classes 6. ENHANCE LIFE SKILLS ( 2 Mints) Contains java questions related to real time applications 7. CROSS CONNECTION ( 2 Mints) Applies the knowledge and skills learnt in java to other programming languages. 8. SOMETHING MORE ( 2 Mints) Includes ideas for projects using java programming language. 9. TEST YOURSELF ( 2 Mints) Contains assessment papers for testing the concepts learnt
  • 4. TEACHING SESSION KEY FEATURES MOBILE COMPUTING 1. WARM UP ( 5 Mints) Let students do some warm up by asking them some prompts about mobile phones. 2. TEACHING AID ( 20 Mints) Outlines the topic that will be taught about the mobile phones. 3. INFO BIT ( 2 Mints) Provides interesting information related to the computation of mobile. 4. PRACTICE ZONE ( 5 Mints) Record and shared their ideas about mobiles. 5. REVIEW ZONE ( 5 Mints) Applies the concept of one mobile to another mobile. 6. ENHANCE LIFE SKILLS ( 2 Mints) Contains questions related to real-life situations 7. CROSS CONNECTION ( 2 Mints) Applies the knowledge and skills learnt in science to other subjects 8. SOMETHING MORE ( 2 Mints) Includes ideas for experiments and projects 9. TEST YOURSELF ( 2 Mints) Contains assessment papers for testing the concepts learnt
  • 5. TEACHING SESSION KEY FEATURES MINI PROJECT 1. WARM UP ( 5 Mints) Let students do some warm up discussion about our college needs to do some project. 2. TEACHING AID ( 20 Mints) Outlines the topic that will be taught. 3. INFO BIT ( 2 Mints) Provides interesting information related to the topic 4. PRACTICE ZONE ( 5 Mints) Find out the real time applications. 5. REVIEW ZONE ( 5 Mints) Applies and discuss with the concept to the students project. 6. ENHANCE LIFE SKILLS ( 2 Mints) Contains questions related to web based applications. 7. CROSS CONNECTION ( 2 Mints) Applies the knowledge and skills learnt in real time projects to other subjects 8. SOMETHING MORE ( 2 Mints) Includes ideas for experiments and projects 9. TEST YOURSELF ( 2 Mints) Contains assessment papers for testing the concepts learnt
  • 6. JAVA – INHERITANCE What is Inheritance? Inheritance is a mechanism in which one class acquires the property of another class. SYNTAX class Vehicle { ...... } class Car extends Vehicle { ....... //extends the property of vehicle class. } Now based on above example. Vehicle is super class of Car. Car is sub class of Vehicle. Car IS-A Vehicle.
  • 7. PROGRAM FOR INHERITANCE class Parent { public void p1() { System.out.println("Parent method"); } } public class Child extends Parent { public void c1() { System.out.println("Child method"); } public static void main(String[] args) { Child cobj = new Child(); cobj.c1(); //method of Child class cobj.p1(); //method of Parent class } } OUTPUT Child method Parent method
  • 8. Types of Inheritance 1.Single Inheritance 2.Multilevel Inheritance 3.Heirarchical Inheritance
  • 9. RESEARCH TOPIC DEFENSES AGAINST ONLINE PASSWORD GUESSING ATTACKS BY USING PERSUASIVE CLICK POINTS AIM:  “Defenses against online password guessing attacks by using persuasive click points” provides graphical passwords which was pixel-based essentially use images or representation of images as passwords.  It aims to provide users with secure computing environments.
  • 10. ABSTRACT • Users often create memorable passwords that are easy for attackers to guess, but assigned passwords are difficult for users to remember. • Graphical pixel based password is easy to remember as well as difficult to guess. • The major goal of this work is to reduce the guessing attacks as well as encouraging users to select more random, and difficult passwords to guess.
  • 11. ABSTRACT CONTINUES.. • Graphical passwords essentially use pixel based images or representation of images as passwords. • There are various graphical password schemes or graphical password software in the market. However, very little research has been done to analyze graphical passwords that are still immature. • Therefore, this project work merges persuasive cued click points and password guessing resistant protocol.