Topics
Revision of Class IX Syllabus
Introduction to Object Oriented Programming Concepts
- Introduction of Object-oriented Programming
- Procedure Oriented Language
- Object Oriented Language
- Principles of Object Oriented Programming (OOP)
Elementary Concept of Objects and Classes
- Introduction of Elementary Concept of Objects and Classes
- Creating an Object of a Class
- Real World Vs Software Class and Objects
- Features of a Class
Values and Data Types
- Introduction of Values and Data Types
- Character Sets in Java
- Encoding of Characters
- Escape Sequences
- Tokens
- Data Types
- Type Conversion
Operators in Java
- Introduction of Operators in Java
- Expression and Statement
- Types of Operators
Introduction to Java
- Introduction to Java
- Java Compiler and Interpreter
- Basic Elements of Java Programming
- Output Statement in Java Programming
- Java Programming using BlueJ
- Java Program on BlueJ Platform
Input in Java
- Introduction of Input in Java
- Using Function Argument
- Using Stream Class
- Using Scanner Class
- Using Command Line Argument
- Types of Errors
- Comment Statements in Java Programming
Mathematical Library Methods
- Introduction of Mathematical Library Methods
- Methods of Math Class
- Trigonometrical Functions
Conditional Statements in Java
- Introduction of Conditional Statements in Java
- Flow of Control
- Normal Flow of Control
- Conditional Flow of Control
Iterative Constructs in Java
- Introduction of Iterative Constructs in Java
- Entry Controlled Loop
- Exit Controlled Loop
Nested Loop
- Introduction of Nested Loop
- Types of Nested Loops
Library Classes
Arrays (Single Dimensional and Double Dimensional)
String Handling
User - Defined Method
Class as the Basis of All Computation
Constructors
Encapsulation
String Buffer Functions:
StringBuffer is another type of class with some added functionality to handle strings. You can declare an object of StringBuffer type. This creates reasonable space in the memory called Buffer. The following statements are used to create String Buffer objects :
- StringBuffer m = new StringBuffer(“Computer” )
- StringBuffer m = new StringBuffer(25);
The ‘b’ statement allocates memory for a string of upto 25 character.
1. append( ):
This function is used to add a string at the end of another string.
Syntax: <StringBuffer variablel>.append<StringBuffer variable2>;
2. setCharAt(Position or Index, Character)
This function is used to replace a character with another character at a specified index of the string.
Syntax: <String Buffer variable>. set<CharAt(Index, Character)>
3. insert(int Position or Index, String) & delete(int lndexl, int lndex2)
Insert adds string at the given position. Delete will delete the string from index 1 to index 2.
4. setLength(int value)
If a StringBuffer is too short to store input, use the `setLength()` function to increase its length as needed.
Syntax: <StringBuffer variable>.setLength<(Number of characters)>;
5. String reverse( )
This is a powerful function used to reverse the characters of a given string. Syntax: <StringBuffer variable>.reverse( );
Related QuestionsVIEW ALL [16]
Define a class named movieMagic with the following description:
Instance variables/data members:
int year — to store the year of release of a movie.
String title — to-store the title of the movie
float rating — to store the popularity rating of the movie
(minimum rating=0.0 and maximum rating=5.0)
Member methods:
(i) movieMagic() Default constructor to initialize numeric data members to 0 and String data member to “ ”.
(ii) void accept() To input and store year, title and rating.
(iii) void display() To display the title of a movie and a message based on the rating as per the table below.
Rating | Message to be displayed |
0.0 to 2.0 | Flop |
2.1 to 3.4 | Semi-hit |
3.5 to 4.5 | Hit |
4.6 to 5.0 | Super Hit |
Write a main method to create an object of the class and call the above member methods.