Computer Science Video Lectures MIT,Harvard,Stanford ,GATE ,IIT: Core Java
BEST VIEW AVAILABLE ONLY IN MOZILLA,CHROME
Showing posts with label Core Java. Show all posts
Showing posts with label Core Java. Show all posts

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..

.


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

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