Home UP BOARD Question Papers NCERT Solutions Sample Papers CBSE Notes NCERT Books CBSE Syllabus

Java Ide Programming – I , Ii & Iii Class 11 Notes For Informatics Practices Chapter 6

c programming, c programming language, programming in c, c language programming, computer programming in c, c programming certification , java ide programming – i , ii & iii 11 notes, class 11 informatics practices notes, java ide programming – i , ii & iii class 11, java ide programming – i , ii & iii class 11 notes, class 11 java ide programming – i , ii & iii, note informatics practices, informatics practices notes, java ide programming – i , ii & iii, class 11 cinformatics practices chapter 6 notes, 11th standard informatics practices notes, 11th std informatics practices notes, class 11 informatics practices notes chapter 6, java ide programming – i , ii & iii chapter class 11 notes

INTRODUCTION TO PROGRAMMING

PROGRAMMING FUNDAMENTALS

Java programming language was originally developed by Sun Microsystems which was initiated by James Gosling and released in 1995 as core component of Sun Microsystems’ Java platform (Java 1.0 [J2SE]).As of December 2008, the latest release of the Java Standard Edition is 6 (J2SE). With the advancement of Java and its widespread popularity, multiple configurations were built to suite various types of platforms. Ex: J2EE for Enterprise Applications, J2ME for Mobile Applications. Sun Microsystems has renamed the new J2 versions as Java SE, Java EE and Java ME respectively. Java is guaranteed to be Write Once, Run Anywhere. Java is:

· Object Oriented: In Java, everything is an Object. Java can be easily extended since it is based on the Object model.
· Platform independent: Unlike many other programming languages including C and C++, when Java is compiled, it is not compiled into platform specific machine, rather into platform independent byte code. This byte code is distributed over the web and interpreted by virtual Machine (JVM) on whichever platform it is being run.
· Simple: Java is designed to be easy to learn. If you understand the basic concept of OOP Java would be easy to master.
·Secure: With Java’s secure feature it enables to develop virus-free, tamper-free systems. Authentication techniques are based on public-key encryption.
· Architectural-neutral :Java compiler generates an architecture-neutral object file format which makes the compiled code to be executable on many processors, with the presence of Java runtime system.
· Portable: Being architectural-neutral and having no implementation dependent aspects of the specification makes Java portable. Compiler in Java is written in ANSI C with a clean portability boundary which is a POSIX subset.
· Robust: Java makes an effort to eliminate error prone situations by emphasizing mainly on compile time error checking and runtime checking.
· Multithreaded: With Java’s multithreaded feature it is possible to write programs that can do many tasks simultaneously. This design feature allows developers to construct smoothly running interactive applications.
· Interpreted: Java byte code is translated on the fly to native machine instructions and is not stored anywhere. The development process is more rapid and analytical since the linking is an incremental and light weight process.
· High Performance: With the use of Just-In-Time compilers, Java enables high performance.
· Distributed: Java is designed for the distributed environment of the internet.
· Dynamic: Java is considered to be more dynamic than C or C++ since it is designed to adapt to an evolving environment. Java programs can carry extensive amount of run-time information that can be used to verify and resolve accesses to objects on run-time. 

Programming Fundamentals:-

Token:- The smallest individual unit in a program is known as Token. Java has the following types of tokens:-Keyword ,Identifier, Literals, Punctuators and operators.
Keywords:-The following list shows the reserved words in Java. These reserved words may not
be used as constant or variable or any other identifier names.

reserved  Keywords words in Java

Literals:-

A literal is a source code representation of a fixed value. They are represented directly in the code without any computation. Literals can be assigned to any primitive type variable. For example:

Literals:- A literal is a source code representation of a fixed value. They are represented directly

byte, int, long, and short can be expressed in decimal(base 10), hexadecimal(base 16) or octal(base 8) number systems as well. Prefix 0 is used to indicate octal and prefix 0x indicates hexadecimal when using these number systems for literals. For example: 

byte, int, long, and short can be expressed in decimal(base 10), hexadecimal(base 16) or

String literals in Java are specified like they are in most other languages by enclosing a sequence of characters between a pair of double quotes. Examples of string literals are: 

String literals in Java are specified like they are in most other languages by enclosing a sequence

String and char types of literals can contain any Unicode characters. For example:

 String and char types of literals can contain any Unicode characters. For example:

Identifiers:-

All Java components require names. Names used for classes, variables and methods are called identifiers. In Java, there are several points to remember about identifiers. They are as follows:

· All identifiers should begin with a letter (A to Z or a to z), currency character ($) or an underscore (_).
· After the first character identifiers can have any combination of characters.
· A key word cannot be used as an identifier.
· Most importantly identifiers are case sensitive.
· Examples of legal identifiers: age, $ salary, _value, __1_value
· Examples of illegal identifiers: 123abc, -salary

Java Operators

Java provides a rich set of operators to manipulate variables. We can divide all the Java operators into the following groups:
· Arithmetic Operators · Relational Operators
· Bitwise Operators
· Logical Operators
· Assignment Operators
· Misc Operators

The Arithmetic Operators:

Arithmetic operators are used in mathematical expressions in the same way that they are used in algebra. The following table lists the arithmetic operators: Assume integer variable A holds 10 and variable B holds 20, then: 

The Arithmetic Operators

The Relational Operators:

There are following relational operators supported by Java language Assume variable A holds 10 and variable B holds 20, then:

Relational Operators:

The Logical Operators:

The following table lists the logical operators: Assume Boolean variables A holds true and variable B holds false, then:

logical oprater

The Assignment Operators:

There are following assignment operators supported by Java language:

assignment operators
The Assignment Operators

Misc Operators

There are few other operators supported by Java Language.
Conditional Operator ( ? : ) :- Conditional operator is also known as the ternary operator. This operator consists of three operands and is used to evaluate Boolean expressions. The goal of the operator is to decide which value should be assigned to the variable. The operator is written as: 

micro ooperators

Following is the example:

   Conditional Operator

This would produce the following result:

operator consists of three operands and is used

 

Important Links

NCERT CBSE Notes Class 6 - 12 Download pdf

Ncert Solution for class 6 to 12 download in pdf

CBSE Model test papars Download in pdf

NCERT Books for Class 1- 12 Hindi & English Medium

Mathematics Biology Psychology
Chemistry English Economics
Sociology Hindi Business Studies
Geography Science Political Science
Statistics Physics Accountancy

CBSE Syllabus Class 9 to 12 Year 2021-22

Last year CBSE Question paper

Important Links

Follow Us On

Face book page ncerthelp twitter page youtube page linkdin page

Solved Last Year Question Paper

If You have any problem/query related to above page please send us your Query to ncerthelp@gmail.com with code Serial No1412/1096. Thanks

Please Share this webpage on facebook, whatsapp, linkdin and twitter.

Facebook Twitter whatsapp Linkdin

Copyright @ ncerthelp.com A free educational website for CBSE, ICSE and UP board.