Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
8 views

Computer Applications

Uploaded by

aneeshms2007
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
8 views

Computer Applications

Uploaded by

aneeshms2007
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
You are on page 1/ 4
CARMEL ENGLISH SCHOOL Padmanabhanagar,Bengaluru ~70 PREPARATORY EXAMINATION-2022 -23 STANDARD: X [ ICSE] SUBJECT: COMPUTER APPLICATIONS Time:? hr: ‘MaxMarks:100 ‘Answers to this Paper must be written on the paper provided separately. You will not be allowed 10 write during the first ISminutes. This time isto be spent in reading the question paper. The time given at the head of this paper is the time allowed for writing the answers. Section A(10 marks) Attempt all the questions Question ‘Choose the correct answers to the questions from the given options. (Do not copy the question, Write the correct answer only.) (20) 1) Which of the following is a valid java keyword? a) int ') System. ~ String 4) All of the above 2) double x=150.50; Which of the following methods can be used to convert x to String object. a) Double.parseDouble() ») String. valueOR) ©) Double.toString() @) Both b and c 3) The variables x and y in the statement, void cale( int x, int y) are called as_ a) Actual Parameters b) Instance variables ©) Static variables 4) Formal Parameters 4) Choose the correct output for th String s1="provide", s2="prope System.out.printin(s1.compareTo(s2)); a6 br o-6 dl 5) What is the maximum value that the following statement will evaluate to? X = (int)(Math.random()*6); following code. as b) 5.0 6 60 > 6) Memory space allocated for float data type i * bits. a4 b) 32 ©)8 d) 64 7) The return type of trim() function is ) boolean b) int ) double 4) String 8) The appropriate statement to extract the last character of a steing Str is, 4) char c= Str.chart(Str.length()); ») char c= Str.charAt(Str.length( )-1); ¢) char e= Str.charAt(Str-length( )-2); 4) char c= Str.charAt(Strlength-1); 9) The output of the following code is__. char af] = {65/2',b"}; System.out.printin(af !}+af2]); A a) 195 b) ab ©) 162 4d) error 10) Converting int variable to an object of Integer class is an example of a) Type casting ) autoboxing ©) unboxing, 4) None of the above 11) A data member declared as public is accessible 8) within the class ») within the package c) outside the package d) All of the above 12) is an exit-controlled loop. 2) for loop ) while loop c) do..while loop d) All of the above 13) The return type of Math.round() is__ a) double b) int c)long — d) both bande 14)____ is the result of "Dedication" substring (4,8). a) catio b) icati c) cati d) icat 15) The principle that is implemented through function overloading 2) abstraction ») encapsulation ) polymorphism 4d) inheritance 16)___ is the output on executing the following code. int a= -7; if{a>10) if{a % 3 == 0) System.out.printin(Math.sqrt(25)); else System.out printin(Math.cbri(8)); else System.out printin(Math.ceil(-17.8)); a)5.0 b) 2.0 ©) 170 4) error 1» operator has the higher precedence from the following list of operators. 1 ay+ b< °) d)% 18) Determine how many times the following loop will be executed and state the output. int sum=0: for(int i= 1:i<=5;i++) { sumt=+4i; 3 System. out printin(sum); a) 5 times of execution & the output is 15 __b) 3 times of execution and the output is 12 ©) 4 times of execution and the output is 16d) None of the above 19)__ is the output on executing the following statement:- System.out.printIn("run".compareTo Ignore Case("RUNNER")); a3 b)-32 b)-3 4) 32 20) Wrapper classes are defined in the package. a) lang b) util c)default d) io Question 2 1) Define Operator. Give two examples for logical operators 2) Give the memory size of the following(in terms of bytes). a) String a= "run"; b) Boolean b{] ~ new boolean{5}; 3) Write the equivalent java expression for the following:- 2) (2) 12] 4) Give the output for the following:- 2] a) int x=1500, y=500; X=XHH2 + yt; System.out printin (x+"\n"+y); b) String x="125", y="2.345"; ‘System. out.printin (Integer. valueOf(x)/2); ‘System. out.printin(x.ends With("S")&&y.endsWith("5")); 2) ©) int a=60, result; (1) result= (a>= 80)24:((a>=60)26:8); System.out printin(result); 5) Name the keyword:- RI a) That forces early iteration of the loop. b) That is used to define symbolic constants in the program. 6) Rewrite using while loop: 22] for(int i1i<=S;i+4)5 System.out printin(“Hello”); 7) Observe the following code and answer the questions given below:~ Execute(char a) { x=a; } a) Write the statement to invoke the above uni tw b) Name the class name of the above unit and its data member. Qi 8) Rewrite the following code using if else if statement:- 2 switch(ratings) { case 1 case 2: amt = 2000; break; case 3: amt = 4000; break; default :System.out.printin(“Invalid”); 3 SECTION-B (60Marks) Attempt any four questions The answers in this section should consist of the programs in either BlueJ environment or ‘any program environment with Java as the base. Each program should be written using Variable description / Mnemonic codes such that the logic of the program is clearly depicted. Flowcharts and algorithms are no required. Question3 [15] Define a class cyber having the following description: Data members/Instance variables String name- user’s name int hours- number of hours worked int bill- amount to be paid Member functions: a) parameterized constructor — to initialize the user's name and the number of hours worked. ’b) void calculate()- to calculate the amount to be paid based on the following criteria: Number of hours worked Amount/hr (in Rs) For the first 2 hours 20 For the next 3 hours 10 For the remaining hours 8 ©) void display()- to display the bill in the following format: SLNo Username ‘Time Amount Write a main () method to create an object for the above class and call the functions. Question 4 {15} Design a class with the following overloaded functions:- a) void perform(int n) To display the sum of all odd factors of the argument n ifn is an odd number otherwise display product of even factors of n. b) void perform(int m, int n) To display the sum of m! and n! Hint: 4! = 1*2*3*4 ©) void perform(int m, int n, int q) ‘To display the maximum of the three numbers using Math class method. ‘Question § 115) Write a menu driven to perform the following: a) To display the given series 9, 99, 8, 89, 7, 79, 6, 69, 5, 59, 4, 49, 3, 39, 2, 29, 1, 19 b) To evaluate the series S=24+4+6+.......upto n terms ‘Question 6 [15] Write a program to accept 30 integer elements in an array and perform the following:~ a) Sum of the last 10 elements b) Count of negative numbers present in the first 10 elements. Question 7 [1s7~ Write a program to store the given 10 country names in an array and arrange in the reverse alphabetical order using bubble sort. Also display the number of country names that has at least $ alphabets in it. India, Bangladesh, Nepal, Pakistan, Canada, Egypt, Spain, Zimbabwe, Russia, Hungary uestion 8 {15} Write a program to accept a string(str)and perform the following:- 1) Display the number of double letter sequence characters present in it, For example:- The number of double sequence characters in grasshopper is 2. 2) Create a new string by converting all the alphabets present in odd index position to uppercase using wrapper class method. “EE +

You might also like