marq

Dr. Charles Simonyi is the Father of Modern Microsoft Excel                                           JavaScript was originally developed by Brendan Eich of Netscape under the name Mocha, later LiveScript, and finally renamed to JavaScript.                                           The word "Biology" is firstly used by Lamarck and Treviranus                                           Hippocrates (460-370 bc) is known as father of medicine.                                           Galene, 130-200 is known as father of Experimental Physology                                           Aristotle (384-322 BC) is known as Father of Zoology because he wrote the construction and behavior of different animals in his book "Historia animalium"                                           Theophrastus(370-285 BC) is known as father of Botany because he wrote about 500 different plants in his book "Historia Plantarum".                                           John Resig is known as Father of Jquery -                                          HTML is a markup language which is use to design web pages. It was invented in 1990 by Tim Berners-Lee.                                                                The Google was founded by Larry Page and Sergey Brin.                                                                Rasmus Lerdorf was the original creator of PHP. It was first released in 1995.                                                               Facebook was founded by Mark Zuckerberg                                                               Bjarne Stroustrup, creator of C++.                                                                Dennis Ritchie creator of C                                                                                                                              James Gosling, also known as the "Father of Java"                                          At 11.44%, Bihar is India's fastest growing state                                          Father of HTML -Tim Berners Lee                                          orkut was created by Orkut Büyükkökten, a Turkish software engineer                    Photoshop: It came about after Thomas Knoll, a PhD student at the University of Michigan created a program to display grayscale images on a monochrome monitor which at the time was called 'Display'.

Java link


Java is great programming language for the development of enterprise grade applications. This programming Language is evolved from a language named Oak. Oak was developed in the early nineties at Sun Micro-systems as a platform-independent language aimed at allowing entertainment appliances such as video game consoles and VCRs to communicate . Oak was first slated to appear in television set-top boxes designed to provide video-on-demand services. Oak was unsuccessful so in 1995 Sun changed the name to Java and modified the language to take advantage of the burgeoning World Wide Web.
Java is an object-oriented language, and this is very similar to C++. Java Programming Language is simplified to eliminate language features that cause common programming errors. Java source code files are compiled into a format called bytecode, which can then be executed by a Java interpreter


Objectives
At the end of the lesson, the student should be able to:
● Describe the features of Java technology such as the Java virtual machine (JVM), garbage collection (GC) and code security
● Describe the different phases of a Java program



Java Background: History
● Java
– was created in 1991
– by James Gosling et al. of Sun Microsystems.
– Initially called Oak, in honor of the tree outside Gosling's window, its name was changed to Java because there was already a language called Oak.



Feature of java           Java Features in Hindi       PROGRAMMING BASIC
Working And Platform 
Java Application Anatomy 
Difference between c++ and java

  1. Data type
  2. Variable
  3. Class              In Hindi                    Why necessary 
  4. Object Oriented Programming Language
  5. Java.util.Scanner.next() 

  6. Class declaration with a method that has a parameter
  7. Method
  8. Command line and object
  9. Object and method
  10. if condition 
  11. Switch Case
  12. LOOPING 
  13. Access Modifier
  14. Access Modifier
  15. Constructor
  16. This Keyword
  17. Packages
  18. static
  19. Final
  20. Abstract
  21. Synchronized Java Keyword                In hindi
  22. Java Native Keyword
  23. transient Java Keyword
  24. INTERFACE
  25. Innter Class
  26. Recursion
  27. Inheritance 
  28. Exception Handling
  29. Multi Thread In hindi
  30. MULTITASKING
  31. Vector
  32. Swing (API)
  33. Applet Vs Application
  34. Applet Introduction
  35. Applet Local and Remote
  36. Client and Server 
  37. Applet Architecture
  38. Interview Question
  39. Interview Question 1
  40. Interview  Question 1
  41. Interview Question 2
  42. Objective Question

Java Technology:
Programming Language
● As a programming language, Java can create all kinds of applications that you could create using any conventional programming language



Java Technology:
A Development Environment
● As a development environment, Java technology provides
you with a large suite of tools:
– A compiler (javac)
– An interpreter (java)
– A documentation generator (javadoc)
– A class file packaging tool
and so on...

CONSTRUCTOR


My first java program

i)
class rani
{
public static void main(String args[])
{
int a, b, add, sub, mul;
a=5;
b=3;
add=a+b;
sub=a-b;
mul=a*b;
System.out.println("add="+add);
System.out.println("sub="+sub);
System.out.println("mul="+mul);
}
}


No comments:

Post a Comment