{"id":6692,"date":"2023-02-15T10:00:10","date_gmt":"2023-02-15T04:30:10","guid":{"rendered":"https:\/\/www.aplustopper.com\/?p=6692"},"modified":"2023-02-16T10:27:22","modified_gmt":"2023-02-16T04:57:22","slug":"icse-previous-papers-solutions-class-10-computer-applications-2008","status":"publish","type":"post","link":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/","title":{"rendered":"ICSE Computer Applications Question Paper 2008 Solved for Class 10"},"content":{"rendered":"

ICSE Computer Applications Previous Year Question Paper 2008 Solved for Class 10<\/h2>\n

ICSE Paper 2008<\/span>
\nCOMPUTER APPLICATIONS<\/span><\/p>\n

(Two Hours)<\/em><\/strong>
\nAnswers to this Paper must be written on the paper provided separately.<\/em>
\nYou will not be allowed to write during the first 15 minutes.<\/em>
\nThis time is to be spent in reading the question paper.<\/em>
\nThe time given at the head of this Paper is the time allowed for writing the answers.<\/em>
\nThis paper is divided into two Sections.<\/em>
\nAttempt all<\/strong> questions from Section A<\/strong> and any four<\/strong> questions from Section B<\/strong>. <\/em>
\nThe intended marks for questions or parts of questions are given in brackets [ ].<\/em><\/p>\n

Section \u2018A\u2019 (40 Marks)<\/span><\/p>\n

(Attempt all<\/strong> questions)<\/em><\/p>\n

Question 1:<\/strong>
\n(a)<\/strong> Mention any two attributes required for class declaration. [2]<\/strong>
\n(b)<\/strong> State the difference between token and identifier. [2]<\/strong>
\n(c)<\/strong> Explain instance variable. Give an example. [2]<\/strong>
\n(d)<\/strong> What is inheritance and how is it useful in Java ? [2]<\/strong>
\n(e)<\/strong> Explain any two types of access specifier. [2]<\/strong><\/p>\n

Answer:<\/strong>
\n(a)<\/strong> Two attributes required for class declaration :
\n(1) Access specifier (2) Class name.<\/p>\n

(b)<\/strong> A token<\/strong> is the smallest individual unit in a program. E.g. : keyword, identifiers, literals etc. whereas an identifier<\/strong> is the name given to different parts of a program. E.g. : variable, functions, classes etc.<\/p>\n

(c)<\/strong> Instance variables are variables that are created for each instance of a class. These variables represent property\/state of object.
\ne.g.
\nclass text
\n{
\nint data 1; \/\/ These are instance
\nint data 2; \/\/ variables
\n:
\n:
\n}<\/p>\n

(d)<\/strong> Inheritance<\/strong> is the process by which objects of one class can link and share some common properties of objects from another class.
\nIt helps in reusability in such a way that it adds some additional features to a class without modifying the contents of a class.<\/p>\n

(e)<\/strong> Two types of access specifier :
\n(i) private:<\/strong> accessible only to the class in which it is defined.
\n(ii) public:<\/strong> can be accessible in any class.<\/p>\n

Question 2:<\/strong>
\n(a)<\/strong> What is meant by an infinite loop ? Give an example. [2]<\/strong>
\n(b)<\/strong> State the difference between = = operator and equals () method. [2]<\/strong>
\n(c)<\/strong> Differentiate between actual parameter and formal parameter. [2]<\/strong>
\n(d)<\/strong> What is the use of exception handling in Java ? [2]<\/strong>
\n(e)<\/strong> Differentiate between base and derived class. [2]<\/strong><\/p>\n

Answer:<\/strong>
\n(a)<\/strong> An infinite loop is a loop whose test condition is always true. This type of loop never ends by itself.
\nFor example :
\nfor (i=l; i>0; i++)
\n{
\nSystem.out.println(\u201cPrashant Arora\u201d);
\nbase class
\n}<\/p>\n

(b)<\/strong> equals () is a string function where as = = is a relational operator equals ( ) checks for the equality of strings, whereas = = checks the equality of 2 primitive type values.<\/p>\n

(c)<\/strong> The parameter listed in the function prototype are termed as the formal parameters whereas the parameter used in the function call statement are the actual parameters.<\/p>\n

(d)<\/strong> Exception handling is a term associated with handling irregular situations that occur while a program is executing. When some error is occurred in a program then an exception is created by its throwable class. It helps Java not to terminate the program when the error occurs rather the program is able to continue execution.<\/p>\n

(e)<\/strong> The base class is a class whose properties will be inherited and the derived class is a class which inherits the base class. E.g. of base class is Super and derived class is Subclass.
\n\"icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1\"<\/p>\n

Question 3:<\/strong>
\n(a)<\/strong> Explain the function of each of the following with an example:
\n(i) break;
\n(ii) continue; [4]<\/strong><\/p>\n

(b)<\/strong> Convert the following segment into equivalent for loop [2]<\/strong>
\n{
\nint i, 1=0;
\nwhile (i<=20)
\nSystem.out.print (i+\u201c\u201d);
\n1++;
\n}<\/p>\n

(c)<\/strong> If a = 5, b = 9 calculate the value of a+ = a++ – ++b +a \u00a0[2]<\/strong><\/p>\n

(d)<\/strong> Give the output of the following expressions :
\n(i) If x = -9.99, calculate Math.abs(x);
\n(ii) If x=9.0, calculate Math.sqrt (x); [2]<\/strong><\/p>\n

(e)<\/strong> If, String x = \u201cComputer\u201d;
\nString y = \u201cApplications\u201d;
\nWhat do the following functions return for :
\n(i) System.out.print(x.substring(1,5));
\n(ii) System.out.print(x.indexOf(x.charAt(4)));
\n(iii) System.out.print(y+x.substring(5));
\n(iv) System.out.print(x.equals(y)); [4]<\/strong><\/p>\n

(f)<\/strong> If, array [] = {1, 9, 8, 5 2};
\n(i) What is array.length()?
\n(ii) What is array[2] ? [2]<\/strong><\/p>\n

(g)<\/strong> What does the following mean ?
\nEmployee staff = new Employee (); [2]<\/strong><\/p>\n

(h)<\/strong> Write a Java statement to input tread the following from the user using the keyboard.
\n(i) Character.
\n(ii) String. [2]<\/strong><\/p>\n

Answer:<\/strong>
\n(a)<\/strong> (i) A break statement terminates the current loop and proceeds to the first statement that follows the loop. For example:
\nboolean prime=true;
\nfor(int i=2; i<n; i++)
\n{
\nprime=(n%i==0);
\nif (prime) break;
\n}
\n(ii) A continue statement transfers the control to the next iteration leaving all the other statement unexecuted that follows after the continue statement.
\nFor example :
\nfor(int i=1; i<20; i++)
\n{
\nif(i%2==0)
\ncontinue;
\nSystem.out.println(i);
\n}
\nThe above loop will print all the odd numbers.<\/p>\n

(b)<\/strong> After converting the while loop into for :
\nfor(int i=0; i<=20; i++)
\n{
\nSystem.out.print(i+\u201c \u201d);
\n}<\/p>\n

(c)<\/strong> a + = a ++ – ++ b + a
\n= 5 – 10 + 6
\na + = 1
\nThe value of a after execution will be 6.<\/p>\n

(d)<\/strong> (i) 9.99
\n(ii) 3.0<\/p>\n

(e)<\/strong> (i) ompu
\n(ii) 4
\n(iii) Applicationster
\n(iv) False<\/p>\n

(f)<\/strong> (i) array length = 5.
\n(ii) array [2] = 8.<\/p>\n

(g)<\/strong> Employee staff=new Employee() means that staff is an object of class Employee and it is being created.<\/p>\n

(h)<\/strong> (i) char ch=(char)object.read();
\n(ii) String str=object.readLine();<\/p>\n

SECTION B (60 Marks)<\/span><\/p>\n

Attempt any four<\/strong> questions from this Section.<\/em>
\nThe answers in this Section should consist of the Programs in either Blue J environment or any program environment with Java as the base. Each program should be written using Variable descriptions!Mnemonic Codes such that the logic of the program is clearly depicted. Flow-Charts and Algorithms are not required.<\/em><\/p>\n

Question 4:<\/strong>
\nDefine a class employee having the following description :
\nData members\/instance variables:<\/strong>
\nint pan \u2014 to store personal account number
\nString name \u2014 to store name
\ndouble tax income \u2014 to store annual taxable income
\ndouble tax \u2014 to store tax that is calculated
\nMember functions:<\/strong>
\ninput() \u2014 Store the pan number, name, taxable income
\ncalc() \u2014 Calculate tax for an employee
\ndisplay() \u2014 Output details of an employee
\nWrite a program to compute the tax according to the given conditions and display the output as per given format. \u00a0 \u00a0 \u00a0[15]<\/strong><\/p>\n\n\n\n\n\n\n\n
Total annual Taxable Income<\/strong><\/td>\nTax Rate<\/strong><\/td>\n<\/tr>\n
Upto Rs. 1,00;000<\/td>\nNo tax<\/td>\n<\/tr>\n
From 1,00,001 to 1,50,000<\/td>\n10% of the income exceeding Rs. 1,00,000<\/td>\n<\/tr>\n
From 1,50,001 to 2,50,000<\/td>\nRs. 5,000 + 20% of the income exceeding Rs. 1,50,000<\/td>\n<\/tr>\n
Above Rs. 2,50,000<\/td>\nRs. 25,000 + 30% of the income exceeding Rs. 2,50,000.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

\"icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-2\"<\/p>\n

Answer:<\/strong>
\nclass employee
\n{
\nint pan;
\nString name;
\ndouble taxincome, tax;
\nvoid input(int p, String n, Double income)
\n{
\npan=p;
\nname=n;
\ntaxincome=income;
\n}
\nvoid calc()
\n{
\nif(taxincome<=100000)
\n{
\ntax=0.0;
\n}
\nelse if(taxincome<=150000)
\n{
\ntax=1*(taxincome-100000);
\n}
\nelse if(taxincome<=250000)
\n{
\ntax=5000 + 2*(taxincome-150000);
\n}
\nelse
\n{
\ntax=25000 + 3*(taxincome-250000);
\n}
\n}
\nvoid display()
\n{
\nSystem.out.println(\u201cPan Number\\tName\\tTax-income\\tTax\u201d);
\nSystem.out.println(pan+\u201c \\ t\u201d+name+\u201c \\ t\u201d+taxincome+\u201c \\ t\u201d+tax);
\n}
\n}<\/p>\n

Question 5:<\/strong>
\nWrite a program to input a string and print out the text with the uppercase and lowercase letters reversed, but all other characters should remain the same as before.
\nExample:<\/strong>
\nINPUT : WelComE TO School
\nOUTPUT : wELcOMe to SCHOOL [15]<\/strong><\/p>\n

Answer:<\/strong>
\nclass letter
\n{
\npublic static void main( )throws IOException
\n{
\nBufferedReader br=new BufferedReader(new InputStreamReader(System.in));
\nSystem.out.println(\u201cEnter any string :\u201d);
\nString s = br.readLine ( );
\nint len=s.length();
\nString s1=\u201d\u201d;\/\/second string
\nfor(int i=0; i<len; i++)
\n{
\nchar ch=s.charAt(i);
\nif(Character.isUpperCase(ch))
\n{
\ns1=s1+Character.toLowerCase(ch);
\n}
\nelse if(Character.isLowerCase(s.charAt(i)))
\n{
\ns1=s1+Character.toUpperCase(ch);
\n}
\nelse
\n{
\ns1=s1+s.charAt(i);
\n}
\n}
\ns=s1,
\nSystem.out.println(s);
\n}
\n}<\/p>\n

Question 6:<\/strong>
\nDefine a class and store the given city names in a single dimensional array. Sort these names in alphabetical order using the Bubble Sort technique only.
\nINPUT : Delhi, Bangalore, Agra, Mumbai, Calcutta
\nOUTPUT : Agra, Bangalore, Calcutta, Delhi, Mumbai \u00a0[15]<\/strong><\/p>\n

Answer:<\/strong>
\nimport java.io.*;
\nclass city
\n{
\npublic static void main( )
\n{
\nString [ ] name = {\u201cDelhi\u201d, \u201cBangalore\u201d, \u201cAgra\u201d, \u201cMumbai\u201d, \u201cCalcutta\u201d};
\nint i, j;
\nString temp;
\n\/\/bubble sort begins
\nfor(i=0; i<4; i++)
\n{
\nfor (j=0; j<4\u2014i; j++)
\n{
\nif((name[j].compareTo(name[j+1]))>0)
\n{
\ntemp=name[j];
\nname[j]=name[j+1];
\nname[j+1]=temp;
\n}
\n}
\n}
\n\/\/printing
\nfor(i=0; i<5; i++)
\n{
\nSystem.out.println(name [i]);
\n}
\n}
\n}<\/p>\n

Question 7:<\/strong>
\nWrite a menu driven class to accept a number from the user and check whether it is a Palindrome or a Perfect number.
\n(a) Palindrome number\u2014 (a number is a Palindrome which when read in reverse order is same as read in the right order)
\nExample : 11, 101, 151 etc.
\n(b) Perfect number\u2014 (a number is called Perfect if it is equal to the sum of its factors other than the number itself.) Example : 6 = 1 + 2 + 3 \u00a0[15]<\/strong><\/p>\n

Answer:<\/strong>
\nimport java.io.*;
\nclass number
\n{
\npublic static void main()throws IOException
\n{
\nInputStreamReader IR=new InputStreamReader(System.in);
\nBufferedReader br=new BufferedReader(IR);
\nSystem.out.println(\u201cPress 1 for Palindrome Number\u201d);
\nSystem.out.println(\u201cPress 2 for Perfect Number\u201d);
\nSystem.out.println(\u201cEnter your choice\u201d);
\nint ch=Integer.parseInt(br.readLine());
\nint num1, num2;
\nswitch(ch)
\n{
\ncase 1:
\nSystem.out.println(\u201cEnter the Number :\u201d);
\nnum1=Integer.parseInt(br.readLine());
\nint rev=0;
\nint x=num1; \/\/duplicate copy
\nwhile (x!=0)
\n{
\nrev=rev*10+x%10;
\nx=x\/10;
\n}
\nif(rev==num1)
\n{
\nSystem.out.println(\u201cThe number is Palindrome\u201d);
\n}
\nelse
\n{
\nSystem.out.println(\u201cThe Number is Not Palindrome\u201d);
\n}
\nbreak;
\ncase 2:
\nSystem.out.print(\u201cEnter the Number :\u201d);
\nnum2=Integer.parseInt(br.readLine());
\nint sum=0;
\nfor(int i=1; i<num2; i++)
\n{
\nif(num2%i==0)
\n{
\nsum=sum+i;
\n}
\n}
\nif(sum==num2)
\n{
\nSystem.out.println(\u201cThe Number is Perfect Number\u201d);
\n}
\nelse
\n{
\nSystem.out.println(\u201cTbe Number is Not a Perfect Number\u201d);
\n}
\nbreak;
\ndefault:
\nSystem.out.println(\u201cWrong Choice! Run the program again\u201d);
\nbreak;
\n}
\n}
\n}<\/p>\n

Question 8:<\/strong>
\nWrite a class with the name volume using function overloading that computes the volume of a cube, a sphere and a cuboid.
\nFormula<\/strong>
\nvolume of a cube (vc) = s*s*s
\nvolume of a sphere (vs) = 4\/3* \u03c0* r* r*r (where \u03c0 = 3.14 or 22\/7)
\nVolume of a cuboid (vcd) = l* b* h \u00a0[15]<\/strong><\/p>\n

Answer:<\/strong>
\nclass vol
\n{
\nvoid volume(int s)
\n{
\nint vc=s*s*s;
\nSystem.out.println(\u201cThe Volume of a Cube is\u201d+vc);
\n}
\nvoid volume(double r)
\n{
\ndouble vs=(4\/3.0)*3.15*r*r*r;
\nSystem.out.println(\u201cThe Volume of Sphere is\u201d+vs);
\n}
\nvoid volume(int l, int b, int h)
\n{
\nint vcd=l*b*h;
\nSystem.out.println(\u201cThe Volume of a Cuboid is\u201d+vcd);
\n}
\n}<\/p>\n

Question 9:<\/strong>
\nWrite a program to calculate and print the sum of each of the following series: [15]<\/strong>
\n\"icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-3\"
\nAnswer:<\/strong>
\n(a)<\/strong>
\nclass series
\n{
\npublic static void main()
\n{
\nint s=0;
\nfor(int i=2; i<=20; i=i+2)
\n{
\nif(i%4==0)
\n{
\ns=s-i;
\n}
\nelse
\n{
\ns=s+i;
\n}
\n}
\nSystem.out.println(\u201cThe Sum of the Series is\u201d+s);
\n}
\n}<\/p>\n

(b)<\/strong> class series
\n{
\npublic static void main() throws IOException
\n{
\nBufferedReader br=new BufferedReader(new InputStreamReader(System.in));
\nSystem.out.println(\u201cEnter the value of x:\u201d);
\nint x = Integer.parseInt(br.readLine( ));
\ndouble s=0;
\nfor(int i=2; i<=20; i=i+3)
\n{
\ns=s+(double)x\/i;
\n}
\nSystem.out.println(\u201cThe Sum of the Series is\u201d+s);
\n}
\n}<\/p>\n

ICSE Class 10 Computer Applications Previous Years Question Papers<\/a><\/h4>\n","protected":false},"excerpt":{"rendered":"

ICSE Computer Applications Previous Year Question Paper 2008 Solved for Class 10 ICSE Paper 2008 COMPUTER APPLICATIONS (Two Hours) Answers to this Paper must be written on the paper provided separately. You will not be allowed to write during the first 15 minutes. This time is to be spent in reading the question paper. The […]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[3034],"tags":[],"yoast_head":"\nICSE Computer Applications Question Paper 2008 Solved for Class 10 - A Plus Topper<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ICSE Computer Applications Question Paper 2008 Solved for Class 10\" \/>\n<meta property=\"og:description\" content=\"ICSE Computer Applications Previous Year Question Paper 2008 Solved for Class 10 ICSE Paper 2008 COMPUTER APPLICATIONS (Two Hours) Answers to this Paper must be written on the paper provided separately. You will not be allowed to write during the first 15 minutes. This time is to be spent in reading the question paper. The […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/\" \/>\n<meta property=\"og:site_name\" content=\"A Plus Topper\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aplustopper\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-15T04:30:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-16T04:57:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2019\/09\/icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"sastry\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.aplustopper.com\/#organization\",\"name\":\"Aplus Topper\",\"url\":\"https:\/\/www.aplustopper.com\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/aplustopper\/\"],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/#logo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg\",\"contentUrl\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg\",\"width\":1585,\"height\":375,\"caption\":\"Aplus Topper\"},\"image\":{\"@id\":\"https:\/\/www.aplustopper.com\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.aplustopper.com\/#website\",\"url\":\"https:\/\/www.aplustopper.com\/\",\"name\":\"A Plus Topper\",\"description\":\"Improve your Grades\",\"publisher\":{\"@id\":\"https:\/\/www.aplustopper.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.aplustopper.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2019\/09\/icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1.png\",\"contentUrl\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2019\/09\/icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1.png\",\"width\":311,\"height\":104,\"caption\":\"icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#webpage\",\"url\":\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/\",\"name\":\"ICSE Computer Applications Question Paper 2008 Solved for Class 10 - A Plus Topper\",\"isPartOf\":{\"@id\":\"https:\/\/www.aplustopper.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#primaryimage\"},\"datePublished\":\"2023-02-15T04:30:10+00:00\",\"dateModified\":\"2023-02-16T04:57:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.aplustopper.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ICSE Computer Applications Question Paper 2008 Solved for Class 10\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#webpage\"},\"author\":{\"@id\":\"https:\/\/www.aplustopper.com\/#\/schema\/person\/751f801bee0eddc87d6e9b7d45a8feca\"},\"headline\":\"ICSE Computer Applications Question Paper 2008 Solved for Class 10\",\"datePublished\":\"2023-02-15T04:30:10+00:00\",\"dateModified\":\"2023-02-16T04:57:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#webpage\"},\"wordCount\":1786,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.aplustopper.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2019\/09\/icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1.png\",\"articleSection\":[\"ICSE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.aplustopper.com\/#\/schema\/person\/751f801bee0eddc87d6e9b7d45a8feca\",\"name\":\"sastry\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d97564d7fa0c644fd231068e890b0736?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d97564d7fa0c644fd231068e890b0736?s=96&d=mm&r=g\",\"caption\":\"sastry\"},\"url\":\"https:\/\/www.aplustopper.com\/author\/sastry\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"ICSE Computer Applications Question Paper 2008 Solved for Class 10 - A Plus Topper","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/","og_locale":"en_US","og_type":"article","og_title":"ICSE Computer Applications Question Paper 2008 Solved for Class 10","og_description":"ICSE Computer Applications Previous Year Question Paper 2008 Solved for Class 10 ICSE Paper 2008 COMPUTER APPLICATIONS (Two Hours) Answers to this Paper must be written on the paper provided separately. You will not be allowed to write during the first 15 minutes. This time is to be spent in reading the question paper. The […]","og_url":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/","og_site_name":"A Plus Topper","article_publisher":"https:\/\/www.facebook.com\/aplustopper\/","article_published_time":"2023-02-15T04:30:10+00:00","article_modified_time":"2023-02-16T04:57:22+00:00","og_image":[{"url":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2019\/09\/icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1.png"}],"twitter_card":"summary","twitter_misc":{"Written by":"sastry","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/www.aplustopper.com\/#organization","name":"Aplus Topper","url":"https:\/\/www.aplustopper.com\/","sameAs":["https:\/\/www.facebook.com\/aplustopper\/"],"logo":{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/#logo","inLanguage":"en-US","url":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg","contentUrl":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg","width":1585,"height":375,"caption":"Aplus Topper"},"image":{"@id":"https:\/\/www.aplustopper.com\/#logo"}},{"@type":"WebSite","@id":"https:\/\/www.aplustopper.com\/#website","url":"https:\/\/www.aplustopper.com\/","name":"A Plus Topper","description":"Improve your Grades","publisher":{"@id":"https:\/\/www.aplustopper.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.aplustopper.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#primaryimage","inLanguage":"en-US","url":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2019\/09\/icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1.png","contentUrl":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2019\/09\/icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1.png","width":311,"height":104,"caption":"icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1"},{"@type":"WebPage","@id":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#webpage","url":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/","name":"ICSE Computer Applications Question Paper 2008 Solved for Class 10 - A Plus Topper","isPartOf":{"@id":"https:\/\/www.aplustopper.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#primaryimage"},"datePublished":"2023-02-15T04:30:10+00:00","dateModified":"2023-02-16T04:57:22+00:00","breadcrumb":{"@id":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.aplustopper.com\/"},{"@type":"ListItem","position":2,"name":"ICSE Computer Applications Question Paper 2008 Solved for Class 10"}]},{"@type":"Article","@id":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#article","isPartOf":{"@id":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#webpage"},"author":{"@id":"https:\/\/www.aplustopper.com\/#\/schema\/person\/751f801bee0eddc87d6e9b7d45a8feca"},"headline":"ICSE Computer Applications Question Paper 2008 Solved for Class 10","datePublished":"2023-02-15T04:30:10+00:00","dateModified":"2023-02-16T04:57:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#webpage"},"wordCount":1786,"commentCount":0,"publisher":{"@id":"https:\/\/www.aplustopper.com\/#organization"},"image":{"@id":"https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#primaryimage"},"thumbnailUrl":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2019\/09\/icse-previous-papers-with-solutions-for-class-10-computer-applications-2008-1.png","articleSection":["ICSE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.aplustopper.com\/icse-previous-papers-solutions-class-10-computer-applications-2008\/#respond"]}]},{"@type":"Person","@id":"https:\/\/www.aplustopper.com\/#\/schema\/person\/751f801bee0eddc87d6e9b7d45a8feca","name":"sastry","image":{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/d97564d7fa0c644fd231068e890b0736?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d97564d7fa0c644fd231068e890b0736?s=96&d=mm&r=g","caption":"sastry"},"url":"https:\/\/www.aplustopper.com\/author\/sastry\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/6692"}],"collection":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/comments?post=6692"}],"version-history":[{"count":1,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/6692\/revisions"}],"predecessor-version":[{"id":155930,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/6692\/revisions\/155930"}],"wp:attachment":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/media?parent=6692"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/categories?post=6692"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/tags?post=6692"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}