ISC Class 1285 articles

Artificial Intelligence

Revise ISC Class 12 AI with structured articles you can filter fast—pair conceptual posts with programs and papers from the same board and class when you need mixed practice.

Subject
Type
Showing 85 of 85 articles
Solved Programs
isc

ISC Computer Practical programs

Trushna Tejwani8 Jan5 min
Sample Papers
isc

ISC MCQ computer science sample papers free download

Trushna Tejwani18 Nov5 min
Practice Tests
isc

ISC MCQ practice paper

Trushna Tejwani8 Nov5 min
Sample Papers
isc

ISC MCQ sample paper 5

Trushna Tejwani8 Nov5 min
Sample Papers
isc

ISC MCQ sample paper 4

Trushna Tejwani8 Nov5 min
Sample Papers
isc

ISC MCQ sample paper 3

Trushna Tejwani8 Nov5 min
Sample Papers
isc

ISC MCQ sample paper 2

Trushna Tejwani8 Nov5 min
Sample Papers
isc

ISC MCQ sample paper 1

Trushna Tejwani8 Nov5 min
Practice Tests
isc

ISC MCQ

Trushna Tejwani6 Oct5 min
Practice Tests
isc

ISC MCQ

Trushna Tejwani26 Sept5 min
Practice Tests
isc

ISC MCQ Boolean algebra

Trushna Tejwani17 Sept5 min
Practice Tests
isc

ISC MCQ Computer Science- 3 marks questions

Trushna Tejwani12 Sept5 min
Practice Tests
isc

MCQ for ISC Computer science part 2

Trushna Tejwani2 Sept5 min
Sample Papers
isc

ISC specimen paper for semester I (MCQ) computer science

Trushna Tejwani28 Aug5 min
Tutorials
isc

MCQ for ISC computer science

Class X MCQ JAVA

Trushna Tejwani20 Aug5 min
Solved Programs
isc

ISC 2020 solved program (Object passing as an argument)

