ICSE Class 950 articles

Robotics

Learn how robots are built and controlled, from basic parts to simple circuits and beginner-friendly projects. All ICSE Class 9 articles live here—filter by robotics or other subjects as you explore.

Subject
Type
Showing 50 of 50 articles
Practice Tests
icse

Practise paper for class IX

Trushna Tejwani9 Sept5 min
Solved Programs
icse

Series programs part 2

Write a program to print the following series.

Trushna Tejwani19 Jul5 min
Practice Tests
icse

ICSE class IX computer practice test 7

Q A. Fill in the blanks

Trushna Tejwani17 Jul5 min
Solved Programs
icse

Programs for beginners class IX

Write a menu driven program using switch case statement that outputs the results of the following evaluation based on the number entered by the user

Trushna Tejwani3 May5 min
Solved Programs
icse

Java programs for beginners

A computer salesman gets commission on the following basis:Sales Commission RateRs. 0 - 20,000 3%Rs. 20,000 - 50,000 12%Rs. 50,001 and more 31%Write a program to accept the sales as input, calculate and print his

Trushna Tejwani29 Apr5 min
Solved Programs
icse

Java Programs for beginners

Write a program to, compute the railway fare depending on the criteria as given

Trushna Tejwani19 Apr5 min
Sample Papers
icse

ICSE sample paper class 9

Section A (40 marks) compulsory questions

Trushna Tejwani8 Apr5 min
Practice Tests
icse

ICSE practice paper for class 9

Trushna Tejwani25 Feb5 min
Sample Papers
icse

Free ICSE JAVA sample paper for class IX

Trushna Tejwani11 Jan5 min
Practice Tests
icse

ICSE class ix computer practice test 6

This practice paper contains the basic concepts of java like features of java, OOPs concepts, Java compilation, object and class.

Trushna Tejwani3 Dec5 min
Tutorials
icse

Object Oriented Programming: Unleashed

Trushna Tejwani23 Jul5 min
Solved Programs
icse

Operators in JAVA: Learn in an easy way

