Computer Science Video Lectures MIT,Harvard,Stanford ,GATE ,IIT: Video lecture of Core Java and Advance Java basics
BEST VIEW AVAILABLE ONLY IN MOZILLA,CHROME

Video lecture of Core Java and Advance Java basics

These all videos are small tutorials i.e hashed video, (about 9-10 minuets long
so not boring)over Java technology which are briefly explained and
demonstrated in simple language and I feel that this is the best tutorial for
beginners to learn java's Abed..Here one can utilized these tutorials as ladder
for learning of Java basics .
This tutorial is intended for beginners who are interested in developing and
gaining knowledge in Java technology.
Features of Java:

This very first video tutorial of Java features are an influential White Paper that
explains their design goals and accomplishments. They also conclude a shorter
summary that is organized along the following 11 buzzwords:

Simple
Portable
Object Oriented
Interpreted
Distributed
High Performance
Robust
Multithreaded
Secure
Dynamic
Architecture Neutral
etc.....
download lecture..
Java OOPS concept:
This video lecture explains object oriented concept of Java .
In an Java,object-oriented design is a technique for programming that focuses
on the data (= objects) and on the interfaces to that object. To make an analogy
with carpentry, an "object-oriented" carpenter would be mostly concerned with
the chair he was building, and secondarily with the tools used to make it; a
"non-object-oriented" carpenter would think primarily of his tools. The
object-oriented facilities of Java are essentially those of C++.
download lecture...
Java Data types and Arrays:
This video tutorial is intended to demonstrate 8 primitive data types available
in java.
Four of them Integer type (i.e Byte,Short,Int,Long),two of them floating type
(i.e. float ,double ) and remaining two char and boolean type,about these 8
in-built data type lecture explain exactly the way beginners want to learn ..
read more and download.
Java Compilation:
download lecture.
JAVA OOPS Constructors:
This video tutorial includes topic over constructor ,what are they how to
use constructor in java program,and lot about constructor overloading.etc.
download lecture...
Java language and class methods:
This video tutorial includes topic over class and objects ,what is class and
what is object, how to create an object...
download lecture.
Java class ,Interface and joins:
In the Java programming language, an interface is not a class but a set of
requirements for classes that want to conform to the interface.
Typically, the supplier of some service states: "If your class conforms to a
particular interface, then I'll perform the service." Let's look at a concrete
example. The sort method of the Arrays class promises to sort an array
of objects, but under one condition: The objects must belong to classes
that implement the Comparable interface.....
download lecture.
Java Inner class:
An inner class is a class that is defined inside another class. Why would
you want to do that? What is the importance of using it how to use it etc.....
download lecture.
Java Interface:
An interface is not a class but a set of
requirements for classes that want to conform to the interface.
download lecture..
Java OOPS -Encapsulation:
This video tutorial is intended to demonstrate encapsulation concept in
Java programming language.It explains what is encapsulation and what
is application of it in OOPS. Lecture also explains about how encapsulation
be achieved in Java programming language.
download lecture..
Java OOPS- Inheritance:
In this Video, you learn about inheritance, another fundamental concept
of object-oriented programming. The idea behind inheritance is that you
can create new classes that are built on existing classes. When you inherit
from an existing class, you reuse (or inherit) its methods
and fields and you add new methods and fields to adapt your new class
to new situations.This technique is essential in Java programming..
download lecture..
Java OOPS -Polymorphism :
This video tutorial is intended to demonstrate two major concept behind
polymerphism first about method overloading and second about method
overridind in java programming paradigm.
download lecture..
Java pakages:
This video lecture gives ides that how Java allows us to group classes
in a collection called a package. Packages are convenient for organizing
your work and for separating your work from code libraries provided
by others.The standard Java library is distributed over a number of
packages, including java.lang, java.util, java.net, and so on
. The standard Java packages are examples of hierarchical packages.
Just as you have nested subdirectories on your
hard disk, you can organize packages by using levels of nesting. All
standard Java packages are inside the java and javax package hierarchies......
download lecture..
Java String :
This video lecture gives ides that how Conceptually, Java strings are
sequences of Unicode characters. For example, the string "Java\u2122"
consists of the five Unicode characters J, a, v, a, and ™. Java does not
have a built-in string type. Instead, the standard Java library contains a
predefined class called, naturally
enough, String ....
download lecture..
String Methods and wrappers
download lecture..
Java Strings and Buffers
download lecture..
Java : Creating Threads:In the Java programming language, every
thread has a priority. By default, a thread inherits the priority of its parent
thread, that is, the thread that started it.
You can increase or decrease the priority of any thread with the
setPriority method....
download lecture..
Java -Theard :wait and notify:
download lecture..
Java Multithreading
Multithreading is extremely useful in practice. For example, a browser should
be able to simultaneously download multiple images. A web server needs to be
able to serve concurrent requests .....
download lecture..
Java : Multi Threading ExampleJava Threads : Inter Thread
Communication