import java.util.*; class Mix { scanner sc=new scanner(system.in); int len; string wrd; Mix() { len=0; wrd=""; } void feedword() { system.out.println("enter a word"); wrd=sc.next(); } void mix_word(mix a, mix b) { st

Trushna Tejwani15 Jul5 min
Solved Programs
isc

ISC 2012 Object passing program

A class Combine contains an array of integers which combines two arrays into a single array including the duplicate elements, if any, and sorts the combined array. Some of the members of the class are given below:

Trushna Tejwani14 Jul5 min
Tutorials
isc

Array address Calculation Single and double dimensional array

Single dimensional arrayAddress=B+W (I-L) B=base addressW=size of the elementI=index of the element whose address is to be calculatedL=Lower boundary of the array

Trushna Tejwani13 May5 min
Solved Programs
isc

Binary search with Recursion

Trushna Tejwani26 Apr5 min
Solved Programs
isc

Fascinating Number program Solved ISC practical 2021 Question 1

Trushna Tejwani14 Apr5 min
Solved Programs
isc

Solved ISC practical 2021 Question 3

Trushna Tejwani13 Apr5 min
Practical Papers
isc

ISC computer practical paper 2021

Trushna Tejwani12 Apr5 min
Sample Papers
isc

ISC sample paper 2021

ISC sample paper 2021

Trushna Tejwani5 Apr5 min
Solved Programs
isc

Saddle point program

Write a program in Java to input the size of a square matrix from the user. Then allow the user to fill the matrix with integers. Now do the following:

Trushna Tejwani29 Mar5 min
Solved Programs
isc

Circular shift program

Circular shiftA class Circular has been signed to print a set of elements in a circular fashion. For example, if input is 1, 2,3,4 output should be:1,2,3,44,1,2,33,4,1,22,3,4,1Class name: CircularShiftData members/ instance variables:list[ ]: store the elementssize: to store the number of elements

Trushna Tejwani22 Mar5 min
Solved Programs
isc

ISC computer practical 2019 solved Question 2

Write a program to declare a single dimensional array al ] and a square matrix b[ ] ofsize N. where >2 and N<10. Allow the user to input positive integers into the single dimensional array Perform the following tasks on the matrix:(a) Sort the elements of the single dimensional array in ascending or

Trushna Tejwani18 Mar5 min
Solved Programs
isc

Initials of string : Recursive Program

A class Initials Print has been defined to print the initials of the name. Some of the members of the class are given below:Class name : InitialsPrintData members/instance variables:String initials : to store the initials of the nameMember functions:initialsPrint(): constructor to assign blank to in

Trushna Tejwani15 Mar5 min
Solved Programs
isc

ISC 2020 program: Convert day number to date

isc 2020 program Design a class Convert to find the date and the month from a given day number for a particular year. Example: If day number is 64 and the year is 2020, then the corresponding date would be: March 4, 2020 i.e. (31 + 29 + 4 = 64).Some of the members of the class are given below:

Trushna Tejwani11 Mar5 min
Solved Programs
isc

Words that start and end with a vowel program: ISC 2016 program

Write a program to accept a sentence which may be terminated by either’.’, ‘?’or’!’ only. The words may be separated by more than one blank space and are in UPPER CASE.

Trushna Tejwani4 Mar5 min
Solved Programs
isc

Magic number program

Trushna Tejwani11 Feb5 min
Sample Papers
isc

Free ISC JAVA sample paper for class XII 2021

Trushna Tejwani1 Feb5 min
Solved Programs
isc

Highly Effective Data Structure : Stack

import java.io.*; class Stack { static int ST[],size,top; Stack() { size=0; top=-1; } Stack(int cap) { size=cap; ST=new int[size]; top=-1; } static void push(int n) { if(top==size-1) { System.out.println("Overflow"); } else { top+=1; ST[top]=n; } } static int pop() { if(top==-1) { System.out.printl

Trushna Tejwani28 Jan5 min
Solved Programs
isc

An authentic Adam Number program

import java.io.*; class Adam { static int rev(int num) { int rev=0; while(num!=0) { int rem=num%10; rev=rev*10+rem; num=num/10; } return rev; } static int sq(int a) { int sq_a=a*a

Trushna Tejwani14 Jan5 min
Solved Programs
isc

ISC 2018 Practical: Gold Bach Number Program

A Gold Bach number is a positive even integer that can be expressed as the sum of two odd primes.Note: All even integer numbers greater than 4 are Gold Bach numbers.Example:6 = 3 + 310 = 3 + 710 = 5 + 5Hence, 6 has one odd prime pair 3 and 3. Similarly, 10 has two odd prime pairs, i.e. 3, 7 and 5, 5

Trushna Tejwani7 Jan5 min
Sample Papers
isc

Free ISC sample paper 2021

Trushna Tejwani31 Dec5 min
Sample Papers
isc

Free ISC sample paper 2021

Trushna Tejwani24 Dec5 min
Solved Programs
isc

Sum of the digits: An intriguing Recursion program

import java.util.*; class Recur { int sum=0; int sumofdigits(int num) { if(num>0) { int r=num%10; sum+=r; sumofdigits(num/10); } return sum; } public static void main() { Scanner sc=new Scanner(Syst

Trushna Tejwani21 Dec5 min
Solved Programs
isc

A Strong MatRev program ISC 2019 Object passing

Design a class MatRev to reverse each element of a matrix. Example:

Trushna Tejwani17 Dec5 min
Sample Papers
isc

Free ISC sample paper 2021

Trushna Tejwani14 Dec5 min
Solved Programs
isc

A Wonderful Hourglass Program

import java.io.*; class Hourglass { public static void main()throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter the row and column number for the matrix"); int r=Integer.parseInt(br.readLine());

Trushna Tejwani11 Dec5 min
Solved Programs
isc

A Sensational Circular Matrix program

import java.io.*; class Circular { public static void main()throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter the length of the double dimensions-rows&columns-- ONLY ONE DIGIT IS TO BE ENTERED FOR BOTH"); int r=Integer.

Trushna Tejwani9 Dec5 min
Practice Tests
isc

ISC computer class XII practice test(contains important questions)

--------------------------------------------------------------------------------------------------------------------

Trushna Tejwani7 Dec5 min
Solved Programs
isc

Factorial of a number (Recursive Function)

To learn more about how to make a program in java watch this video https://youtu.be/TRm9r4gFTho

Trushna Tejwani26 May5 min
Solved Programs
isc

An easy Program: Transpose of a Matrix

To learn about how to take input in java watch the given video. https://youtu.be/QZKcULOC4lg

Trushna Tejwani25 May5 min
Solved Programs
isc

An Excellent ISBN Number program ISC practical 2013 [Question 1]

import java.io.*; public class IsbnNumber { public static void main()throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter a no of 10 digits"); int num=Integer.parseInt(br.readLine()); int sum=0,rem;double rev;

Trushna Tejwani17 May5 min
Tutorials
isc

Boolean Algebra for ISC: Learn Effectively

Minterm Minterm is a product of all the literals (in either complement or without complement form). Example if we have two boolean variables X and Y then X.(~Y) is a minterm. we can express complement ~Y as Y’ so, the above minterm can be expressed as XY’ So, if we have two variables then th

Trushna Tejwani12 Apr5 min
Solved Programs
isc

Lottery Program

The lottery program involves generating random numbers, comparing digits, and using Boolean operators. Suppose you want to develop a program to play lottery. The program randomly generates a lottery of a two-digit number, prompts the user to enter a two-digit number, and determines whether the user

Trushna Tejwani11 Apr5 min
Solved Programs
isc

Interface program

Write a java program to find the details of the students eligible to enroll for the examination ( Students, Department combinedly give the eligibility criteria for the enrollement class) using interfaces.

Trushna Tejwani10 Apr5 min
Solved Programs
isc

MCQ result program

Write a program that will grade multiple-choice tests. Assume there are eight students and ten questions, and the answers are stored in a two dimensional array. Each row records a student’s answers to the questions, as shown in the following array. Students’ Answers to the Questions: 0 1 2 3 4 5 6 7

Trushna Tejwani9 Apr5 min
Solved Programs
isc

Inheritance Abstract class program

Write a java program that implements educational hierarchy using inheritance. In this program abstract class is used. An abstract class can't be instantiated(you can't create an object of these classes). An abstract class is a class which has at least one abstract method. An abstract method can't ha

Trushna Tejwani6 Apr5 min
Solved Programs
isc

Robot(Inheritance of interfaces): an easy program

Create an abstract class Robot that has the concretre subclasses ,RobotA, RobotB, RobotC. Class RobotA1 extends RobotA, RobotB1 extends RobotB and RobotC1 extends RobotC. There is interface Motion that declares 3 methods forward(), reverse() and stop(), implemented by RobotB and RobotC. Sound interf

Trushna Tejwani5 Apr5 min
Solved Programs
isc

Interface program: An Exquisite program

Interface Luminious Object has two method lightOn() and lightOff(). There is one class Solid extended by 2 classes Cube and Cone. There is one class LuminiousCone extends Cone and implements Luminoius Interface. LumminuiousCube extends Cube and implements Luminious Interface. Create a object of Lumi

Trushna Tejwani4 Apr5 min
Solved Programs
isc

Inheritance of Interface: An upbeat program

Interface P is extended by P1 and P2 interfaces. Interface P12 extends both P1 and P2.Each interface declares one method and one constant.

Trushna Tejwani3 Apr5 min
Solved Programs
isc

Abstract class program

Write a java program to create an abstract class named Shape that contains two integers and an empty method named printArea(). Provide three classes named Rectangle, Triangle and Circle such that each one of the classes extends the class Shape. Each one of the classes contain only the method printAr

Trushna Tejwani1 Apr5 min
Solved Programs
isc

Java Project ATM Machine

java project atm machineUse the Account class created to simulate an ATM machine. Create 10 accounts with id AC001…..AC010 with initial balance 300₹. The system prompts the users to enter an id. If the id is entered incorrectly, ask the user to enter a correct id. Once an id is accepted, display me

Trushna Tejwani31 Mar5 min
Board Papers
isc

ISC COMPUTER SCIENCE PAPER 1 2020 : The best way to revise

Trushna Tejwani24 Mar5 min
Solved Programs
isc

Sum of left diagonal and right diagonal

Write a program to accept a two dimensional array(Square matrix) and calculate the sum of left and right diagonals.

Trushna Tejwani22 Feb5 min
Solved Programs
isc

Happy Number

Write a program to accept a number and check whether it is a happy number or not.

Trushna Tejwani20 Feb5 min
Practical Papers
isc

ISC COMPUTER PRACTICAL PAPER 2020

Trushna Tejwani7 Feb5 min
Sample Papers
isc

ISC sample paper 9

Trushna Tejwani1 Feb5 min
Solved Programs
isc

Armstrong Number with Recursion

Write a program to find the given number is Armstrong number or not with the help of a recursive function.

Trushna Tejwani30 Jan5 min
Solved Programs
isc

Evil number

Write a program to check whether the given number is Evil Number or not in Java A number is said to be an Evil number if and only if the binary equivalent of the number is having an even number of 1’s. The entered number must be a whole number.

Trushna Tejwani15 Jan5 min
Practical Papers
isc

ISC Practical sample paper 3: The best way to learn

ISC practical sample paperThe total time to be spent on the Planning session and Examination session is Three hours. Planning session: 90minutes Examination session: 90 minutes Note: Candidates are to bepermitted to proceed to the Examination Session only after the 90 minutes of the Planning Session

Trushna Tejwani14 Jan5 min
Solved Programs
isc

Wondrous square program: ISC practical 2005 program

17 24 1 8 15

Trushna Tejwani12 Jan5 min
Solved Programs
isc

Unique number program

A unique-digit integer is a positive integer (without leading zeros) with no duplicate digits. For example 7, 135, 214 are all unique-digit integers whereas 33, 3121, 300 are not.

Trushna Tejwani9 Jan5 min
Practical Papers
isc

ISC Practical sample paper 2 : The best way to learn

The total time to be spent on the Planning session and Examination session is Three hours. Planning session: 90 minutes Examination session: 90 minutes Note: Candidates are to be permitted to proceed to the Examination Session only after the 90 minutes of the Planning Session are over.

Trushna Tejwani6 Jan5 min
Practical Papers
isc

ISC Practical paper 2019

Trushna Tejwani29 Dec5 min
Solved Programs
isc

An easy Caesar Cipher ISC Practical 2017 Program 3

Write a program to accept a plain text of length L, where L must be greater than 3 and less than 100. Encrypt the text if valid as per the Caesar Cipher. Test your program with the sample data and some random data: Example 1 INPUT : Hello! How are you?OUTPUT: Uryyb? Ubj ner lbh? Example

Trushna Tejwani27 Dec5 min
Sample Papers
isc

ISC COMPUTER SCIENCE SAMPLE PAPER 8

Standard: XII Subject: Computer

Trushna Tejwani23 Dec5 min
Board Papers
isc

A resourceful ISC computer science paper-1(theory-2019)

Trushna Tejwani10 Mar5 min
Sample Papers
isc

ISC sample paper-7 computer science: Top questions for free

Trushna Tejwani14 Jan5 min
Practical Papers
isc

ISC Practical sample paper-2 class 12 : The best way to learn

ISC practical sample paper

Trushna Tejwani25 Sept5 min
Practical Papers
isc

ISC practical sample paper-1 class 12: The best way to learn

ISC practical sample paperThe total time to be spent on the Planning and the Examination Session is Three hours.After completing the Planning Session, the candidate may begin with the Examination Session. A maximum of 90 minutes is permitted to begin the Examination Session.However, if candidates fi

Trushna Tejwani25 Sept5 min
Practice Tests
isc

ISC Practice test - 6 class 12: Important Questions

ISC practice test

Trushna Tejwani24 Sept5 min
Practice Tests
isc

ISC Practice test - 5 class 12: Important Questions

1. What is inheritance? [2]2. Convert the following infix expression to its postfix form. b*[(a/d) – (c * (e-f))] [2]3. Explain the use of keyword “implements”, define interface. [2]4. What is an abstract class? [2]

Trushna Tejwani24 Sept5 min
Practice Tests
isc

ISC Practice test - 4 class 12: Important Questions

PART I

Trushna Tejwani24 Sept5 min
Practice Tests
isc

ISC Practice test - 3 class 12: Important Questions

ISC practice test

Trushna Tejwani24 Sept5 min
Practice Tests
isc

ISC Practice test - 2 class 12: Important Questions

Question 1Draw a truth table with a three input combination which outputs 1 if there are odd number of 0’s. Also derive an SOP expression using Karnaugh map. [5]

Trushna Tejwani24 Sept5 min
Practice Tests
isc

ISC Practice test - 1 class 12: Important Questions

Question 1                                              [10 marks](a) Calculate the dual of the following. [2]X’.(Y+Z)=(X.Y)+(X.Z)(b) Find the compliment of F(a,b)=ab'+a'b [2](c) Write the product of sum of the Boolean function, F(A,B,C) whose output is 0 only when,A=1,B=0,C=0 [2]A=0,B=1,C=0A=0,B=0,

Trushna Tejwani24 Sept5 min
Sample Papers
isc

ISC sample paper 6: An easy computer science sample paper 6

Trushna Tejwani24 Sept5 min
Sample Papers
isc

An easy ISC computer science sample paper-5

Trushna Tejwani23 Jul5 min
Sample Papers
isc

A powerful ISC computer science sample paper-4

Answer all questions in Part I (compulsory) and seven questions from Part-II, choosing three questions from Section-A, two from Section-B and two from Section-C.

Trushna Tejwani23 Jul5 min
Sample Papers
isc

An Ideal ISC computer science sample paper-3

ISC sample paper      Answer all questions in Part I (compulsory) and seven questions from Part-II, choosing three questions from Section-A, two from Section-B and two from Section-C.

Trushna Tejwani23 Jul5 min
Sample Papers
isc

An inspirational ISC computer science sample paper-2

Trushna Tejwani23 Jul5 min
Sample Papers
isc

Free ISC computer science sample paper-1

Trushna Tejwani23 Jul5 min