Spandanam: A blog for Kerala High School Students and Teachers to help them providing Information.

Sunday, September 19, 2021

Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF Download

Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF Download: Students of Standard 12 can now download Plus Two Computer Application Notes Chapter 2 Arrays question and answers pdf from the links provided below in this article. Plus Two Computer Application Notes Chapter 2 Arrays Question and Answer pdf will help the students prepare thoroughly for the upcoming Plus Two Computer Application Notes Chapter 2 Arrays exams.


Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers

Plus Two Computer Application Notes Chapter 2 Arrays question and answers consists of questions asked in the previous exams along with the solutions for each question. To help them get a grasp of chapters, frequent practice is vital. Practising these questions and answers regularly will help the reading and writing skills of students. Moreover, they will get an idea on how to answer the questions during examinations. So, let them solve Plus Two Computer Application Notes Chapter 2 Arrays questions and answers to help them secure good marks in class tests and exams.


Board

Kerala Board

Study Materials

Question and Answers

For Year

2021

Class

12

Subject

Computer Application

Chapters

Computer Application Notes Chapter 2 Arrays

Format

PDF

Provider

Spandanam Blog


How to check Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers?

  1. Visit our website - https://spandanamblog.com
  2. Click on the 'Plus Two Question and Answers'.
  3. Look for your 'Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers'.
  4. Now download or read the 'Class 12 Computer Application Notes Chapter 2 Arrays Question and Answers'.

Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF Download

We have provided below the question and answers of Plus Two Computer Application Notes Chapter 2 Arrays study material which can be downloaded by you for free. These Plus Two Computer Application Notes Chapter 2 Arrays Question and answers will contain important questions and answers and have been designed based on the latest Plus Two Computer Application Notes Chapter 2 Arrays, books and syllabus. You can click on the links below to download the Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF. 

Question 1.
From the following which is not true for an array
(a) It is easy to represent and manipulate array variable
(b) Array uses a compact memory structure
(c) Readability of program will be increased
(d) Array elements are dissimilar elements
Answer:
(d) Array elements are dissimilar elements.

Question 2.
Consider the following declaration. int mark (50).
Is it valid? If no give the correct declaration.
Answer:
It is not valid. The correct declaration is as follows, int mark[50]. Use square brackets instead of parenthesis.

Question 3.
Consider the following declaration. int mark[200].
The index of the last element is____.
Answer:
199.

Question 4.
Consider the following declaration int mark[200]
The index of the first element is_____
Answer:
0.

Question 5.
Consider the following int age[4]={15, 16, 17, 18};
From the following which type of initialisation is this.
(a) direct assignment
(b) along with variable declaration
(c) multiple assignment
(d) None of these
Answer:
(b) along with variable declaration

Question 6.
From the following which is used to read and display array elements
(а) loops
(b) if
(c) switch
(d) if else ladder
Answer:
(a) loops

Question 7.
Write down the corresponding memory consumption in bytes

  1. int age[10]=_____
  2. charname[10] =_____
  3. intage[10][10]=____

Answer:

  1. 4*10 = 40 bytes (4 bytes for one integer)
  2. 1*10=10 (one byte for each character)
  3. 4*10*10 = 400 (4 * 100 elements)

Question 8.
Consider the following intage[4] = {12, 13, 14};
cout<<age[3]; What will be the output?
(а) 14
(b) 12
(c) 13
(d) 0
Answer:
(d) 0

Question 9.
The elements of 2-dimensional array can be read using_____loop
Answer:
nested loop.

Question 10.
_____is the process of reading / visiting elements of an array
Answer:
traversal.

Question 11.
Anjaly wants to read the 10 marks that already stored in an array and find the total. This process is known as_____
(a) insertion
(b) deletion
(c) traversal
(d) linear search
Answer:
(c) traversal

Question 12.
The elements of an array of size ten are numbered from____to___.
Answer:
0 to 9.

Question 13.
Element mark[6] is which element of the array?
(a) The sixth
(b) the seventh
(c) the eighth
(d) impossible to tell
Answer:
(b) the seventh

