ICSE computer applications sample paper
Java ICSE computer applications
ICSE computer applications sample paper
ICSE computer applications sample paper
ICSE computer applications 2021 question paper with answer key
ICSE MCQ Computer sample paper Free download
ICSE MCQ sample paper 9
ICSE MCQ sample paper 8
ICSE MCQ sample paper 7
ICSE sample paper 6
ICSE java Constructor MCQ
ICSE sample paper 5
ICSE sample paper 4(MCQ)
ICSE solved specimen paper computer application
ICSE practice paper 3(MCQ)
ICSE class X practice paper
ICSE MCQ sample paper 1
ICSE MCQ (fill in the blanks in a java program)
ICSE MCQ (Functions)
ICSE MCQ
ICSE MCQ
ICSE MCQ part 6
Practise paper for class IX
MCQ for ICSE computer application part 5
ICSE MCQ Specimen paper semester I computer application
MCQ for ICSE computer application part 4
https://wordpress-343193-1101484.cloudwaysapps.com/mcq-for-icse-computer-part-2
MCQ for ICSE computer application part 3
MCQ for ICSE computer application java
Series programs 3
https://wordpress-343193-1101484.cloudwaysapps.com/pattern-programs-in-java-4
Series programs part 2
Write a program to print the following series.
ICSE class IX computer practice test 7
Q A. Fill in the blanks
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
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
ICSE practical sample paper
Design a menu driven program, that accepts an integer and displays the following menu :
Java Programs for beginners
Write a program to, compute the railway fare depending on the criteria as given
ICSE practical sample paper 7
Input a number to check for palindrome number or Armstrong number. Design a program to create a class special having two functions, one as palin(int a) another as Armstrong(int b)
ICSE sample paper class 9
Section A (40 marks) compulsory questions
ICSE sample paper 2021 computer applications
ICSE sample paper 2021 Computer applications
This paper is divided into two sections. You are to answer all the questions from section A, and any four from section B.
ICSE practice paper for class 9
ICSE sample paper 2021 Free
Free ICSE sample paper 2021
ICSE sample paper 2021 for class X JAVA
Free ICSE JAVA sample paper for class IX
ICSE sample paper 2021: Free download
Free ICSE sample paper 2021
A beautiful ICSE class X practice Test
Attempt any two programs [2X10=20]
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.
A complete program: Delete an element from an array
For String programs clickhttps://wordpress-343193-1101484.cloudwaysapps.com/string-programs-part-5
A Brilliant Program: Insert an element into an array
For String programs clickhttps://wordpress-343193-1101484.cloudwaysapps.com/count-no-of-palindrome-words-in-a-sentence
An Awesome program: Common elements in two arrays
import java.io.*; class common { public static void main()throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter the size of the first array"); int n=Integer.parseInt(br.readLine()); int Arr1[]=new int[n]; System.out.println("Ente
A priceless Frequency of element in an array program
For more programshttps://wordpress-343193-1101484.cloudwaysapps.com/count-words-start-and-end-with-a-vowel
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
A beautiful Pythagorean Triple Program
For Java tutorials click the linkhttps://wordpress-343193-1101484.cloudwaysapps.com/wrapper-classes-in-java
A delightful Automorphic number
For other java programs clickhttps://wordpress-343193-1101484.cloudwaysapps.com/patterns-part-4strings
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
An Efficient Kaprekar Number
For string programs click the given link https://wordpress-343193-1101484.cloudwaysapps.com/string-programs-part-5
ICSE sample paper class 9 Computer: Top questions for free
Section A (20 marks)
ICSE sample paper class 9 Computer: Top questions for free
ICSE sample paper class 9
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
ICSE sample paper class 9 Computer: Top questions for free
ICSE sample paper class 9
ICSE class ix computer practice test 4
1 1 2 1 2 3 1 2 3 4 1 2 3 4 5
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”);
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
Practice Test 1 class IX
An Effortless program Special Number
Write a program to accept a number and print whether it is a special number or not.
A simple program to use variable & Datatype
https://wordpress-343193-1101484.cloudwaysapps.com/data-type
Factorial of a number :Unleashed
For factorial of a number recursive program click the given link.
Fibonacci Series Program
For other basic java program click the given link. https://wordpress-343193-1101484.cloudwaysapps.com/solved-programs-class-9-beginner
Data input using scanner class
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.
Interesting Data input using Buffered Reader
A deadly Duck Number
watch java videos here https://www.youtube.com/user/trushnatej
First project in Bluej
Important Definitions in java
Program: A set of instructions given to the computer for performing a particular task is called a program.
An effortless Bubble Sort & Binary Search
Check other java programs https://wordpress-343193-1101484.cloudwaysapps.com/count-no-of-palindrome-words-in-a-sentence(opens in a new tab)
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
Conditional Constructs in JAVA
if condition, if...else, if...elseif, if...elseif ladder, switch ...case
String Programs part 5
import java.io.*; class WordPotential { public static void main()throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter a sentence"); String str= br.readLine(); str=str+" "; str=str.toUppe
String programs part 4
Write a program to input a sentence and print the frequency of the double occurrence characters.
Astonishing Java String Programs part-III
import java.io.*; class Extract { public static void main()throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter a word"); String wrd= br.readLine(); int len=wrd.length(); for (int i=0;i<
An Exclusive Data Input methods in JAVA
Hard Coded Values:- The values are stored in a variable and used later.
Sudoku in java
Write a program to check whether a given Sudoku solution is correct or not .
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.
Two strings having same sub string Program
string prrogram to find the substring from strings from the two given strings. if two consecutive letters are same they'll displayed. and the count will print.
Twin Prime
Write a program to accept two numbers from the user and print whether they are twin prime number or not. A twin prime is a pair of two numbers that are both prime and their difference is two.
Frequency of letters
Write a program to accept a string and print the frequency of letters in the given format.
ICSE sample paper class 9 Computer: Top questions for free
ICSE sample paper class 9
Niven and perfect number Solved program
Input a number to check for compositenumber or Niven number. Design a program to create a class perfect having two functions, one as composite(int a) another as Niven(int b)[A composite number has more than two factors]
A gripping String Bubble sort array program in java
import java.util.*; class StringLinearSearch { public static void main() { Scanner sc=new Scanner(System.in); System.out.println("Enter the size of array between 5 to 20"); int n=sc.nextInt(); String list[]=new String[n]; for(int i=0;i<n;i++) {
Disarium number Solved program
(Disarium number & reverse a number)
ICSE computer practical sample paper 6
Example 1:
Loss percentage calculation program
Write a program to input cost price and selling price and calculate the loss percentage and print.
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.
Calculate the courier charges
Write a program to accept the weight of the parcel and calculate the bill according the given price slabs.
ICSE computer practical sample paper 5
Sample Input (1) : London, Sample Output (1) : ONDONLAY
Binary Search
Write a program to search an element from the array using binary search technique.
ICSE computer practical sample paper 4
A perfect numbers sum of factors is equal to the number. ]
ICSE practical sample paper 3
ICSE sample paper computer application
ICSE sample paper 11: Top questions for free
This paper is divided into two sections. You are to answer all the questions from section A, and any four from section B. Section A(40 marks)Q 1 . [5X2=10]
Electricity Bill program
Write a program to input the number of units consumed. Calculate the Electricity bill according the given rates.
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
Swapping numbers program
Write a program to swap two numbers using a temporary variable.
Pattern programs in java part 4(Strings): learning made easy
A
ICSE computer practical sample paper 2
Example 1:
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
Pattern programs in java part 3: Learning made easy
*
Pattern programs in java part 2 : Learning made easy
11111
Pattern programs in java part 1: Simple loop programs
111
ICSE sample paper 10: Top questions for free
ICSE sample paper This paper is divided into two sections. You are to answer all the questions from section A, and any four from section B. Section A (40 marks) Attempt all questions
Basic Important Number programs for ICSE part-5
To learn more java programshttps://wordpress-343193-1101484.cloudwaysapps.com/string-programs-part-5
ICSE computer practical sample paper 1
Free ICSE COMPUTER APPLICATION SAMPLE PAPER 9
Std: X Subject: Computer Max Marks: 100 Section A (40 marks)Q 1. (5x2=10)
ICSE COMPUTER SAMPLE PAPER 9: Top questions for free
This paper is divided into two sections. You are to answer all the questions from section A, and any three from section B.
ICSE sample paper 8 computer applications: Top questions for free
Icse sample paper This paper is divided into two sections. You are to answer all the questions from section A, and any four from section B.Section A (40 marks)Q 1.a. Name any four tokens of Java.b. Give the difference between actual parameter and formal parameter.c. W
A masterful ICSE computer application tutorial part-2 (Tokens in java)
for more java programshttps://wordpress-343193-1101484.cloudwaysapps.com/array
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.
An inspiring Array Program
To learn more array programshttps://wordpress-343193-1101484.cloudwaysapps.com/sum-of-boundary-elements-of-a-matrix
Beautiful String programs in java part-II
For more programs https://wordpress-343193-1101484.cloudwaysapps.com/https-java4school-com-transpose_of_matrix
Number Programs in java part-4
for more java programs https://wordpress-343193-1101484.cloudwaysapps.com/double-dimensional-arraymatrix-programs-part-i
Intriguing String Programs part-1
for more string programs https://wordpress-343193-1101484.cloudwaysapps.com/count-words-start-and-end-with-a-vowel
Sorting Techniques : Thrilling Array Programs Part1
Bubble sort:- import java.io.*;class Bubblesort{public static void main()throws IOException{BufferedReader br=new BufferedReader(new InputStreamReader(System.in));System.out.println("enter the length of the array");int len=Integer.parseInt(br.readLine());int arr[]=new int[len];int temp=0;for(int i=0
Masterful Important Number programs ICSE part-3
For more programs https://wordpress-343193-1101484.cloudwaysapps.com/string-programs-part-iiiicse-computer-applications
Number Programs in java ICSE Part-2
import java.io.*;class palindrome{public static void main()throws IOException{BufferedReader br=new BufferedReader (new InputStreamReader(System.in));System.out.println("Give a number");int num=Integer.parseInt(br.readLine());int rem;int n=num;int rev=0;do{rem=num%10;rev=rev*10+rem;num=num/10;}while
Unleashed: Important Number Programs for ICSE Part-1
for other number programs click the link https://wordpress-343193-1101484.cloudwaysapps.com/duck-number
ICSE sample paper 7 computer application : Top questions for free
ICSE Practice test 6 class X : Top Questions for free
ICSE Practice test
ICSE class IX computer practice Test 5 : Top Questions for free
Section A
ICSE Practice test 4 class X : Top Questions
Question 1 1. Explain the term type casting with its types. [2]2. Define identifier with example; mention 2 naming rules for identifier?[2]3. What is default constructor, and parameterized constructor? [2]4. Differentiate between constructor and method [2]5. Identify (class name, object name, const
ICSE Practice test 3 class X : Top Questions
Sample Input: 15390Sample output: Sum of digits=18 Define a class student having the following description
ICSE Practice test 2 class X : Top Questions
Question 2. [15]Define a class Taximeter having the following description:Data members/instance variablesint taxino - to store taxi numberString name - to store passenger's nameint km - to store number of kilometres travelledMember functions:Taximeter()- default constructor to assign default values
ICSE Practice test 1 class X : Top Questions
Attempt any two programs out of three1. write a menu driven program which accepts (*,/,+,-) and does mathematical operation on the operands entered by the user[use switch case] [15]
ICSE sample paper computer application : An easy way to revise
This paper is divided into two sections. You are to answer all the questions from section A, and any four from section B.
An Inspirational ICSE computer application sample paper-5
ICSE sample paper computer Application: Important questions
ICSE sample paper
A joyful ICSE computer Application sample paper-3
SUB: COMPUTER FOR CLASS X
A Resourceful ICSE computer Application sample paper-2
This paper is divided into two sections. You are to answer all the questions from section A, and any four from section B.