Complete IIT AIEEE ICSE ISC PMT help forum
This is a free help Forum for Indian Students.
Complete IIT AIEEE ICSE ISC PMT help forum
This is a free help Forum for Indian Students.
Complete IIT AIEEE ICSE ISC PMT help forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Complete IIT AIEEE ICSE ISC PMT help forum

Complete help forum for students preparing for icse iit aieee cbse pmt and other related exams.Stay updated about all 2011 exams.
 
HomeHome  PortalPortal  SearchSearch  Latest imagesLatest images  RegisterRegister  Log in  India NewsIndia News  
Keywords
ICSE SELECT CLASS science question 2009 paper 2007 graph CASE 2010 2004 YEAR prelim UNION papers physics 2006 computer RESULT
Latest topics
» Nitration of aniline - IIT JEE 2018 Advanced - solved
ISC 2010 Computer Science Specimen Paper EmptyFri Jun 08, 2018 2:34 am by adianadiadi

» Diamagnetic - Paramagnetic - Ni(CO)4, [Ni(CN)4]2- and [NiCl4
ISC 2010 Computer Science Specimen Paper EmptyFri Apr 06, 2018 1:05 am by adianadiadi

» IIT JEE chemistry solved interactive question paper
ISC 2010 Computer Science Specimen Paper EmptySun Oct 29, 2017 12:11 pm by adianadiadi

» IIT JEE 2015 SOLVED QUESTION PAPER
ISC 2010 Computer Science Specimen Paper EmptyWed Oct 19, 2016 1:44 pm by adianadiadi

» IIT JEE chemistry solved questions
ISC 2010 Computer Science Specimen Paper EmptySat Jul 18, 2015 6:15 pm by adianadiadi

» General Description of Chinese Market for Foaming Agent ADC
ISC 2010 Computer Science Specimen Paper EmptyFri May 09, 2014 2:09 pm by happybaicaitou

» How to get Lowest Cost MBBS Admission?
ISC 2010 Computer Science Specimen Paper EmptyMon Feb 24, 2014 6:39 pm by MENTOR 2014

»  girl boy vashikaran specialist agori baba ji +91-9461165
ISC 2010 Computer Science Specimen Paper EmptyTue Jan 21, 2014 6:00 pm by krshastri

»  STRONG LOST LOVE SPELL +91-9461165176
ISC 2010 Computer Science Specimen Paper EmptyTue Jan 21, 2014 6:00 pm by krshastri

Top posters
abhas
ISC 2010 Computer Science Specimen Paper Vote_lcapISC 2010 Computer Science Specimen Paper Voting_barISC 2010 Computer Science Specimen Paper Vote_rcap 
Anu..i luv icse...:)
ISC 2010 Computer Science Specimen Paper Vote_lcapISC 2010 Computer Science Specimen Paper Voting_barISC 2010 Computer Science Specimen Paper Vote_rcap 
G-7
ISC 2010 Computer Science Specimen Paper Vote_lcapISC 2010 Computer Science Specimen Paper Voting_barISC 2010 Computer Science Specimen Paper Vote_rcap 
siya
ISC 2010 Computer Science Specimen Paper Vote_lcapISC 2010 Computer Science Specimen Paper Voting_barISC 2010 Computer Science Specimen Paper Vote_rcap 
Candy
ISC 2010 Computer Science Specimen Paper Vote_lcapISC 2010 Computer Science Specimen Paper Voting_barISC 2010 Computer Science Specimen Paper Vote_rcap 
jOhNy
ISC 2010 Computer Science Specimen Paper Vote_lcapISC 2010 Computer Science Specimen Paper Voting_barISC 2010 Computer Science Specimen Paper Vote_rcap 
Apurva
ISC 2010 Computer Science Specimen Paper Vote_lcapISC 2010 Computer Science Specimen Paper Voting_barISC 2010 Computer Science Specimen Paper Vote_rcap 
WinRrule
ISC 2010 Computer Science Specimen Paper Vote_lcapISC 2010 Computer Science Specimen Paper Voting_barISC 2010 Computer Science Specimen Paper Vote_rcap 
ambili
ISC 2010 Computer Science Specimen Paper Vote_lcapISC 2010 Computer Science Specimen Paper Voting_barISC 2010 Computer Science Specimen Paper Vote_rcap 
saif
ISC 2010 Computer Science Specimen Paper Vote_lcapISC 2010 Computer Science Specimen Paper Voting_barISC 2010 Computer Science Specimen Paper Vote_rcap 



Search if you can't find it here

ISC 2010 Computer Science Specimen Paper

