This is the solved page of 2010 ISC practical Computer Application paper on BlueJ.
PROGRAM NUMBER 1
A bank intends to design a program to display the denomination of an
input amount, upto 5 digits. The available denomination with the bank are
of rupees 1000,500,100,50,20,10,5,2 and 1.
Design a program to accept the amount from the user and display the
break-up in descending order of denominations. (i,e preference should
be given to the highest denomination available) along with the total
number of notes. [Note: only the denomination used should be displayed].
Also print the amount in words according to the digits.
Example 1:
INPUT: 14836
OUTPUT: ONE FOUR EIGHT THREE SIX
DENOMINATION:
1000 X 14 =14000
500 X 1 =500
100 X 3 =300
50 X 1 =50
5 X 1 =5
1 X 1 =1
EXAMPLE 2:
INPUT: 235001
OUTPUT: INVALID AMOUNT
For Solution: CLICK HERE
PROGRAM NUMBER 2:
Given the two positive integers p and q, where p < q. Write a program to determine how many kaprekar numbers are there in the range between 'p' and 'q'(both inclusive )and output them.About 'kaprekar' number:
A posotive whole number 'n' that has 'd' number of digits is squared and split into
2 pieces, a right hand piece that has 'd' digits and a left hand piece that has
remaining 'd' or 'd-1' digits. If sum of the pieces is equal to the number then
it's a kaprekar number.
SAMPLE DATA:
INPUT:
p=1
Q=1000
OUTPUT:
THE KAPREKAR NUMBERS ARE:
1,9,45,55,99,297,999
Input a paragraph containing ‘n’ number of sentences where (1<=n<=4). The words are to be separated with single blank space and are in upper case. A sentence may be terminated either with a full stop (.) or question mark (?).
Perform the followings:(i) Enter the number of sentences, if it exceeds the limit show a message.
(ii) Find the number of words in the paragraph
For the complete solution along with variable description and algorithm: CLICK HERE
2010 To 2020 Complete Papers With Solutions: CLICK HERE
2010 To 2020 Complete Papers With Solutions: CLICK HERE
thanks a lot...........
ReplyDeletesuggest som questions for pract 2011
ReplyDeleteString and array ( both numeric and string) are more important.
ReplyDeletesir Any Guess for Computer Science 2011 of isc
ReplyDeleteString class and 2 d numeric array related programs.
ReplyDeletegive any sample viva questions
ReplyDeletecan u suggest some similar prgrams please??
ReplyDeleteViva questions mainly depends on the practical program. Questions may be from the classes used in the program. Suppose you have used StringTokenizer class in your program, the external may ask you about the overloaded versions of the constructors of the same class and the differences.
ReplyDeleteQuestions may be from throws clause used in program.
Difference between IOException and Exception class. What would happen if we use ‘throws Exception’ instead of ‘throws IOException’.
In practical examination programs sorting and searching would be required. Study the differences between bubble sort and selection sort. In my experience I have seen that most of the students do not use break statement in bubble sort. If we do not use break in bubble sort, output will be alright but it is a must to use break in bubble sort. The examiner may ask the reason of using break in bubble sort.
For searching which one better searching technique between linear search and binary search and why? There are some preconditions for binary search, The examiner may ask the preconditions.
In my blog there are so many programs of different types. Please go through the blog.
ReplyDeletesir, i'll be appearing for my isc computer practical examination scheduled for 25th feb 2011. i'll be highly grateful to you if you could suggest a few programs related to the same as soon as possible.
ReplyDeletePlease follow my latest posts.
ReplyDeletesir , in 2D array programs do we need to pay heed to the input format in the question paper....or can Accept the 2D array in any way we like...following the input format means It makes the program way way longer!!
ReplyDeleteI think you asking about whether to use BufferedReader object to enter values in 2 d array or simply passing the values to function as argument. If it is so, it is better to use BufferedReader object. If you are passing values as function argument, it creates trouble for the actual user who will execute your program. BlueJ is not the only editor for Java. It is used only in school level. In future if you work on Java you have to work on other editors and in those editors there is no short cut method like BlueJ editor to pass values directly to functions. So it is always better to be accustomed with the actual style of entering values, specially for ISC students.
ReplyDeletesir i am appearing for 2012 computer science practical paper(isc) could you please suggest programs which are likely to come!! plz sir
DeletePlease follow the previous year papers and similar programs are expected.
Deleteis this year sorting of 2d array very important
DeleteNot that much important
DeleteSir,
ReplyDeletei am from dehradun an i want to know where can i get sample practical paper questions and the solution of ISC 2005 practical Q3//the //combinations program
sir m getting confused.. regarding my comp practical.. its on 25th.. you said
ReplyDeleteString class and 2 d numeric array related programs.
can you specify some of them??
n give the solved programme of that??
You must be in relaxed mood just before the examination. You go through the solved programs of previous years posted in this blog and best of luck.
ReplyDeleteRegarding ISC 2005 practical paper, check my post on February 22, 2011
ReplyDeletenIC blog sir and very helpful
ReplyDeletesir anagram ka program ??
ReplyDeletethanks for all detail............sir.
ReplyDeletePosted in ISC 2005 Computer practical examination.
ReplyDeleteprogram 3 doesn't work.
ReplyDeletesir in every practical paper is it requisite to make programs by using functions or simply using "BufferedReader" class?sir wat is "STRING TOKENIZER"?
ReplyDeleteYou can use any one, either BufferedReader or function if not specified. StringTokenizer is a class of java.util package
ReplyDeleteI am sure that you have compiled the program in your computer. Now copy the program from your computer and paste here with your input value and the output you received.
ReplyDeleteSir, can u plz hlp me wid dis program...
ReplyDeleteDesign a class convert which accepts any positive Decimal integer and a base between 2 and 16 and convert the Decimal Integer number into that base number system.
Details:
class: convert
data members: N-store any +ve int no.
b-to store the base
member functions:
convert()://constructor
void read_N_b//accept int and base
void Getans(int x,int y)//to convert x into base y using RECURSIVE TECHNIQUE.
Please check my post on 15 September.
ReplyDeleteThis is shoerter and works equally good:
ReplyDeletepublic void money(int m)
{
int ctr,n=m,i=0 ;
int a[]= {1000,500,100,50,20,10,5,2,1};
while (n != 0)
{
ctr=n/a[i];
n=n%a[i];
if (ctr != 0)
System.out.println("No. of notes of "+ a[i] + " : " + ctr );
i++;
}
}
GOOD ONE
Deletewrite a program to input natural number less than 1000 and display it in words
ReplyDeletePlease check my post on 12 November 2011.
ReplyDeleteSir please post a program to find the total number of days between two dates
ReplyDeletePlease check my post on 15th November 2011.
ReplyDeleteThere are 8 kaprekar numbers between 1 and 1000 as you have mentioned but you missed out to put 703
ReplyDeleteThanks.
ReplyDeletesir i want to take tution from you, how can i contact you??
ReplyDeleteNormally I do not take private tuition. If you have any problem, utilize this site, I am here to help.
Deletesir what are the expected practical programs for isc 2012 practicals??
ReplyDeletePlease go through the ISC practical papers starting from 2005 to 2011, posted in this site. Programs in 2012 will be similar to those programs.
DeleteSIR WHAT IS THE Difference between IOException and Exception class. What would happen if we use ‘throws Exception’ instead of ‘throws IOException’ SIR PLZZZZZZ REPLY MY PRACTCAL IS ON 24TH OF FEB
ReplyDeleteAND ALSO TELL ME :
WHY it is a must to use break in bubble sort? WHY DO WE USE BREAK IN BUBBLE SORT.
Exception is an abstract class and super class of all Exception related classes including IOException class. Actually writing throws IOException is not required, we can write throws Exception and normally it is written but in your ICSE or ISC books and some of the school teachers normally write 'throws IOException'.
ReplyDeleteMain difference between bubble sort and selection sort is that in bubble sort not a single unnecessary iteration is allowed when the elements become sorted. To terminate the iteration break is a must in bubble sort.
For searching which one better searching technique between linear search and binary search and why? There are some preconditions for binary search, The examiner may ask the preconditions.
ReplyDeleteReplyDelete
Linear search is better than binary search for number of reasons:
DeleteThe elements must be in sorted order for binary search which is not required for linear search.
Binary search can be applied on array while linear search can be carried out in array, linked list etc.
Linear search can perform both unique value search as well as category-wise search but binary search can perform only unique value search.
The preconditions of binary search:
Elements must be in sorted order.
Middle location of the array can be accessed directly.
SIR WE ALL ARE VERY THANKFUL TO YOU AND RECEIVING GERAT HELP FROM U ON BEHALF OF ALL SITE LINKERS I THANK U FOR UR HELP
ReplyDeletesir in theory exam why it is necessary to make programs using function
ReplyDeleteIn java you can not do any program without using function.
Deletehehe what a stupid question....
Deletesir, ur programs are really helpful for ne kind of practical exams be it isc or school level.....
ReplyDeletethank u sir....
hrishagni
A very very Good website sir.
ReplyDeleteyour programs have been very helpful sir...thank you
ReplyDeletesir can you pls suggest some ques for the viva for dis year...
ReplyDeleteAlready posted. Search it in this site.
DeleteSir, plz can u tell me function the line while(st.hasMoreTokens())???
ReplyDeletePrototype of the function is 'boolean hasMoreTokens()'. This is a function of StringTokenizer which returns true is there is any token in the StringTokenizer class object otherwise returns false.
DeleteThnks Sir.. for ur help ..i got my answer
ReplyDeleteWelcome.
Delete