Question 14.
When a multidimensional array is accessed, each array index is
(a) Separated by column.
(b) Surrounded by brackets and separated by commas.
(c) Separated by commas and surrounded by brackets.
(d) Surrounded by brackets.
Answer:
(d) surrounded by brackets

Question 15.
Write a C++ statement that defines a string variable called ‘name’ that can hold a string of upto 20 characters.
Answer:
char name[21];

Question 16.
_____is a collection of elements with same data type
Answer:
Array

Question 17.
Following are some of the statements regarding array. Identify the correct statement.
(a) Array is a collection of elements of same data type.
(b) Array cannot be initialised during the time of declaration.
(c) Array allocates continuous memory.
(d) An array element can be accessed using index or subscript.
Answer:
(a) Array is a collection of elements of same data type.

Question 18.
Which of the following is the correct declaration of an array?
(a) int a(10);
(b) int 10[a];
(c) a[1] int;
(d) inta[10];
Answer:
(d) int a[10];

Question 19.
Which is the last subscript of the array int m[25]?
(a) 24
(b) 25
(c) 0
(d) 26
Answer:
(a) 24

Question 20.
The memory size of the data type float is 4 bytes. What is the total bytes required for the array declaration float salary[10];?
(a) 10
(b) 4
(c) 40
(d) 400
Answer:
(c) 4*10 = 40.

Question 21.
int num[100]; The above statement declares an array named num that can store maximum_____integer numbers.
(a) 99
(b) 100
(c) 101
(d) Any number
Answer:
(b) 100

Question 22.
If int a[10]; is array, then which element of the array will be referenced as a[4].
Answer:
Fifth element.

Question 23.
Consider the following array declaration int A[ ] = {4, 5, 8}; int B[ ]={2, 10};
Write a valid C++ statement for finding the difference between the last element of the array ‘B’ and the first element of the array ‘A’.
Answer:
B[1] – A[0]; ORA[0] – B[1];

Question 24.
Consider the following code and predict the output.
int sum=0;
int a[5] = {1, 2, 3, 4, 5};
for(i=0;i<4;++i)
{
sum=sum+a[i];
}
cout<<sum;
Answer:
10.

Question 25.
Which data type is used to declare a variable to hold string data?
Answer:
The data type char is used for this.

Question 26.
The terminating character of string array is______
Answer:
\0 or NULL character.

Question 27.
Write a statement for storing the string “NO SMOKING” using a character array with name ‘ARR’
of minimum size.
Answer:
char APR[11] = ”NO SMOKING”;

Plus Two Computer Application Arrays Two Mark Questions and Answers

Question 1.
Given some array declaration. Pick the odd man out.
Float a[+40], int num[0-10], double [50]. char name[50], amount[20] of float.
Answer:
char name[50]. It is a valid array decalaration the remaining are not valid.

Question 2.
Whether the statement char text[] = “COMPUTER”; is True / False ? Justify.
Answer:
It is a single-dimensional array. If the user doesn’t specify the size the operating system allocates the number of characters + one (for null character for text) bytes of memory. So here OS allocates 9 bytes of memory.

Question 3.
Suppose you are given Total mark of 50 students in a class

  1. How will you store these values using ordinary variable?
  2. Is there any other efficient way to store these values? Give reason

Answer:
We have to declare 50 variables individually to store total marks of 50 students. It is a laborious work. Hence we use array, it is an efficient way to declare 50 variables.

With a single variable name we can store multiple elements. Eg: int mark[50]. Here we can store 50 marks. The first mark is in mark[0], second is in mark[1], …etc the fiftieth mark is in mark[49].

Question 4.
Consider the statement charstr[ ] = “PROGRAM” What will be stored in last location of this array. Justify
Answer:
The last location is the null character(\0) because each string must be appedend by a null character.

Question 5.
Explain the needs for arrays
Answer:
Array is collection of same type of elements. With the same name we can store more elements. The elements are distinguished by using its index or subscript. To store 50 marks of 50 students we have to declare 50 variables, it is a laborious work.

Hence the need for arrays arise. By using array this is very easy as follows int mark[50]. Here the index of first element is 0, then 1, 2, 3, etc upto 49.