View previous topic View next topic Go down
Go to page : 1, 2, 3  Next
AuthorMessage
WinRrule
Active member
Active member
WinRrule


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyFri Mar 12, 2010 5:37 pm

Hey guys here is the question paper for CSc. If anyone has already done the programs pls post them..

http://www.cisce.org/data/Specimen%20Question%20Paper/2.%20CTS-1-SPECIMEN-2010.pdf
Back to top Go down
NITIN BHUWANIA
Active member
Active member
NITIN BHUWANIA


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyFri Mar 12, 2010 8:11 pm

do u want the answer for all the progs??? ISC 2010 Computer Science Specimen Paper Icon_basketball
Back to top Go down
NITIN BHUWANIA
Active member
Active member
NITIN BHUWANIA


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyFri Mar 12, 2010 8:39 pm

the answer for question 11 is:-

class Personal
{
String Name;
int Pan;
double basic_pay;
int acc_no;
Personal(String a,int b,double c,int d)
{
Name=a;
Pan=b;
basic_pay=c;
acc_no=d;
}
void display()
{
System.out.println("EMPLOYEE NAME :"+Name);
System.out.println("EMPLOYEE PAN NUMBER :"+Pan);
System.out.println("EMPLOYEE BASIC SALARY :"+basic_pay);
System.out.println("EMPLOYEE BANK ACCOUNT NUMBER :"+acc_no);
}
}
class Retire extends Personal
{
int Yrs;
double Pf,Grat;
Retire(String a,int b,double c,int d,int e)
{
super(a,b,c,d);
Yrs=e;
Pf=0;
Grat=0.0;
}
void provident()
{
Pf=((2*basic_pay)/100)*Yrs;
}
void gratuity()
{
Grat=(Yrs>=10?12*basic_pay:0.0);
}
void dispaly1()
{
display();
System.out.println("EMPLOYEE YEAR OF SERVICE :"+Yrs);
System.out.println("EMPLOYEE PROVIDENT FUND :"+Pf);
System.out.println("EMPLOYEE GRATUITY :"+Grat);
}
}
class Inherit
{
public Static void main(String args[])
{
Retire ob=new Retire("GERRY ARATHOON",12345,14500.0,12);
ob.provident();
ob.gratuity();
ob.display1();
}
}


CHECK IT OUT GUYS...
I HAVE COMPLETED THE OTHERS ALSO..
WILL UPLOAD IT BY TONIGHT..
Back to top Go down
prateek9417




ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyFri Mar 12, 2010 8:44 pm

How hav u solved the prog 4 circular input.pls hlp me 2morrow is my practical of class 11 & i hope that it1s coming.
Back to top Go down
prateek9417




ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyFri Mar 12, 2010 8:45 pm

How hav u solved the prog 4 circular input in an array .pls hlp me 2morrow is my practical of class 11 & i hope that it1s coming.
Back to top Go down
NITIN BHUWANIA
Active member
Active member
NITIN BHUWANIA


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyFri Mar 12, 2010 8:46 pm

DUDE HOW TO ADD PICS TO THE REPLY??
(I MEAN THE SCANNED PICS)

COZ I HAVE THE ANSWERS FOR ALL THE QUESTIONS BUT CANT TYPE IT AS IT WILL TAKE TOO LONG..

SO CAN U TELL ME HOW TO ADD PICS FROM MY LAPTOP TO MY REPLY?
Back to top Go down
G-7
Active member
Active member
G-7


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyFri Mar 12, 2010 11:44 pm

yo..f0llow the numbered steps in the screen shot...and whn a box comes after uploading the pic...copy the last url...it will look something like this:

https://i.servimg.com/u/f67/14/97/93/06/asdadf12.jpg

click this bud...!!
Back to top Go down
WinRrule
Active member
Active member
WinRrule


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyTue Mar 16, 2010 9:14 am

@ nitin:
juz copy and paste here..!
Back to top Go down
G-7
Active member
Active member
G-7


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyTue Mar 16, 2010 9:42 am

i believe that u cannot copy text from scanned pics WinRule..!!!!! Very Happy
Back to top Go down
WinRrule
Active member
Active member
WinRrule


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyTue Mar 16, 2010 4:07 pm

depends on the format..! if it is a JPG or GIF, can copy paste..
Back to top Go down
G-7
Active member
Active member
G-7


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyTue Mar 16, 2010 4:50 pm

Yo WinRule...! U can't.! Its a handwritten document..!! u cant copy text from that..!! Evil or Very Mad
Back to top Go down
mohan123




ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyTue Mar 16, 2010 6:51 pm

