Previous Year Solved Question Paper of
Previous Year Solved Question Paper of
Previous Year Solved Question Paper of
i. Mr. Mahesh is telling a story to all his students. He made it an interesting activity by involving all
the students. Identify the skill being developed by the teacher in students:
1. Problem solving
b) Active listening
c) Trust building
d)Writing Skills
Ans. : b) Active listening
b) Dreamer
c)Personality
d)Creativity
Ans. : Personality
iii. Janvi is feeling extremely nervous and worried because she believes that other people do not
like her or are trying to harm her.
Identify the personality disorder from the following:
a) AntiSocial
b) Schizoid
c) Paranoid
d) Narcissistic .doc
Ans. : c) Paranoid
b) .odx
c) .ODP
d) .odc
Ans. : .odc
v. Entrepreneurial behavior requires certain knowledge, skills or personality profile and it is called
as
a) Fear of failure
b) Entrepreneurial Competence
c) Entrepreneurial Capacity
d) Entrepreneurial Training
Ans. : b) Entrepreneurial Competence
ii __________ is a video capture/processing utility for 32-bit and 64-bit Windows platforms
(98/ME/NT4/2000/XP/Vista/7)
a) Adobe
b) Virtual Dub
c) Windows Movie Maker
d) T@b Zs4
Ans. : VirtualDub
iii ____________ is an offline playback, editing, encoding, animation and visual effects tool based
on the Jahshaka technology that allows you to create professional digital media on your desktop.
a) Adobe
b) Windows Movie Maker
c) Cinefx
d) Wax
Ans. : c) Cinefx
iv Blender is the free open source 3D content creation suite, available for all major operating
systems under the ____________________.
a) GNU General Public License
b) Proprietary License
c) Unix License
d) Public License
Ans. : GNU General Public License
v _______________ is the complete 3D movie making software application for all abilities.
a) PowerPoint
b) Document Writer
c) Movie Storm
d) PaintBrush
Ans. : c) Moviestorm
vi ___________ is the media that uses multiple forms of information content and information
processing
a) Multimedia
b) Image
c) Audio
d) Light
Ans. : Multimedia
i The most common way to discover the type of a file, is to look at the ____________
a) File name
b) File extension
c) Directory of file
d) File size
Ans. : b) File Extension
iii A _____________ is one composed of a field of pixels, each characterized by a color, and is
usually created in paint programs
a) 3-d image
b) Raster Image
c) Vector Image
d) Curved image
Ans. : b) Raster Image
v A _______ file is a standard Macintosh image file format and can be either a raster image or a
vector image, depending on the program that created it.
a) Bmp
b) Jpeg
c) Pdf
d) Pict
Ans. : d) Pict
vii ________________ is a wizard program for Windows and Mac that helps users easily insert
video to the website or blog, in a few clicks without writing a single line of code.
a) HTML
b) Video LightBox
c) PaintBrush
d) Window Movie Maker
Ans. : Video LightBox
i The ____________ tag is the web standard for embedding content on to a web page
a) <p>
b) <object>
c) <html>
d) <content>
Ans. : b) <object>
ii ________ is called as Bitwise Shift Right with Zero Operator, the bits shifted in on the left are
always zero.
a) <<
b) <<<
c) >>>
d) >>
Ans. : c) >>>
iii A ___________ is a classification of the type of data that a variable or object can hold.
a) Datatype
b) Number
c) Variable
d) Object
Ans. a) Data Type
v Built-in object called ______ is used to handle more advanced mathematical functions and
constants.
a) Calculus
b) Maths
c) math
d) Sum
Ans. c) math
Q. 9 Mohit has to prepare a report of data of sales. The data sheet is prepared in Open Office Calc.
He has to select data from various zones and then has to display data in an order. Explain features
of Calc that will help him arrange data in an order. Also suggest an appropriate function in Calc to
view the highest sales in a zone.
Ans.: Sorting rearranges the range of cells but filtering only hides temporarily the rows/columns you
do not want.
Max( ) : The MAX function is used to find the maximum of numbers in a given range of cells.
Q. 10 Explain any two competencies that can be developed through training, experience and
guidance in a budding entrepreneur
Ans. : Two competencies that can be developed through training in a budding entrepreneur are :
1. Seeking and Acting on Opportunity: An entrepreneur is always on the look-out or searching for
opportunity and is ready to exploit it in the best interests of the enterprise.
2. Persistence: An entrepreneur is never disheartened by failures and keeps trying, adapting and
iterating to overcome obstacles that come in the way of achieving goals.
Q. 12 WAX can create Special effects and can work in two modes. Explain the two modes.
Ans. : Wax can create 2D & 3D special effects and can work in two modes –
i) as a standalone application which would appeal for home users/beginners, and as a “plug-in” to
video editors/NLEs which would be more useful for professional editors
Q. 14 Sunil has written following code to store subjects in an array and display the total number of
subjects in the array. His code is not running properly. Identify and underline the syntax errors in
the following code and write the corrected code:
function countsubs( )
{
Var Subject = [“Eng” , “Math”, “Science” , “Hindi”];
Document.write (subject.length)
}
Ans. :
function countsubs( )
{
var Subject = [“Eng” , “Math”, “Science” , “Hindi”];
document.write(Subject.length);
}
Answer. any 2 out of the given 3 questions in 30– 50 words each (3 x 2 = 6 marks)
Q. 19 Write a function in JavaScript which accept three numbers as arguments and display the
greatest number
Ans. :
function greatest(n1, n2, n3)
{ if (n1>n2)
If (n1>n3)
alert(“greatest number is : “+ n1);
else
document.write(“greatest number is : “ + n3);
else if ( n2>n3)
document.write(“greatest number is : “ + n2);
else
document.write(“greatest number is : “ + n3);
}
Answer any 3 out of the given 5 questions in 50– 80 words each (4 x 3 = 12 marks)
Q. 21 Shivani has to include an audio file in her web page repeatedly. Help her by explaining the
use of embed tag. Describe the attributes in embed tag to set an audio file, set its size and run the
file repeatedly.
Ans. : Embed tag can be used for incorporating a movie/ audio file in a web page. src stands for
“source.” It tells the browser where to go to get the audio file.
Height /Width deals with the plug-ins control panel size on the page. The control panel at the top of
the page was giving a size of 145 pixels wide by 55 pixels high.
Loop : set its value to true to run it repeatedly
Q. 22 Write a program in JavaScript to
– Accept first name and last name from the user.
– Display number of characters in his first name
– Display current date, his name as initial letter of first name and complete
last name ( hint: it should display K. Kumar for name Krishan Kumar)
Solution :
<html>
<body>
<script >
f=prompt(“enter first name “);
l=prompt(“enter last name “);
d= new Date ();
document.write(“ today’s date : “, d);
document.write(“length of first name is “, f.length);
document.write(“\n Your name is “,f[0]+”. ” +l);
</script>
</body>
</html>
Q. 23 a)Write a program in JavaScript to display a week day randomly from the array of days of
week given below: dow=[“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”,
“Sunday” ]
Ans. :
<html><body><script > (2)
n=Math.ceil(Math.random()*7)-1
dow=[“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”,
“Sunday” ]
document.write( ” Day “, dow[n] );
</script></body></html>
b) Write code in JavaScript to accept a string from the user and display the first
occurrence of word “good” in the entered string. (2)
Ans. :
<html>
<body>
<script >
str=prompt(” enter a string : “);
document.write(str.match(“good”));
document.write(“<br>”, str.indexOf(“good”));
</script></body></html>
b) Write code snippets in JavaScript to accept height of 5 students in an array and display the
tallest and the smallest height of student.
Ans. :
<html>
<body>
<script >
var i = 0;
str=new Array();
while (i<5)
{
str[i]=parseInt(prompt(” enter the height : “));
i++;
}
str.sort();
document.write(“smallest “ , str[0]);
document.write(“Tallest “, str[4]);
</script></body></html>