Question 6.
Consider the following code and predict the output.
int a[5]= {6, 8, 10,20,40};
cout<<“\n”<<a[3];
cout<<“\n”<<a[1]+1[4];
Answer:
20(The fourth element).
48(Sum of second element 8 and fifth element 40, i.e 8 + 40 =48).

Question 7.
Suppose you need to store the value 10, 20, 30, 40 and 50 into an array. Write different methods to do this problem. Answer:
Method 1:
int a[5]={10, 20, 30, 40, 50};

OR

int a[ ]={10, 20, 30, 40, 50};

Method 2:
int a[5];
a[0]=10;
a[1]=20;
a[2]=30;
a[3]=40;
a[4]=50;

Question 8.
What would be the appropriate array declaration to store the following?

  1. Name of a student
  2. Age of 20 students
  3. Mark of 6 subject
  4. Average mark of 10 students in 5 subjects

Answer:

  1. charname[20];
  2. intage[20];
  3. intmark[6];
  4. float mark[10];

Question 9.
Consider the following code and predict the output.
int A[5] = {11, 12, 13, 14, 15};
int i;
for (i=4;i>=0;–i)
{
cout<<“\n”<<A[i];
}
Answer:
It prints the array in reverse order as follows.
15
14
13
12
11.

Question 10.
Predict the output of the following code segment.
int K[ ] = {1, 2, 3, 4};
for (int i=0; i<4; i++)
cout<<K[i] * K[i]<<“\t”;
Answer:
The output is as follows
1 4 9 16
Hint: 1(1*1) 4(2*2) 9(3*3) 16(4*4).

Question 11.
Consider the following code and predict the output.
Justify your answer.
int A[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int sum=0, i;
for(i=0;i<10;++i)
{
if (A[i]%2==0)
{
sum=sum+A[i];
}
}
cout<<“\nSum=”<<sum;
Answer:
The output is 30. That is sum of all even numbers in the array.

Question 12.
Predict the output of the following C++ statement.
char str[8] = “WELCOME”;
cout<<“\n’’<,str[3];
cout<<“\n”<<str;
Answer:
The output is as follows
C(The fourth character)
WELCOME.

Question 13.
How many bytes will be allocated in the memory for storing the string “MY SCHOOL”? Justify your answer.
Answer:
A total of 10 bytes. 9 bytes is used to store 9 characters in the string MY SCHOOL(including 1 byte for space) and 1 byte is used to store the NULL character.

Plus Two Computer Application Arrays Three Mark Questions and Answers

Question 1.
Total mark of 50 students in a class are given in an array. A bonus of 10 marks is awarded to all of them. Write the program code for making such a modification.
Answer:
# include
using namespace std;
int main()

Question 2.
Write the program code for counting the number of vowels from your school name
Answer:
# include
# include
# include
using namespace std;
int main()

Question 3.
Write the program code for counting the number of words from the given string.” Directorate of Higher Secondary Examination”
Answer:
# include
# include
using namespace std;
int main()

OR

(Program for more than one space between words)
# include
# include
# include
using namespace std;
int main()

Question 4.
Given a word like “ECNALUBMA” Write the program code for arranging it in into a meaningful word Answer:
# include
# include
# include
using namespace std;
int main()

Question 5.
Explain different types of arrays.
Answer:
1. Single dimensional:
It contains only one index or subscript. The index starts from 0 and ends with size-1.
Eg. int n[50]; charname[10];

2. Multidimensional:
It contains more than one index or subscript. The two dimensional array contains two indices, one for rows and another for columns. The row index starts from 0 and end at row size-1 and column index starts at 0 and ends at colunn size-1.
Eg. int n[10][10] can store 10 * 10 =100 elements. The index of the first element is n[0][0] and index of the 100th element is n[9][9].

Question 6.
Write a program to read the 5 marks of a students and display the marks and total. Answer:
# include
using namespace std;
int main()

Question 7.
Explain different array operations in detail.
Answer:

  1. Traversal:- All the elements of an array is visited and processed is called traversal
  2. Search:- Check whether the given element is present or not
  3. Sorting:-Arranging elements in an order is called sorting.

Question 8.
Given a word “COMPUTER”, write a C++ program to reverse the word without using any string functions.
Answer:
# include
using namespace std;
int main()

Question 9.
Write statements to declare an array and initialize it with the numbers 1, 2, 3, 4, 5 and print 5, 4, 3, 2, 1.
Answer:
# include
using namespace std;
int main()
int a[5]={1, 2, 3, 4, 5},i;
for(i=4;i>=0;i-)
cout<<a[i]<<“,”;
}

