ISC Class 1129 articles

Artificial Intelligence

Connect ISC Class 11 AI theory to real examples—browse the full class feed and filter by subject or resource type to align with your syllabus and revision plan.

Subject
Type
Showing 29 of 29 articles
Sample Papers
isc

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

Trushna Tejwani12 Apr5 min
Practice Tests
isc

ISC practice test class XI: Best questions

Trushna Tejwani8 Mar5 min
Practice Tests
isc

ISC practice test for class XI: Best questions

Trushna Tejwani1 Mar5 min
Solved Programs
isc

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:

Trushna Tejwani15 Feb5 min
Solved Programs
isc

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

Trushna Tejwani8 Feb5 min
Solved Programs
isc

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

Trushna Tejwani4 Feb5 min
Solved Programs
isc

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(

Trushna Tejwani21 Jan5 min
Sample Papers
isc

Free ISC JAVA sample paper for class XI

Trushna Tejwani21 Dec5 min
Practice Tests
isc

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)

Trushna Tejwani5 Dec5 min
Tutorials
isc

Number Conversions : Important for ISC Class XI

Trushna Tejwani26 Jun5 min
Solved Programs
isc

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

Trushna Tejwani19 Jun5 min
Solved Programs
isc

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

Trushna Tejwani15 Jun5 min
Tutorials
isc

Astonishing Insertion sort in an array

For other sorting programs clickhttps://wordpress-343193-1101484.cloudwaysapps.com/array-programs-part-1-icse-computer-applications

Trushna Tejwani14 Jun5 min
Solved Programs
isc

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.

Trushna Tejwani22 May5 min
Solved Programs
isc

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=

Trushna Tejwani21 May5 min
Solved Programs
isc

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

Trushna Tejwani20 May5 min
Solved Programs
isc

Count palindrome words in a sentence: Best program

Check some more java programs https://wordpress-343193-1101484.cloudwaysapps.com/julian-day-program

Trushna Tejwani18 May5 min
Solved Programs
isc

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.

Trushna Tejwani5 May5 min
Tutorials
isc

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

Trushna Tejwani4 May5 min
Solved Programs
isc

Double Dimensional Array(Matrix) Program I (Maximum minimum element, sum, average)

Trushna Tejwani16 Apr5 min
Sample Papers
isc

ISC class XI sample paper 5

Trushna Tejwani16 Jan5 min
Practice Tests
isc

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.

Trushna Tejwani11 Jan5 min
Sample Papers
isc

ISC sample paper class xi: Important questions

Trushna Tejwani7 Jan5 min
Practical Papers
isc

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.

Trushna Tejwani4 Jan5 min
Sample Papers
isc

ISC class XI sample paper 3

Trushna Tejwani2 Jan5 min
Practice Tests
isc

ISC class XI Practice Test 2: Interesting way to learn

ISC class xi computer science practice test

Trushna Tejwani1 Jan5 min
Sample Papers
isc

ISC class XI sample paper 2

Trushna Tejwani31 Dec5 min
Sample Papers
isc

ISC class XI sample paper 1

Trushna Tejwani30 Dec5 min
Sample Papers
isc

ISC sample paper class XI

Trushna Tejwani23 Dec5 min