ISC class XI sample paper 2021
Answer all questions in Part I (compulsory) and six questions from Part-II, choosing two questions from Section-A, two from Section-B and two from Section-C.All working, including rough work, should be done on the same sheet as the rest of the answer.The intended marks for questions or parts of ques
ISC practice test class XI: Best questions
ISC practice test for class XI: Best questions
Circular Prime number : An easy ISC practical 2016
A number is said to be prime if it has only two factors I and itself.Example:131311113Hence, 131 is a circular prime.Test your program with the sample data and some random data:
Smith Number: simple & Easy
import java.io.*; class SmithNumber { static int s=0; public static int sumdig(int n) { if(n==0) { return 0; } else { int d=n%10; return(d+sumdig(n/10)); } } static int sum=0; public static in
Queue : An easy Data Structure in java
import java.io.*; public class Queue { int Q[]; int size; int front; int rear; Queue(int cap) { size = cap; Q = new int[size]; front = 0; rear = 0; } void insert(int v) { if(rear == size) { System.out.pr
Rotate a Matrix by 90 degree
import java.io.*; class RotateMatrix { int r; int Arr[][]; int NewA[][]; void fill_array()throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter the order of the matrix"); r=Integer.parseInt(
Free ISC JAVA sample paper for class XI
ISC class XI practice test 1: Interesting way to learn
ISC class XI practice testPart I (20 marks)Q 1. Perform the following conversions (Step by step working has to be written in the answer paper)
Number Conversions : Important for ISC Class XI
A superb Pendulum array program
For other posts related to array click https://wordpress-343193-1101484.cloudwaysapps.com/array-programs-part-1-icse-computer-applications
Interesting Merge two array program
import java.io.*; class merge { public static void main()throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter the length of the first array"); int n=Integer.parseInt(br.readLine()); int Arr1[]=new int[n]; System.out.println("En
Astonishing Insertion sort in an array
For other sorting programs clickhttps://wordpress-343193-1101484.cloudwaysapps.com/array-programs-part-1-icse-computer-applications
A Simple program: Sum of Boundary elements of a Matrix
Write a program to accept a matrix of any size from the user an print the sum of the boundary elements of the matrix.
A super Anticlockwise Circular Matrix program
import java.util.*; class AnticlockMatrix { public static void main(String args[]) { Scanner sc = new Scanner(System.in); System.out.print("Enter the size of the matrix: "); int n = sc.nextInt(); int A[][] = new int[n][n]; int k=n*n, c1=0, c2=n-1, r1=
An excellent String program to count words start and end with a vowel
import java.io.*; public class VowelWord { String str="",str2="",s="",st=""; int len,count=0; String arr[]; void input()throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("enter the string in upper case
Count palindrome words in a sentence: Best program
Check some more java programs https://wordpress-343193-1101484.cloudwaysapps.com/julian-day-program
String Program(Convert to palindrome words)
Write a program to accept a sentence and convert all the words in to palindrome words,the words that are already palindrome will remain same. Palindrome words are spelled same from both sides. Mom, dad, Malayalam are few examples of palindrome words.
Recursion
Recursion is a programming technique where a function calls itself again and again.Base case: Every recursive function uses a condition to terminate. It is known as base case. As soon as the condition for base case is true the control terminates the function otherwise, it keeps calling the function
Double Dimensional Array(Matrix) Program I (Maximum minimum element, sum, average)
ISC class XI sample paper 5
ISC class XI practice paper 3
Q 1. The National college of Journalism is offering courses in three different categories of journalism, which are the print, the web and the broadcasting media.
ISC sample paper class xi: Important questions
ISC practical sample paper 1 for class XI : The best way to learn
isc practical sample paperThe total time to be spent on the Planning and the Examination Session is Three hours.
ISC class XI sample paper 3
ISC class XI Practice Test 2: Interesting way to learn
ISC class xi computer science practice test