Question 10.
Consider the following array declaration. Write statements to count how many numbers are greater than zero.
int p[ ] = {-5, 6, -7, 0, 8, 9};
Answer:
# include
using namespace std;
int main()

Question 11.
Write a C++ program to read 10 integer values and find the largest number among them using array.
Answer:
# include
using namespace std;
int main()

Question 12.
Write a C++ program to accept a string from the keyboard and find its length without using function. For example if “WELCOME” is accepted, the output will be 7.
Answer:
# include
# include
# include
using namespace std;
int main()

Question 13.
Considerthe following C++ statements

  1. charword[20];
    cin>>word;
    cout<<word;
  2. char word[20];
    gets(word);
    puts(word);

If the string entered is “HAPPY NEW YEAR”. Predict the output in both cases and justify your answers.
Answer:

  1. HAPPY. When we use cin to accept string then space is the delimiter. The string after space is truncated.
  2. HAPPY NEW YEAR. gets() reads all the characters (including space) upto the user presses the enter key.

Question 14.
Consider the following C++ statements
char str[] = “NO/nSMOKING”;
cout<<str;

  1. What is the output of the above code?
  2. How many bytes will be allocated in the memory for the variable str?

Answer:

  1. NO
    SMOKING. The output is in 2 lines.
  2. A total of 11 bytes is used to store this string.

1 byte for \n. 1 byte for \0(The null character that is automatically appended) and 9 bytes for the remaining characters (N, 0, S, M, 0, K, l, N AND G).

Question 15.
Write a C++ program to store the given string in an array and display it in reverse order without using string function. For example if ABCD is given, the output should be DCBA.
Answer:
# include
#include
using namespace std;
int main()

Plus Two Computer Application Arrays Five Mark Questions and Answers

Question 1.
Collect the heights of 12 students from your class in which 7 students are male and others are female students. Suppose these male and female students be seated in two separate benches and you are given a place which is used for sitting these 12 students in linear form. How will you combine and make them sit without mixing male/female students? Write a program for the same.
Answer:
# include
using namespace std;
int main()

Question 2.
Write a program to read 3 marks of 5 students and find the total and display it
Answer:
# include
using namespace std;
int main()

Question 3.
Write a program to read a string and a character and find the character by using linear search.
Answer:
# include
# include
using namespace std;
int main()

Question 4.
Write a program to read a string and find the no. of vowels consonents and special characters.
Answer:
# include
#include
#include
using namespace std;
int main()

Question 5.
Write a program to accept marks of 10 students and find out the largest and smallest mark from the list.

OR

Write a C++ program to store the scores of 10 batsmen of a school cricket team and find the largest and smallest score.
Answer:
# include
using namespace std;
int main()

Question 6.
Write a C++ program to read 6 marks of a student and find total and average mark.
Answer:
# include
using namespace std;
int main()

Question 7.
Write a C++ proram to accept a sentence and count the number of times the letter ‘s’ occurs in it. For example if the sentence is This is my school’, the output should be 3.
Answer:
# include
# include
using namespace std;
int main()


Plus Two Computer Application All Chapters Question and Answers


Benefits of the Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF

The Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF that has been provided above is extremely helpful for all students because of the way it has been drafted. It is designed by teachers who have over 10 years of experience in the field of education. These teachers use the help of all the past years’ question papers to create the perfect Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF.


FAQ’s Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF

Where can I download Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF?

You can download Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF for the latest 2021 session.

Can I download Plus Two All subjects Question and Answers PDF?

Yes - You can click on the links above and download subject wise question papers in PDF

Is there any charge for the Plus Two Computer Application Notes Chapter 2 Arrays Question and Answers PDF?

There is no charge for the model papers for you can download everything free
Share:

0 comments:

Post a Comment

Copyright © Spandanam About | Contact | Privacy Policy