Resource41 articles

Tutorials

Step-by-step tutorials covering programming concepts, data structures, and algorithms for ICSE and ISC students.

Board
Class
Subject
Showing 41 of 41 articles
Tutorials
icse

ICSE computer applications 2021 question paper with answer key

Trushna Tejwani8 Dec5 min
Tutorials

ICSE/ISC EXAM TIMETABLE SEMESTER I

Trushna Tejwani8 Sept5 min
Tutorials
icse

MCQ for ICSE computer part 2

Trushna Tejwani23 Aug5 min
Tutorials
isc

MCQ for ISC computer science

Class X MCQ JAVA

Trushna Tejwani20 Aug5 min
Tutorials
icse

MCQ for ICSE computer application java

Trushna Tejwani10 Aug5 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
Tutorials

ICSE ISC TIMETABLE 2021: Highly awaited

Trushna Tejwani1 Mar5 min
Tutorials

An easy Bouncy Number in java

In an increasing integer the first digit will be smaller than rest of the digits. For example, 1234 and 14779 are both increasing integers. In an decreasing integer the first digit will be bigger than rest of the digits. For example, 4321 and 9731 are both decreasing integers.

Trushna Tejwani22 Feb5 min
Tutorials
icse

Object Oriented Programming: Unleashed

Trushna Tejwani23 Jul5 min
Tutorials
isc

Number Conversions : Important for ISC Class XI

Trushna Tejwani26 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
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

Array in JAVA

Array is a data structure. It is used to store many values of the same primitive data type or objects.Arrays are used to store multiple values in a single variable, it saves the programmer from declaring separate variables for the values of same data type. Array is a reference data type or user defi

Trushna Tejwani6 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
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

Wrapper classes in JAVA

Wrapper class is a feature in java that enables a data type to be converted in to an object of a class.This gives the programmer to use a lot of functionalities available in these wrapper classes and make java actually an object oriented programming language. Wrapper class is also helpful to have fu

Trushna Tejwani2 May5 min
Tutorials
icse

Exception handling in java

Exception handling:- Exception is an abnormal condition that occurs in a program at runtime. Generally it terminates the program. Few conditions that raises an exception are divide by zero, file not found, number format exception, array out of bound exception

Trushna Tejwani30 Apr5 min
Tutorials
icse

String handling in JAVA

String handling in java:- A string is a data type used to represent text. It is a set of characters enclosed within double quotes. In java String is a class. There are many functions in this class to provide features that helps in string handling. Here is the list of all functions with their return

Trushna Tejwani24 Apr5 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
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
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
Tutorials
icse

Method Overloading

Method overloading is a feature of java in which one class can have more than one method with the same name but different parameter list(either data type or the number of arguments should be different). * If only return type is different then it can't be considered as function overloading. It can be

Trushna Tejwani2 Apr5 min
Tutorials
icse

An Easy Actual and formal parameters in java

For exampleIn the code given below the concept of actual and formal parameter is used.

Trushna Tejwani29 Mar5 min
Tutorials
icse

Methods/ Functions

Definition of method:- These are also known as functions, procedures, modules, subroutines,sub programs. In simple words it is a collection of statements which are going to perform a particular task. They don't do anything until they are called(executed). They can be used(called)as many number of ti

Trushna Tejwani28 Mar5 min
Tutorials
icse

Constructor

It is a function that has same name as the class name. It can't have any return type , not even void. It is implicitly called whenever an object of a class is called. It is used to initialize the data members of the class

Trushna Tejwani27 Mar5 min
Tutorials
icse

Revision for class X students Array

ICSE computer application revision class x 2020

Trushna Tejwani25 Mar5 min
Tutorials
icse

Revision for class X students

Icse computer application revision classe x 2020

Trushna Tejwani23 Mar5 min
Tutorials
icse

Revision for class X students

After solving all the number programs you can start solving all the patterns given here. Patterns are asked almost every year in the icse computer application paper for 7 or 8 or 15 marks(for 15 marks two patterns can be asked)

Trushna Tejwani24 Feb5 min
Tutorials
icse

Revision for class X students

In class X ICSE computer application paper 60 marks weightage is allocated to programs.

Trushna Tejwani23 Feb5 min
Tutorials

Encryption

Write a program to accept a sentence from the user and encrypt it according the value given by the user.

Trushna Tejwani18 Feb5 min
Tutorials
icse

Data types in JAVA

Data types

Trushna Tejwani3 Feb5 min
Tutorials
icse

Class & Object in JAVA

To learn java programs https://wordpress-343193-1101484.cloudwaysapps.com/interface-program

Trushna Tejwani23 Dec5 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