class operators { public static void main() { int a=10; int b=2; int sum=a+b; int subtract=a-b; int product=a*b; int divide=a/b; int modulus=a%b; System.out.println("The sum is "+sum); System.out.println("The minus of a & b is "+subtract); System.out.printl

Trushna Tejwani13 Jun5 min
Solved Programs
icse

A beautiful Pythagorean Triple Program

For Java tutorials click the linkhttps://wordpress-343193-1101484.cloudwaysapps.com/wrapper-classes-in-java

Trushna Tejwani9 Jun5 min
Solved Programs
icse

A delightful Automorphic number

For other java programs clickhttps://wordpress-343193-1101484.cloudwaysapps.com/patterns-part-4strings

Trushna Tejwani8 Jun5 min
Solved Programs
icse

A dazzling Armstrong Number Program

import java.io.*; public class ArmstrongNumber //number = the sum of the cubes of the digits e.g., 153 { public static void main() throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter a number"); int num=Integer.parseI

Trushna Tejwani6 Jun5 min
Solved Programs
icse

An Efficient Kaprekar Number

For string programs click the given link https://wordpress-343193-1101484.cloudwaysapps.com/string-programs-part-5

Trushna Tejwani5 Jun5 min
Sample Papers
icse

ICSE sample paper class 9 Computer: Top questions for free

Section A (20 marks)

Trushna Tejwani4 Jun5 min
Sample Papers
icse

ICSE sample paper class 9 Computer: Top questions for free

ICSE sample paper class 9

Trushna Tejwani3 Jun5 min
Solved Programs
icse

An easy Pronic Number Program

import java.io.*; class pronic //the product of consecutive integers e.g., 72, 110 { public static void main()throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out .println("Enter a number"); int num=Integer.parseInt(br.readLine()); i

Trushna Tejwani2 Jun5 min
Sample Papers
icse

ICSE sample paper class 9 Computer: Top questions for free

ICSE sample paper class 9

Trushna Tejwani1 Jun5 min
Practice Tests
icse

ICSE class ix computer practice test 4

1 1 2 1 2 3 1 2 3 4 1 2 3 4 5

Trushna Tejwani31 May5 min
Practice Tests
icse

ICSE class ix computer practice test 3

1.Convert the following code from if….else to switch …case if(val==50) System.out.println(“Fifty”); else if(val==20) System.out.println(“twenty”); else System.out.println(“Enter a valid number”);

Trushna Tejwani31 May5 min
Practice Tests
icse

ICSE class IX computer practice Test 2: Top Questions for free

Question 1 A cloth showroom has announced the following festival discounts on the purchase of items, based on the total cost of items purchased

Trushna Tejwani31 May5 min
Practice Tests
icse

Practice Test 1 class IX

Trushna Tejwani31 May5 min
Solved Programs
icse

A simple program to use variable & Datatype

https://wordpress-343193-1101484.cloudwaysapps.com/data-type

Trushna Tejwani29 May5 min
Solved Programs
icse

Factorial of a number :Unleashed

For factorial of a number recursive program click the given link.

Trushna Tejwani28 May5 min
Tutorials
icse

Data input using scanner class

Trushna Tejwani23 May5 min
Tutorials
icse

Basic Java Definitions part 2

Compiler :A software which converts high level language code in to machine level language(binary code). It complies the instructions at once and lists all the errors.

Trushna Tejwani23 May5 min
Tutorials
icse

Interesting Data input using Buffered Reader

Trushna Tejwani17 May5 min
Tutorials
icse

Data input in java part 1

Trushna Tejwani15 May5 min
Tutorials
icse

First project in Bluej

Trushna Tejwani14 May5 min
Tutorials
icse

BlueJ Installation

Trushna Tejwani13 May5 min
Tutorials
icse

Important Definitions in java

Program: A set of instructions given to the computer for performing a particular task is called a program.

Trushna Tejwani13 May5 min
Tutorials
icse

A Sneak peek into : Basics of Programming

Basics of programming : Programs are the block of codes or set of instructions that is given to the computer to perform a particular task. Programming is the process of writing a computer program. Programming language is a set of commands and syntax used to create a computer program. A Programmer

Trushna Tejwani3 May5 min
Tutorials
icse

Conditional Constructs in JAVA

if condition, if...else, if...elseif, if...elseif ladder, switch ...case

Trushna Tejwani21 Apr5 min
Tutorials
icse

An Exclusive Data Input methods in JAVA

Hard Coded Values:- The values are stored in a variable and used later.

Trushna Tejwani13 Apr5 min
Tutorials
icse

Unbelievable : Loops in java (for, while, do...while)

There are three loops in java. For loop:- The syntax of the for loop is given below for(initialization; condition ; iteration) { Java commands } Here initialization is to initialize a counter variable.it can be any numeric or character data type depending on the requirement of the program.

Trushna Tejwani7 Apr5 min
Sample Papers
icse

ICSE sample paper class 9 Computer: Top questions for free

ICSE sample paper class 9

Trushna Tejwani8 Feb5 min
Solved Programs
icse

Loss percentage calculation program

Write a program to input cost price and selling price and calculate the loss percentage and print.

Trushna Tejwani27 Jan5 min
Solved Programs
icse

Calculate the Net bill program

Write a program to accept the total cost from the user. Calculate the discount and Net bill according the given rates. Print the details of the user.

Trushna Tejwani26 Jan5 min
Solved Programs
icse

Calculate the courier charges

Write a program to accept the weight of the parcel and calculate the bill according the given price slabs.

Trushna Tejwani25 Jan5 min
Solved Programs
icse

Electricity Bill program

Write a program to input the number of units consumed. Calculate the Electricity bill according the given rates.

Trushna Tejwani19 Jan5 min
Solved Programs
icse

Series part 1

1. import java.io.*; class series1 { public static void main() { double num=0.5; System.out.print(num); for(int i=0;i<7;i++) { num+=5*Math.pow(10,i); System.out.print(", "+num); } } } o/p 0.5, 5.5, 55.5, 555.5, 5555.5, 55555.5, 555555.5, 5555555.5

Trushna Tejwani18 Jan5 min
Solved Programs
icse

Swapping numbers program

Write a program to swap two numbers using a temporary variable.

Trushna Tejwani17 Jan5 min
Solved Programs
icse

Solved Programs (class 9-Beginner Level)

import java.io.*; class salary { public static void main() throws IOException { BufferedReaderbr=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter your salary"); double basic_salary=Double.parseDouble(br.readLine()); String nam

Trushna Tejwani8 Jan5 min
Solved Programs
icse

Pattern programs in java part 3: Learning made easy

*

Trushna Tejwani5 Jan5 min
Solved Programs
icse

Pattern programs in java part 2 : Learning made easy

11111

Trushna Tejwani3 Jan5 min
Tutorials
icse

A masterful ICSE computer application tutorial part-2 (Tokens in java)

for more java programshttps://wordpress-343193-1101484.cloudwaysapps.com/array

Trushna Tejwani26 Jun5 min
Tutorials
icse

OOPS concept : ICSE Computer Application Tutorial part-1 Learning made easy

JAVA is an object oriented language. It has four main object oriented concepts. They are as follows.

Trushna Tejwani24 May5 min
Practice Tests
icse

ICSE class IX computer practice Test 5 : Top Questions for free

Section A

Trushna Tejwani25 Sept5 min