Dude nitin can u send the programs to my e-mail Id nahom321@rediffmail.com.pls send it .... pls pls pls ...
Back to top Go down
G-7
Active member
Active member
G-7


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyTue Mar 16, 2010 7:03 pm

nice idea mohan123..

reversing ur name in ur mail ID..kwl... lol!
Back to top Go down
WinRrule
Active member
Active member
WinRrule


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyTue Mar 16, 2010 8:22 pm

Hey Nitin which format is the scan? pdf? if it is pdf u can upload it on scribd..!
Back to top Go down
G-7
Active member
Active member
G-7


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyTue Mar 16, 2010 8:30 pm

u can upload whatever it is right here using the 6th buton from left on the 'post reply box'..!!!
Back to top Go down
NITIN BHUWANIA
Active member
Active member
NITIN BHUWANIA


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyWed Mar 17, 2010 2:15 pm

i m really sorry guys for not able to uload the answers up till now...


there was some problem with my comp...

i m uploading the documents within an hour..
Back to top Go down
NITIN BHUWANIA
Active member
Active member
NITIN BHUWANIA


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyWed Mar 17, 2010 2:18 pm

i mean my lappy..

anyways the document is not handwritten..
Back to top Go down
NITIN BHUWANIA
Active member
Active member
NITIN BHUWANIA


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyWed Mar 17, 2010 3:12 pm

GUYS U CAN DOWNLOAD THE ANSWERS TO THE SPECIMEN PAPER FROM THE FOLLOWING LINK:-

http://rapidshare.com/files/364456594/NITIN.zip.html


I HAVE SCANNED AND ZIPPED THE DOCUMENTS INTO AN ARCHIVE NAMED AS NITIN..
Back to top Go down
NITIN BHUWANIA
Active member
Active member
NITIN BHUWANIA


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyWed Mar 17, 2010 3:14 pm

THE IMAGES ARE SCANNED....SO THEY MAY BE A LITTLE DARK SPOTS AT THE SIDES.. ISC 2010 Computer Science Specimen Paper Icon_biggrin ISC 2010 Computer Science Specimen Paper Icon_king
Back to top Go down
diptojit
Active member
Active member



ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyWed Mar 17, 2010 4:46 pm

hey thanks for the answers dude !! ISC 2010 Computer Science Specimen Paper Icon_biggrin
Back to top Go down
NITIN BHUWANIA
Active member
Active member
NITIN BHUWANIA


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyWed Mar 17, 2010 8:51 pm

i m really sorry guys..
i think i have messed up the scanned images..

there is no answer for the section b...
ISC 2010 Computer Science Specimen Paper Icon_redface ISC 2010 Computer Science Specimen Paper Icon_redface ISC 2010 Computer Science Specimen Paper Icon_redface ISC 2010 Computer Science Specimen Paper Icon_redface


will correct it and upload the refurbished link by 9...
Back to top Go down
NITIN BHUWANIA
Active member
Active member
NITIN BHUWANIA


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyWed Mar 17, 2010 8:51 pm

really sorry for it guys ISC 2010 Computer Science Specimen Paper Icon_rolleyes ISC 2010 Computer Science Specimen Paper Icon_sad ISC 2010 Computer Science Specimen Paper Icon_sad
Back to top Go down
Soumava
Active member
Active member
Soumava


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Boolean problem ISC 2010 Computer Science Specimen Paper EmptyWed Mar 17, 2010 11:02 pm

hey guyz,do you have the solution to this boolen problem? ISC 2010 Computer Science Specimen Paper Icon_bounce

Determine if following wff is valid, satisfiable or unsatisfiable:
(p -> q) => [~q -> (~p ^ ~q)]

please can you mail it here:
soumava@live.com
ISC 2010 Computer Science Specimen Paper Icon_wink
Back to top Go down
G-7
Active member
Active member
G-7


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyWed Mar 17, 2010 11:24 pm

is -> same as => ..???
Back to top Go down
G-7
Active member
Active member
G-7


ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper EmptyWed Mar 17, 2010 11:28 pm

its unsatisfiable isin't it guyz..? because using the truth table..it doesnt produce a tautology..
Back to top Go down
Sponsored content




ISC 2010 Computer Science Specimen Paper Vide
PostSubject: Re: ISC 2010 Computer Science Specimen Paper ISC 2010 Computer Science Specimen Paper Empty

Back to top Go down

ISC 2010 Computer Science Specimen Paper

View previous topic View next topic Back to top
Page 1 of 3Go to page : 1, 2, 3  Next

Permissions in this forum:You cannot reply to topics in this forum
Complete IIT AIEEE ICSE ISC PMT help forum :: ISC :: ISC 2010 [Class xii] :: Computer-