download lecture..
Java Virtual Machine(JVM):
download lecture..
Java access modifier
download lecture..
Java Exeption handling:
In the Java programming language, an exception object is always an instance
of a class derived from Throwable. As you will soon see, you can create your
own exception classes if the ones built into Java do not suit your needs
download lecture..
Java AppletThe basic idea of how to use applets in a web page is
simple: the HTML page must tell the browser which applets to load and
then where to put each applet
on the web page. As you might expect, the tag needed to use an applet must tell
the browser the
download lecture..
Java Beans:

Programmers coming from a Windows background (specifically, Visual Basic or C#)
will immediately know why beans are so important. Programmers coming from
an environment in which the tradition is to "roll your own" for everything may not
understand at once.....
download lecture..
Java AWT:
The Java programming environment takes an approach somewhat between the
Visual Basic approach and the raw C approach in terms of power and, therefore,
in resulting complexity. Within the limits of the events that the AWT knows
about, you completely control how events are transmitted from the event sources
(such as buttons or scrollbars) to event listeners .....
download lecture..
Java Servlet:
A servlet is a Java programming language class that is used to extend the capabilities
of servers that host applications access via a request-response programmingmodel.
Although servlets can respond to any type of request, they are commonly used to
extend the applications hosted by web servers
download lecture..
Java server pages(JSP):
(JSP) technology allows you to easily create web content that has both static
and dynamic components. JSP technology makes available all the dynamic
capabilities of Java Servlet technology but provides a more natural approach to
creating static content ......
download lecture..
EJB:
ENTERPRISE beans are the J2EE components that implement Enterprise Java-
Beans (EJB) technology. Enterprise beans run in the EJB container, a runtime
environment within the Application Server . Although transparent to the application
developer .....
download lecture..
Java Database connectivity (JDBC):
Application programmers use the JDBC API, and database vendors and tool
providers use the JDBC Driver API.....
download lecture..
Java JMS:
THIS video lecture provides an introduction to the Java Message Service
(JMS) API,a Java API that allows applications to create, send, receive,
and read messages using reliable, asynchronous, loosely coupled
communication..............
download lecture..
Java Remote Method Invocation(RMI)
download lecture..
Java Networking:

Video begin this tutorial by reviewing basic networking concepts. Then move
on to writing Java programs that connect to network services then it shows
you
how to get information from a web server and how to send e-mail from a
Java program Video conclude this tutorial with a case study that combines
an applet and a
servlet to harvest information on the Internet....
download lecture..
Security Manager:
download lecture..

42 comments:

Dr. Milan Vachhani said...

These videos are very good.
You can find material related to java and advance java by following below link
http://milanvachhani.blogspot.com/2011/01/web-technology-application-development.html

Examinationtime said...

very good videos.
You can visit following site to test your knowledge of Java.
http://www.examinationtime.com/design/Home.aspx

arumugam said...


Thank you for the info. It sounds pretty user friendly. I guess I’ll pick one up for fun. thank u






Java Courses

Unknown said...

It was really a nice article and I was really impressed by reading this article. We are also giving all software Course Online Training. The Advanced Java Online Training is one of the leading Online Training institute in the world.

Unknown said...

This information which you provided is very much useful for us.It was very interesting and useful for JAVA online training.We also providing JAVA online training institute in USA.

Unknown said...

Nice article i was really impressed by seeing this article, it was very intresting and it is very useful for Java Training Learners.. We are Providing best cisco online training in worldwide.

Unknown said...
This comment has been removed by a blog administrator.
Unknown said...

Good info on this post. You have shared very valuable info here.

java training course

Unknown said...

Good info on this post. You have shared very valuable info here.

java training course

Unknown said...

can i download all the lectures from here collectively ...

Unknown said...

These videos are very good.
You can find material related to java and advance java by following below link
regards
Advanced java Online Training

Unknown said...

very good videos.
You can visit following site to test your knowledge of Java.
regards

Advanced java Offline training in UK

Unknown said...

This information which you provided is very much useful for us.It was very interesting and useful for JAVA online training.We also Advanced java online training in US

Unknown said...

Only Institute I recommend to any Java Beginners is "Harshitha Technology Solutions Pvt.Ltd". This is by far the best Java Training Institute for beginners, it's lean, thin, contains all a beginner wants to know and gets ball rolling quickly.
regards
java online training in USA

Unknown said...

Only Institute I recommend to any Java Beginners is "Harshitha Technology Solutions Pvt.Ltd". This is by far the best Java Training Institute for beginners, it's lean, thin, contains all a beginner wants to know and gets ball rolling quickly.
regards
java online training in USA

Unknown said...


This information which you provided is very much useful for us.It was very interesting and useful for JAVA online training. Regards
java online training in USA

Unknown said...

This information which you provided is very much useful for us.It was very interesting and useful for JAVA online training. Regards
java online training in USA

Unknown said...

Great & Useful Article

Online Java Training
Online Java Training From India

Unknown said...

Excel is a software application it provides an enormous number of established formulas and assistance in auditing and calculating your data. Analytics finishing school offers Excel's advanced features such as macros, lookup functions, array formulas, pivot tables, and data management Etc.more info visit www.analyticsfinishingschool.com/advanced excel.html

Meripadhai said...
This comment has been removed by the author.
Meripadhai said...

On the off chance that you find that you experience difficulty finding an occupation in programming because of an absence of experience, you should join JJava Training Institute In Delhi. So experience you can depend on to fill in as a student software engineer or take part in an assistant boat. Additionally, watch out for various occupations important to you. In spite of the fact that not qualifies, we will stay up with the latest to give rules and aptitudes that organizations are looking to the lobar business sector programming.

Karthika Shree said...
This comment has been removed by the author.
Sujitkumar said...

Nice blog. Really helpful information about Java …. Please keep update some more…………

Unknown said...

Thanks for sharing a Great & Useful Article.
Java Training Institute in Delhi | Java Course in Delhi

rmouniak said...


Thanks for sharing this good blog.This is very important and

imformative blog for Java .It's very interesting and useful for students
Core Java Online Training Hyderabad

CIITNOIDA - Best Oracle and linux training institute in noida delhi ncr said...

Best M Tech Colleges in Noida
Best M Tech Colleges in Delhi
Best M Tech Colleges in Gurgaon
Best M Tech Colleges in UP
Best M Tech Colleges in India
Best M Tech Colleges in Hyderabad
Best M Tech Colleges in Bangalore
Best M Tech Colleges in Chennai

Arvind Rawat said...
This comment has been removed by the author.
Unknown said...

Myntra offers on online shopping

Nykaa Promo Codes

Nykaa Deals and offers

Nykaa Coupons codes

Nykaa coupons offers promo codes

Nykaa offers on online shopping

Flipkart promo codes

Flipkart deals & coupons

flipkart coupon code

flipkart coupons offer promo code

Amazon promo code

amazon offers

amazon offers and deals

amazon coupon code

amazon deal of the day

cleartrip promo codes

cleartrip coupon code

cleartrip offers and deals

cleartrip deals

MMT promo Codes

prem said...

Video editing course in Noida
Video editing training institute in Noida- Webtrackker Technology is and IT Training institute providing the Video editing course in Noida, FCP, Final Cut Pro Training in Noida. For more call us- 8802820025.
Video editing course in Noida
Company Address:
Webtrackker Technology
C- 67, Sector- 63, Noida
Phone: 01204330760, 8802820025
Email: info@webtrackker.com
Website: http://webtrackker.com/Best-training-institute-Video-editing-FCP-course-in-Noida.php

nancy said...

Thank you so much for sharing this.

nancy said...

It's very nice blog. I'm so happy to gain some knowledge from here.

Unknown said...

thank you your post was knowlable to me
rpa training institute in noida
sas training institute in noida
hadoop training institute in noida
blokchain traninig institut noida


Unknown said...

If you finding Advanced Java training institute in Ahmedabad, than call us and book your Advanced java training in Ahmedabad with us and get 100% placement assistant.
Advanced Java training in Ahmedabad

nancy said...

This is a 2 good post. This post gives truly quality information.

pavankanna said...

I respect your undertakings since it passes on the message of what you are endeavoring to state. It's an outstanding strength to make even the person who doesn't consider the subject could organized to grasp the subject. Your web diaries are sensible and likewise excessively portrayed. I should need to examine a dependably expanding number of fascinating articles from your blog. Keep Sharing
Big Data Hadoop online training in Hyderabad
Online Hadoop training in Bangalore

aryan chaubey said...

Are you looking for Distance Learning Courses in India most of the students choose and apply, Talentedgenex there are many popular courses which attract the students for having distance education. For more info visit this site:- Distance learning courses in India ,

aryan chaubey said...

Talentedgenext Way of Online Learning, Distance Education, is an increasing number of becoming popular all over the world due as it has many benefits. For further details visit in this site:- Distance Education Website,

Unknown said...

Students who are willing to work and peruse education at the same time Distance education BBA/Business management and marketing management is the best option! For more info, visit-
Distance Education BBA,

shalini said...

good....nice
category/advocate-resume
category/agriculture-forestry-fishing
category/android-developer-resume
category/assistant-professor-resume
category/chartered-accountant-resume
category/database-resume
category/design-engineer-resume
category/developer-resume
category/engineer-resume
category/entrepreneur-and-financial-services-resume

Aruna said...

Thanks for spending your valuable time to Create such a Thoughtful Post...It's Really useful for Now and my feature reference...Keep Updating Ever
Java training in chennai | Java training in annanagar | Java training in omr | Java training in porur | Java training in tambaram | Java training in velachery

jenani said...

Really it is very useful for us..... the information that you have shared is really useful for everyone.Nice article i have ever read information's like this.it's really awesome the way you have delivered your ideas.i hope you will add more content in your blog
Java Training in Chennai

Java Training in Velachery

Java Training in Tambaram

Java Training in Porur

Java Training in OMR

Java Training in Annanagar



vcube said...

I appreciate you sharing this content.
Angular js course in kphb

Post a Comment

.


Email:
Ask questions or comment at the end of Lectures ::

Join Us On Orkut Join Us On Facebook Follow Us On Twitter