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 Functions:
1. int length()
As the name suggests, return the length of a string.
Syntax: <int variable> = <String.length( )>;
2. char charAt(int index) & int indexOf( char ch)
charAt() function returns a character from the given index (position number) of the string. Syntax: <char variable> = <String.charAt(int index)>;. indexOf() function is opposite to the charAt() function. It returns the index (i.e., the position number) of first occurrence of a character in the string. Syntax: <int variable> = <String.indexOf(character)>;
3. int indexOf(char ch, int start_index)
This function allows the user to search for the availability of a character in the string starting from the given index. Syntax: <int variable> = <String.indexOf(char ch, int start_index)>;
4. int lastlndexOf(char ch)
This function is used to find the index of the last occurrence of a character in the String.
Syntax: <int variable>=<String lastlndexOf(character)>;
5. String substring(int Start_index) & String substring(int start_index, int last_index)
The substring(int start_index) function is used to extract a set of characters simultaneously from a given index up to the end of the string. substring(int start_index, int last_index) is another modification of substring function . It will return a set of characters simultaneously from start index upto the last index of the string (excluding the character present at the last index).
6. String toLowerCase() & String toUpperCase()
toLowerCase() function converts a given string into lowercase characters. Syntax: <String variable l > = <String.toLowerCase( )>;
toUpperCase() function is opposite to the toLowerCase() function. It is used to convert a string into uppercase characters.
7. String replace(char old_char, char new_char)
This function is used to replace a character by another character or to replace a string by another string at all its occurrences in the given string.
Syntax: <String variable 1> = <string.toUpperCase( )>;
8. String replace(old sequence of characters, new sequence of characters)
The replace() function is also used to replace a sequence of characters by another sequence of characters at all its occurences in the string.
9. String concat(String s)
The concat() function is used to concatenate Uoin) two strings together. Syntax: <String variable> = <string1.concat(string2)>;
Here string 2 will be joined at the end of string 1.
10. boolean equals(String s) & boolean equalslgnoreCase(String s)
equals(string s) is used to compare two strings and check whether they are same or not. It treats uppercase and lowercase characters differently. equalsignoreCase(String s) does the same work but ignores the case.
Syntax: <boolean variable> = <Stringl .equals(String2)>;
11. int compareTo(String s) & int compareTolgnoreCase(String s)
comapreTo(String s) It not only checks the equality of two strings but also checks whether a string is bigger or smaller than the other. It will return 0 if both the strings are same; a negative value, if first string is smaller and a positive value, if the first string is bigger. compareTolgnoreCase(String s) does the same work ignoring the upper and lower case.
Syntax: <int variable> = <String 1.compareToignoreCase(String2)>;
12. String trim()
This function is used to remove leading and trailing blanks from a string. The other blanks, which are available in between the words will remain unchanged.
Syntax: <String variable> = <String.trim( )>;
13. boolean endsWith(String s) & boolean startsWith(String s)
endsWith(String s)function is used to check whether a given string has a specified suffix or not. startsWith() returns boolean value true if the given string is a prefix to a given string.
Syntax: <boolean variable>=<String 1.endswith(String2)>;
14. primitive type valueOf(String s)
Used to convert a string into primitive datatype.
Syntax: <Primitive type> <Variable>= <Wrapper class>.<valueOf>(String argument);
15. String valueOf(primitive type)
Note: It is used to convert a primitive value into string.
Syntax: String <variable> = String.valueOf(primitive type)
Related QuestionsVIEW ALL [16]
Define a class to accept a String and print the number of digits, alphabets and special characters in the string.
Example: | S = "KAPILDEV@83" |
Output: | Number of digits - 2 ' Number of Alphabets - 8 Number of Special characters - 1 |