Plus One Computer Application Model Question Paper 3

Kerala Plus One Computer Application Model Question Paper 3

Time: 2 Hours
Cool off time: 15 Minutes
Maximum: 60 Scores

General Instructions to candidates

  • There is a ‘cool off time’ of 15 minutes in addition to the writing time of 2 hrs.
  • Use the ‘cool off time’ to get familiar with the questions and to plan your answers.
  • Read questions carefully before you answering.
  • Read the instructions carefully.
  • Calculations, figures, and graphs should be shown in the answer sheet itself.
  • Malayalam version of the questions is also provided.
  • Give equations wherever necessary.
  • Electronic devices except non-programmable calculators are not allowed in the Examination Hall.

Plus One Computer Application Model Question Papers Paper 3 33

Part A

Answer all questions from 1 to 5
Plus One Computer Application Model Question Papers Paper 3 1

Question 1.
The Least Significant Digit (LSD) of (1234.56)10 is …………
Plus One Computer Application Model Question Papers Paper 3 2

Question 2.
The process of detecting and correcting errors in a program is called …………….
Plus One Computer Application Model Question Papers Paper 3 3

Question 3.
Name any two keywords in C+ +.
Plus One Computer Application Model Question Papers Paper 3 4

Question 4.
The memory size required for the void data type is ……………
Plus One Computer Application Model Question Papers Paper 3 5

Question 5.
Rewrite the expression a = a + 1 using an arithmetic assignment operator.
Plus One Computer Application Model Question Papers Paper 3 6

Part B

Answer any nine questions from 6 to 16
Plus One Computer Application Model Question Papers Paper 3 7

Question 6.
Find the octal and hexadecimal equivalent of (111101 )2.
Plus One Computer Application Model Question Papers Paper 3 8

Question 7.
Write a short note on any two utility software.
Plus One Computer Application Model Question Papers Paper 3 9

Question 8.
Redraw the following flowchart by correcting mistakes.
Plus One Computer Application Model Question Papers Paper 3 10

Question 9.
Classify the followings into valid and invalid literals and give a reason for invalid literals.
Plus One Computer Application Model Question Papers Paper 3 11
33,000 +410. 5.6E 82

Question 10.
Consider a = 5 and b = 2 and find the result of the following expressions.
Plus One Computer Application Model Question Papers Paper 3 12

  1. a > b
  2. a !=b && b > a

Question 11.
Write a short note on any two statements in C+ +
Plus One Computer Application Model Question Papers Paper 3 13

Question 12.
Briefly, explain type promotion with suitable example.
Plus One Computer Application Model Question Papers Paper 3 14

Question 13.
Write the equivalent switch statement for the following.
Plus One Computer Application Model Question Papers Paper 3 15

Question 14.
Define the terms given below.
Plus One Computer Application Model Question Papers Paper 3 16
a. Bandwidth
b. Noise,

Question 15.
Name any four basic elements for data communication.
Plus One Computer Application Model Question Papers Paper 3 17

Question 16.
Write two advantages of Electronic Payment System (EPS).
Plus One Computer Application Model Question Papers Paper 3 18

Part C

Answer any nine questions from 17 to 27
Plus One Computer Application Model Question Papers Paper 3 19

Question 17.
If (X)16 = (Y)10 = (Z)8 = (11111111)2. find the values of X, Y and Z.
Plus One Computer Application Model Question Papers Paper 3 20

Question 18.
What is e-waste? Explain any two e-waste disposal methods.
Plus One Computer Application Model Question Papers Paper 3 21

Question 19.
Write an algorithm to find the sum of numbers from 1 to 10.
Plus One Computer Application Model Question Papers Paper 3 22

Question 20.
Explain any two types of programming errors.
Plus One Computer Application Model Question Papers Paper 3 23

Question 21.
Consider the following diagram and answer the question.
Plus One Computer Application Model Question Papers Paper 3 24
Write the base address (Lvalue), content (Rvalue) and Name of variables,
Plus One Computer Application Model Question Papers Paper 3 25

Question 22.
Write short notes on.
Plus One Computer Application Model Question Papers Paper 3 26
a. Preprocessor directive
b. Header file
c. Main() function

Question 23.
What is the use of type modifiers in C++? List any four type modifiers.
Plus One Computer Application Model Question Papers Paper 3 27

Question 24.
Write a C++ program to input an integer and check whether it is positive, negative or zero.
Plus One Computer Application Model Question Papers Paper 3 28

Question 25.
Compare Dialup connection and wired broadband connection.
Plus One Computer Application Model Question Papers Paper 3 29

Question 26.
a. Consider the following email address and write the username and domain name of it.
Plus One Computer Application Model Question Papers Paper 3 30
b. List any four advantages of email.
Plus One Computer Application Model Question Papers Paper 3 31

Question 27.
Explain any three IT-enabled services.
Plus One Computer Application Model Question Papers Paper 3 32

Part D

Answer any two questions from 28 to 30
Plus One Computer Application Model Question Papers Paper 3 33

Question 28.
“Open source software are getting more popular all over the world today”.
Plus One Computer Application Model Question Papers Paper 3 34
a. Write the full form of FSF.
Plus One Computer Application Model Question Papers Paper 3 35
b. Briefly elaborate four freedoms of open source software.
Plus One Computer Application Model Question Papers Paper 3 36
c. Give four examples of open source softwares.
Plus One Computer Application Model Question Papers Paper 3 37

Question 29.
a. List the four different parts of a loop in C++.
Plus One Computer Application Model Question Papers Paper 3 38
b. Compare while loop and do-while loop with suitable example.
Plus One Computer Application Model Question Papers Paper 3 39

Question 30.
a. Define topology,
Plus One Computer Application Model Question Papers Paper 3 40
b. Explain any two topologies.
Plus One Computer Application Model Question Papers Paper 3 41
c. Differentiate HUB and SWITCH.
Plus One Computer Application Model Question Papers Paper 3 42

Answers

Answer 1.
6

Answer 2.
debugging’

Answer 3.
continue, float

Answer 4.
zero. It does not require any memory space.

Answer 5.
a+ = 1

Answer 6.
(111101)2= 111 → 7, 101 → 5 = (75)8
(111101)= 0011 → 3, 1101 → D
= (3D)16

Answer 7.
a. Compression tools. Large files can be compressed so that they take less storage area. Compression of files is known as zipping and decompression is called unzipping, eg., WinZip, WinRAR.
b. Disk Defragmenter. It is a program that rearranges files on a computer hard disk. This enables the computer to work faster and more efficiently.

Answer 8.

Answer 9.
33,000: Invalid, Use of special character
(.)
+410. : Invalid. Use of special character
(.)
5.6E: Invalid. No exponent part
82: Valid

Answer 10.

  1. True
  2. False

Answer 11.
1. Declaration statement. Variables are identifiers of memory locations add are used in programs to refer to data. They should be declared prior to their use in the program and data types are required for this. The syntax of variable declaration is:

data type <variable1>
[, <variable2>, <variable3 >,...];
eg., int rollno, age;

2. Assignment statement. A specific data is stored in memory locations (variables) using an assignment operator (=). The statement that contains = is known as assign.. ment statement. It is also a binary operator and the operand to the left of = should be a variable. The operand after = may be a numeric constant, a variable or an expression of numeric type.

Answer 12.
In implicit type conversion, compiler is responsible for the conversion. It always converts a lower type into, higher one and hence it is also known as type promotion,
eg., For example, the expression 5 / 2 * 3 + 2.5 which gives the result 8.5. The evaluation steps are as follows:
Step 1: 5/2 gives 2 (Integer division) Step 2: 2 * 3 gives 6 (Integer multiplication)
Step 3: 6 + 2.5 gives 8.5 (Boating point addition, 6 is converted into 6.0)

Answer 13.

switch (ch)
{
case ‘P’: cout<<“Pass”;
break;
case ‘F: cout<<“Failed”;
break;
default: cout<<“No result";
}

Answer 14.
a. Bandwidth. It is the maximum amount of data that can be transmitted by the medium. It can be measured in Hertz.
b. Noise. It is the unwanted electrical or electromagnetic interference that adversely affects the transmitted data signals.

Answer 15.
Message. It is the data/information to be transmitted from one computer to another.
Sender. It is a computer or a device that sends data. It is also called source or transmitter.
Receiver. It is a computer or a device that receives data.
Protocol. The rules and conventions for transmitting data.
Medium. It is the path through which message travels from sender to receiver.

Answer 16.
A system of financial exchange between buyers and sellers in an online environment is called an Electronic Payment System (EPS). The financial exchange is facilitated by a digital financial instrument (such as a credit/debit card, electronic cheque or digital cash) backed by a bank and/or an Intermediary.

Answer 17.
1111 → F, 1111 → F
(11111111)2 = (FF)16 = (X)16
011 → 3, 111 → 7, 111 → 7
(11111111), = (377)e = (Z)8
(11111111 )2 = 1 × 27 + 1 × 26 + 1 × 2s + 1 × 24 + 1 × 23 + 1 × 22 + 1 × 21 + 1 × 2°
= 128 + 64 + 32+ 16 + 8 + 4 + 2 + 1 = 155
,(155)10 = (Y)10

Answer 18.
It is defined as discarded computers, office electronic equipment, entertainment device, mobile phones, television sets, and refrigerators. This global mountain of waste is expected to continue growing at 8% per year.

  1. Reuse: It refers to secondhand use or usage after the equipment has been upgraded or modified.
  2. Incineration: It is a controlled and complete combustion process in which the waste is burned in specialty designed incinerators at a high temperature in the range of 900 to 1000 degree Celsius.
  3. Recycling: It is the process of making or manufacturing new products from a product that has originally served its purpose.
  4. Landfilling: In this method, soil is excavated from the trenches made and waste material is buried in it, which is covered by a thick layer of soil.

Answer 19.

Step 1: Start
Step 2: a = 1, s = 0
Step 3: s = s + a
Step 4: a = a + 1
Step 5: Repeat steps 3 to 4 while a<=10
Step 6: Print M
Step 7: Stop

Answer 20.
1. Syntax errors result when the rules or syntax of the programming language are not followed. Such program errors typically involve incorrect punctuation, incorrect word sequence, undefined term, or illegal use of terms or constructs. In the case of interpreters, the syntax errors will be detected and displayed during execution,

2. The logical error is due to the improper planning of the program’s logic. The language processor successfully translates the source code into machine code if there are no syntax errors. The computer actually follows the program instructions and gives the output as per the instructions. But the output may not be correct. This is known as logical errors. In order to determine whether or not there is a logical error, the program must be tested.

Answer 21.
Base address (Lvalue) 3000
Content (Rvalue) 105
Name of variables NUM

Answer 22.
a. Preprocessor directives. A C++ program starts with preprocessor directives. Preprocessors are the compiler directive
‘ statements which give instruction to the compiler to process the information provided before actual compilation starts. The # include is used to link the header files available in the C++ library. There are some other preprocessor directives such as # define, # undef, etc.

b. Header files. It contains the information about functions, objects and predefined derived data types and they are available along with compiler. The header file ios team contains the information about the objects cin and cout.

c. The main() function. The execution starts at main() and ends within main(). If we use any other function in the program, it is called (or invoked) from main(). The function header main() is followed by its body, which is a set of one or more statements within a pair of braces {}. This structure is known as the definition of the main() function. Each statement is delimited by a semicolon (;).

Answer 23.
C++ provides data type modifiers which help us to alter the size, range or precision. It alters the range of values permitted to a data type by altering the memory size and/or sign of values. Important modifiers are signed, unsigned, long and short.

NameDescriptionSize
charCharacter or a small integer1 byte
short int (short)Short Integer2 bytes
intInteger4 bytes
long int (long)Long integer4 bytes
floatFloating point number4 bytes
doubleDouble preci­sion floating-point number8 bytes
long doubleLong double-precision floating-point number10 bytes

Answer 24.

# include <iostream> 
using namespace std; 
int main()
{
int a;
cout<<“Enter an integer:”; 
cin >> a;
if (a > 0) .
cout<<“The number is positive”;
else if (a < 0) *
cout<<“The number is negative”;
else
cout<<“The number is zero”; return 0;
}

Answer 25.
Dial-up connection. The internet connection is established by dialing into an ISP’s computer. If ISP is not busy they verify the username and password if it is valid they will connect our computer to the internet. It uses Serial Line Internet Protocol (SLIP) or Points to Point Protocol (PPP). It is slower and has a higher er rotate.

Wired Broadband Connectivity. In these, there is a permanent wire connection, between your computer and ISP. So it’s an “always on” connection. It uses a broadband modem and we can use telephone lines while using the internet.

Answer 26.
a. Username my school
b. Domain name gmail.com b. The advantages of email are:

  1. Speed is high.
  2. It is cheap.
  3. We can send email to multiple recipients.
  4. Incoming messages can be saved locally.
  5. It reduces the usage of paper.
  6. We can access mailbox anytime and from anywhere. „

Answer 27.
1. Medical equipment. Most of the modern medical equipment work with the help of computers. Scanners like CT, MRI depends on computers to process their data. Computer-guided lasers are used in surgery, even in the removal of brain tumors etc.

2. Electronic Medical Records (EMR). It is possible to store all patient’s records in digital format. This is known as EMR. EMR is used by doctors for diagnostics and treatment.

3. Web-based support/diagnosis. There are a lot of treatments, therapies, medical journals are available on the internet, which can be referred to by patients. Some websites provide facility f&r identifying their diseases without consulting a doctor. This prediction may not be correct in some time.

Answer 28.
a. Free Software Foundation
b. Freedom 0: The freedom to run a program for any purpose.
Freedom 1: The freedom to study how the program works and adapt it to your needs. Access to source code should be provided.
Freedom 2: The freedom to distribute copies of the software.
Freedom 3: The freedom to improve the program and release your improvements to the public, so that the whole community benefits.
c.

  1. GNU / Linux is a computer operating system assembled under the model of free and open source software development and distribution.
  2. GIMP (GNU Image Manipulation’Program) is an image editing software.
  3. Mozilla Firefox is one of the most popular web browsers. It provides added security features for safe browsing.
  4. OpenOffice.org is a complete office software which contains word processor, spreadsheet and presentations.

Answer 29.
a. A looping statement has four components: initialization expression, test expression, update expression, loop body. The loop body is the set of statements for repeated execution. The execution is continued as long as the test expression (condition) is true. The variable used in the test expression, called a loop control variable, gets its initial value through the initialization expression (or statement). Update expression changes the value of the loop control variable. Usually, it takes place after each execution of the loop body.

b. while loop. The condition is checked first and if it is found, True the body of the loop will be executed. That is the body will be executed as long as the condition is True. The syntax of a while loop is, initialization of loop control variable;

while (test expression)
{
body of the loop;
updation of Ipop control variable;
}
eg., int k= 1; while(k<=3)
{
cout << k << `\t’;
++k;
}

do while loop. The condition is checked only after executing the loop body. So it is certain that the loop body will be executed at least once in the case of do while loop.

Syntax is:
initialization of loop control variable; 
do
body of the loop;
updation of loop control variable;
}
while (test expression); 
eg., int k = 1; do {
cout << k << At’;
++k;
}
while (k<=3);

Answer 30.
a. The physical or logical arrangement of computers on a network is called structure or topology. It is the geometrical arrangement of computers in a network,
b.
1. Ring topology. All the computers are connected in the shape of a ring and it is a closed-loop. Here also there is no central computer. Here a computer transmits a message, which is tagged along with its destination computer’s Address. The message travels in one direction and each node checks whether the message is for them. If not, it passes to the next node. It requires only short cable length. Its advantages are no signal amplification required because each node do this and requires less cable, so cost-effective. The main disadvantage is if a node fails, the entire network will fail.

2. Bus topology. All the computers are attached to a single cable, called the bus. If anyone node has to send data to another node, it will send the data to the bus. In the bus, the data travels in both directions. The node that needs the data copies it. A small device called terminator connected at both end of the bus removes the data and frees the bus for next transmission. Advantages are added or remove computer is very easy. It requires less cable length and the installation cost is less. A disadvantage is fault detection is very difficult because of no central computer,

c. Hub. It is a small, simple and inexpensive device used to connect computers (devices) to a network. If a computer wants to transmit data to another computer, first it sends to the hub, the hub retransmits this data to all other computers. Each and every computer gets the data and check whether it is for them or not. It increases the network traffic and hence the transmission speed is low.

Switch. It is an expensive device used to connect computers (device) to a network. Unlike a hub, switch transmit data, not to all computers, it retransmits data only to the intended computer. So the traffic is less and the speed is high.

Plus One Computer Application Previous Year Question Papers and Answers

Plus One Computer Application Model Question Paper 2

Kerala Plus One Computer Application Model Question Paper 2

Time: 2 Hours
Cool off time: 15 Minutes
Maximum: 60 Scores

General Instructions to candidates

  • There is a ‘cool off-time’ of 15 minutes in addition to the writing time of 2 hrs.
  • Use the ‘cool off time’ to get familiar with the questions and to plan your answers.
  • Read questions carefully before you answering.
  • Read the instructions carefully.
  • Calculations, figures, and graphs should be shown in the answer sheet itself.
  • Malayalam version of the questions is also provided.
  • Give equations wherever necessary.
  • Electronic devices except non-programmable calculators are not allowed in the Examination Hall.

Plus One Computer Application Model Question Papers Paper 2 33

Part A

Answer all questions from 1 to 5
Plus One Computer Application Model Question Papers Paper 2 1

Question 1.
JPEG stands for
Plus One Computer Application Model Question Papers Paper 2 2

Question 2.
The process of making or manufacturing new products from the product that has originally served its purpose is called
Plus One Computer Application Model Question Papers Paper 2 3

Question 3.
Program errors are known as
Plus One Computer Application Model Question Papers Paper 2 4

Question 4.
Its value does not change during execution. What is it?
Plus One Computer Application Model Question Papers Paper 2 5

Question 5.
The act of breaking into a secure network to destroy data is called hacking.
Plus One Computer Application Model Question Papers Paper 2 6

Part B

Answer any nine questions from 6 to 16
Plus One Computer Application Model Question Papers Paper 2 7

Question 6.
If (x)8 = (101011)2, then find x.
Plus One Computer Application Model Question Papers Paper 2 8

Question 7.
Explain the benefits of a blue-violet laser in BluRay DVD.
Plus One Computer Application Model Question Papers Paper 2 9

Question 8.
When do we use ROM?
Plus One Computer Application Model Question Papers Paper 2 10

Question 9.
What is the runtime error? Explain.
Plus One Computer Application Model Question Papers Paper 2 11

Question 10.
Identify the errors in the following code segments:
Plus One Computer Application Model Question Papers Paper 2 12

a. 
int main()
{
cout<<“Enter two numbers”
cin >> num >> auto
float area = Length * breadth ;
}
b. 
# include <iostream>
using namespace std
void Main()
{
int a, b 
cin<<a <<b 
max=(a > b) a:b 
cout>max
}

Question 11.
Write the working of arithmetic assignment operator? Explain all arithmetic assignment operators with the help of examples.
Plus One Computer Application Model Question Papers Paper 2 13

Question 12.
Checks whether a given character is an alphabet or a digit.
Plus One Computer Application Model Question Papers Paper 2 14

Question 13.
Define resource sharing.
Plus One Computer Application Model Question Papers Paper 2 15

Question 14.
Define network topology.
Plus One Computer Application Model Question Papers Paper 2 16

Question 15.
What are the disadvantages of email?
Plus One Computer Application Model Question Papers Paper 2 17

Question 16.
What are the facilities provided by the IRCTC website?
Plus One Computer Application Model Question Papers Paper 2 18

Part C

Answer any nine questions from 17 to 27
Plus One Computer Application Model Question Papers Paper 2 19

Question 17.
What are the methods of representing integers in computer memory?
Plus One Computer Application Model Question Papers Paper 2 20

Question 18.
What is the role of a computer in problem-solving?
Plus One Computer Application Model Question Papers Paper 2 21

Question 19.
What is a computer program? How do algorithms help to write programs?
Plus One Computer Application Model Question Papers Paper 2 22

Question 20.
Distinguish between identifiers and keywords.
Plus One Computer Application Model Question Papers Paper 2 23

Question 21.
Explain the different types of logical operators in C++.
Plus One Computer Application Model Question Papers Paper 2 24

Question 22.
Explain the memory representation of a variable with the help of an example.
Plus One Computer Application Model Question Papers Paper 2 25

Question 23.
How do the type modifiers affect the size and range of int and char data types?
Plus One Computer Application Model Question Papers Paper 2 26

Question 24.
Write a C++ program to find the biggest number from 3 given numbers.
Plus One Computer Application Model Question Papers Paper 2 27

Question 25.
Briefly explain the working of a for loop along with its syntax. Give an example of for loop to support your answer.
Plus One Computer Application Model Question Papers Paper 2 28

Question 26.
What are the advantages and disadvantages of social media?
Plus One Computer Application Model Question Papers Paper 2 29

Question 27.
Discuss in detail various uses of IT in health care field.
Plus One Computer Application Model Question Papers Paper 2 30

Part D

Answer any two questions from 28 to 30
Plus One Computer Application Model Question Papers Paper 2 31

Question 28.
List and explain various categories of software.
Plus One Computer Application Model Question Papers Paper 2 32

Question 29.
In the following program, some lines are missing. Fill the missing lines and complete it.
Plus One Computer Application Model Question Papers Paper 2 33

# include<iostream.h>
....................................
{ 
int num1, num2, sum; 
cout<< “Enter two numbers:”;
......................................
......................................
cout<< “Sum of numbers are = "<<sum;
}

Question 30.
Which is/are communication channels suitable for the following situations?
Plus One Computer Application Model Question Papers Paper 2 34
a. Setting up a LAN.
Plus One Computer Application Model Question Papers Paper 2 35
b. Transfer of data from a laptop to a mobile phone.
Plus One Computer Application Model Question Papers Paper 2 36
c. Transfer of data from one mobile phone to another.
Plus One Computer Application Model Question Papers Paper 2 37
d. Creating a remote control that can control multiple devices in a home.
Plus One Computer Application Model Question Papers Paper 2 38
e. Very fast communication between two offices in two different countries.
Plus One Computer Application Model Question Papers Paper 2 39
f. Communication in hilly area.
Plus One Computer Application Model Question Papers Paper 2 40
g. Communication within a city and its vicinity where a coast of cabling is too high.
Plus One Computer Application Model Question Papers Paper 2 41

Answers

Answer 1.
Joint Picture Experts Group

Answer 2.
recycling

Answer 3.
bugs

Answer 4.
constant

Answer 5.
unethical

Answer 6.
101 → 5,
011 → 3
x = 53

Answer 7.
The benefit of using a blue-violet laser is that it has a shorter wavelength which makes it possible to focus the laser spot with greater precision. This allows data to be packed more tightly. Therefore it is possible to store more data on the disk. Can hold up to 25 GB on a single-layer disc and 50 GB on a dual-layer disc. ‘

Answer 8.
ROM is nonvolatile; the contents are retained even after the power is switched off. It is used to hold boot up a program known as Basic Input Output System (BIOS). This software runs when the computer is switched on or ‘boots up’. It checks the computer’s hardware and then loads the operating system.

Answer 9.
The error messages may be displayed by the error handling function of the language. These errors are known as a runtime error. These errors can be rectified by providing instruction for checking, the validity of the data before it gets processed by the subsequent instructions in the program.

Answer 10.
a. No header file, no semicolon is used at the end of a second and third statement. Variables did not declare a return value not specified, auto cannot be used here.
b. M is upper case in main(), no semicolon used in any statements. Operators of sin and cout are wrong. Missing in conditional operator?

Answer 11.
A simple arithmetic statement can be expressed in a more condensed form using arithmetic assignment operators.
eg., a=a+10 can be represented as a+=10. Here += is arithmetic assign* meant operator. The arithmetic assignment operators in C++ are +=, =,*=,/=, %=. These are also known as C++ shorthands. These are all binary operators and the first operand should be a variable. The use of these operators makes the two operations (arithmetic and assignment) faster than the usual method.
Plus One Computer Application Model Question Papers Paper 2 42

Answer 12.

# include<iostream> 
using namespace std; 
int main()
{
char ch;
cout << “Enter the character(only small letter): "; 
cin » ch;
if (ch >= ‘a’ && ch <= 'z) 
cout<<“You entered an alphabet”; 
if (ch >= ‘0’ && ch <= ‘9’) 
cout<<“You entered a digit\n”; 
return 0;
}

Answer 13.
It is defined as the sharing of available hardware and software resources in a computer network.

Answer 14.
The physical or logical arrangement of computers on a network is called structure or topology. It is the geometrical arrangement of computers in a network.

Answer 15.
1. It requires a computer, a modem, software, and internet connection to check mail.
2. Some emails may contain viruses.
3. Mailboxes are filled with junk mail. So very difficult to find the relevant mail.

Answer 16.
IRCTC provides online booking facilities of railway tickets and offers other services like checking reservation status, train timing, reservation of hotels for the tourists across the country.

Answer 17.
There are three methods for representing an integer number in computer memory. They are:
a. Sign and magnitude representation
b. 1’s complement representation
c. 2’s complement representation

Answer 18.
A computer can solve problems only when we give instructions to it. If it understands the tasks contained in the instructions, it will work accordingly. An instruction is an action-oriented statement. It tells the computer what operation it should perform. A computer can execute (carry out the task contained in) an instruction only if the task is specified precisely and accurately.

Answer 19.
A sequence of instructions written in a language that is understood by a computer is called a computer program.
The algorithm is a step by step procedure to solve a problem. Each step represents a specific task. These steps help the programmer to write instructions in a programming language.

Answer 20.
Identifiers are the user-defined words that are used to name different program elements such as memory locations, statements, functions, objects, classes etc.

The words (tokens) that convey a specific meaning to the language compiler are called keywords. These are also known as reserved words as they are reserved by the language for special purposes and cannot be redefined for any other purposes.

Answer 21.
1. && (logical AND). If two relational expressions E1 and E2 are combined using this ‘operator, the result will be 1 (True) only if both E1 and E2 have values 1 (True). In all other cases, the result will be 0 (False).
2. 11 (logical OR). If two relational expressions E2 and E2 are combined using logical OR (| |) operator, the result will be 0 (False) only if both E1 and E2 are having a value 0 (False), In all other cases, the result will be 1 (True).
3. (logical NOT). This operator is used to negate the result of a relational express

Answer 22.
Plus One Computer Application Model Question Papers Paper 2 43
Memory representation of a variable The variable name is num and it consumes 4 bytes of memory at memory addresses 101, 102, 103 and 104. The content of this variable is 18. That is the Lvalue of num is 101 and the Rvalue is 18.

Answer 23.
C++ provides data type modifiers which help us to alter the size, range or precision. It alters the range of values permitted to a data type by altering the memory size and/or sign of values.

NameDescriptionSize
charCharacter or a small integer1 byte
short int (short)Short Integer2 bytes
intInteger4 bytes
long int (long)Long integer4 bytes

Answer 24.

# include<iostream> 
using namespace std; 
int main()
{
int colour;
cout<<“Enter a number between 1 and 4:”;
cin>>colour; 
if (colour==1) 
cout<<“Red”; 
else if (colour==2)
cout<<“Green”; 
else if (colour—3) 
cout<<“Blue”; else
cout<<“Wrong input”; 
return 0;
}

Answer 25.
for loop is an entry controlled loop. All the three loop elements (initialization, test expression, and update statement) are placed together in for a statement. So it Snakes the program compact. The syntax is:

for (initialization; test expression; update statement)
body-of-the-loop;
}
These three steps (test, body, update) are continued until the test expression
is evaluated to False, 
eg., for (n=1; n<= 10; ++n)
{
cout<< “hello”;
}

Answer 26.
Advantages are:

  1. Bring people together; It allows people to maintain the friendship.
  2. Ran and organize events: It allows users to plan and organize events.
  3. Business promotion: It helps the firms to promote their sales.
  4. Social skills: There is a key role in the formation of society.

Disadvantages are:

  1. Intrusiontoprivacy. The personal information (photo, email id, phone number, name, address etc.) posted in such sites can be used for illegal activities.
  2. Addiction. Addiction to such sites wastes our valuable time.
  3. Spread rumors. Social media will spread the news quickly.

Answer 27.
Some of the areas where ICT used in health are the following:
1. Medical equipment. Most of the modern medical equipment work with the help of computers. Scanners like CT, MRI depends on computers to process their data. Computer-guided lasers are used in surgery, even in the removal of brain tumors etc.

2. Electronic Medical Records (EMR). It is possible to store all patient’s records in digital format. This is known as EMR. EMR is used by doctors for diagnostics and treatment.

3. Web-based support/diagnosis. There are a lot of treatments, therapies, medical journals are available on the internet, which can be referred to by patients. Some websites provide a facility for identifying their diseases without consulting a doctor. This predictions, may not be correct in some time.

4. Telemedicine. It helps to monitor and share a patients conditions like body temperature, blood pressure, heartbeats, ECG etc. from a distant place by a doctor. A surgeon in one place of the world can contact an expert from another part of the world while performing a surgery. It reduces cost and time.

5. Research and Development. Various researches are going on to discover new medicines. Use of IT in biotechnology have reduced the cost of drug discovery. Drugs for a specific purpose can be developed with the use of advanced computers.

Answer 28.
The software is a general term used to denote a set of programs that help us to use a computer system and other electronic devices efficiently and effectively. The two types of software are:
1. System software: It is a set of one or more programs designed to control the operations of a computer.

  • Operating system: It is a set of programs that act as an interface between the user and computer hardware.
  • Language processors: The instructions to the computer are written in different languages. Various language processors are:
    • Assembler: It converts languages written in assembly language into machine language.
    • Interpreter: It converts a high-level language into machine language by-line by line.
    • Compiler: It translates a high-level language into machine language by converting all the lines at a time.
  • Utility software: A set of programs which help users in system maintenance tasks and in performing tasks of routine nature. Utility programs are compression tools (WinZip, Win RAR), disk defragmenter (rearranges files on a computer hard disk), backup software.

2. Application software: It is the software developed for a specific application. It includes general purpose software (Word Processing software, spreadsheet software, presentation software, database, multimedia), specific purpose software (designed to handle particular tasks).

Answer 29.

# include<iostream.h> 
void main()
{
int num1, num2, sum;
cout<< “Enter two numbers:”;
cin»num1>>num2;
sum = num1 + num2;
cout<< “Sum of numbers are = ”
<<sum;
}

Answer 30.
a. STP/UTP (Twisted pair cable)
b. Bluetooth or WiFi
c. Bluetooth or infrared
d. Infrared
e. Satellite communication
f. Microwaves
g. WiMax

Plus One Computer Application Previous Year Question Papers and Answers

Plus One Computer Application Model Question Paper 1

Kerala Plus One Computer Application Model Question Paper 1

Time: 2 Hours
Cool off time: 15 Minutes
Maximum: 60 Scores

General Instructions to candidates

  • There is a ‘cool off-time’ of 15 minutes in addition to the writing time of 2 hrs.
  • Use the ‘cool off time’ to get familiar with the questions and to plan your answers.
  • Read questions carefully before you answering.
  • Read the instructions carefully.
  • Calculations, figures, and graphs should be shown in the answer sheet itself.
  • Malayalam version of the questions is also provided.
  • Give equations wherever necessary.
  • Electronic devices except non-programmable calculators are not allowed in the Examination Hall.

Plus One Computer Application Model Question Papers Paper 1 33

Part A

Answer all questions from 1 to 5
Plus One Computer Application Model Question Papers Paper 1 1

Question 1.
Information may act as data. State True or False.
Plus One Computer Application Model Question Papers Paper 1 2

Question 2.
…………….. register holds the address of the next instruction to be executed by the processor.
Plus One Computer Application Model Question Papers Paper 1 3

Question 3.
A program written in HLL is known as ………..
Plus One Computer Application Model Question Papers Paper 1 4

Question 4.
The unpredictable value assigned to a variable at the time of its declaration is known as
Plus One Computer Application Model Question Papers Paper 1 5

Question 5.
The small text files used by browsers to remember our email IDs, usernames etc. are known as ……………..
Plus One Computer Application Model Question Papers Paper 1 6

Part B

Answer any nine questions from 6 to 16
Plus One Computer Application Model Question Papers Paper 1 7
Plus One Computer Application Model Question Papers Paper 1 8

Question 6.
Find decimal equivalent of (10001)2
Plus One Computer Application Model Question Papers Paper 1 9

Question 7.
What are the advantages of a hard disk?
Plus One Computer Application Model Question Papers Paper 1 10

Question 8.
Differentiate hardcopy and softcopy.
Plus One Computer Application Model Question Papers Paper 1 11

Question 9.
Write the names of two phases that are included in debugging.
Plus One Computer Application Model Question Papers Paper 1 12

Question 10.
What would happen if main () is not present in a program?
Plus One Computer Application Model Question Papers Paper 1 13

Question 11.
Comments are useful to enhance readability and understandability of a program. Justify this statement with examples.
Plus One Computer Application Model Question Papers Paper 1 14

Question 12.
What are the are the requirements to implement a multi-branching using a switch statement?
Plus One Computer Application Model Question Papers Paper 1 15

Question 13.
What is the peer-to-peer network? Peertopeer
Plus One Computer Application Model Question Papers Paper 1 16

Question 14.
Switch and hub are two devices associated with networking. Differentiate them.
Plus One Computer Application Model Question Papers Paper 1 17

Question 15.
Compare intranet and extranet.
Plus One Computer Application Model Question Papers Paper 1 18

Question 16.
What are the advantages of EMR?
Plus One Computer Application Model Question Papers Paper 1 19

Part C

Answer any nine questions from 17 to 27
Plus One Computer Application Model Question Papers Paper 1 20

Question 17.
And the smallest number in the list.
Plus One Computer Application Model Question Papers Paper 1 21
a. (1101 )2
b. (A)16
c. (13)8
d. (15)10

Question 18.
Write an algorithm to find a sum of first 100 odd numbers.
Plus One Computer Application Model Question Papers Paper 1 22

Question 19.
Draw a flowchart to display the first 100 natural numbers.
Plus One Computer Application Model Question Papers Paper 1 23

Question 20.
What is a floating point constant? What are the different ways to represent a floating point constant?
Plus One Computer Application Model Question Papers Paper 1 24

Question 21.
What are the three aspects of variables?
Plus One Computer Application Model Question Papers Paper 1 25

Question 22.
Find out the errors, if any, in the following C++ statements:
Plus One Computer Application Model Question Papers Paper 1 26

  1. cout<< “a=” a;
  2. m=5, n=12; 015
  3. cout << “x” ; <<x;
  4. cin >> y
  5. cout>>\n “abc”
  6. a = b + c
  7. break = x

Question 23.
The following program finds the sum of three numbers. Modify the program to find the average. (Average should display fractional part also).
Plus One Computer Application Model Question Papers Paper 1 27

# include<iostream>
using namespace std;
int main ()
int x, y, z, result;
cout<<“Enter values for x, y, z”;
cin>>x>>y>>z;
result = x + y + z; .
cout<< “The answer is =”<<result; 
return 0;
}

Question 24.
Rewrite the following statement using while and do while loops.
Plus One Computer Application Model Question Papers Paper 1 28
for(i=1; i<=10; i++) cout<<i;

Question 25.
Write the significance of break statement in the switch statement. What is the effect of the absence of a break in a switch statement?
Plus One Computer Application Model Question Papers Paper 1 29

Question 26.
What are the methods for preventing network attacks?
Plus One Computer Application Model Question Papers Paper 1 30

Question 27.
What are the major challenges faced in the implementation of e-Learning?
Plus One Computer Application Model Question Papers Paper 1 31

Part D

Answer any two questions from 28 to 30
Plus One Computer Application Model Question Papers Paper 1 32

Question 28.
Explain any five commonly used secondary or (auxiliary) memory devices.
Plus One Computer Application Model Question Papers Paper 1 33
Plus One Computer Application Model Question Papers Paper 1 34

Question 29.
WHte a C++ program to find the total and percentage of a student in six subjects.
Plus One Computer Application Model Question Papers Paper 1 35

Question 30.
What is network protocol? Explain.
Plus One Computer Application Model Question Papers Paper 1 36

Answers

Answer 1.
True

Answer 2.
Program Counter (PC)

Answer 3.
source code

Answer 4.
garbage value

Answer 5.
cookies

Answer 6.
(10001)2 = 1 × 24 + 0 × 23 + 0 × 22 + 0 × 21 + 1 × 2°
= 16 + 0 + 0 + 0 + 1
= 17
(10001 )2 = (17)10

Answer 7.
Hard disks have very high storage capacity, high data transfer rates, and low access time, it is more durable and less error-prone.

Answer 8.
Hardcopy outputs are permanent outputs which can be used at a later date or when required.
Softcopy outputs are electronic and are available on the screen in a digital form.

Answer 9.
Two phases that included in debugging are debugging of syntax errors during translation and debugging of logical errors during execution.

Answer 10.
The execution starts at main() and ends within main(). If we use any other function in the program, it is called (or invoked) from main().

Answer 11.
Comments are lines in the code that are added to describe the program. They are ignored by the compiler.
i. Single line comment: The characters // (two slashes) is used. The text appearing after II in a line is treated as a comment by the C++ compiler.
ii. Multiline comments: Anything written within /* and */ is treated as a comment so that the comment can take any number of lines.
eg., /* This program displays the message “Smoking is injurious to health” on the monitor */

# include <iostream.h> // To use the cout object
using namespace std; // To access cout 
int main() // program begins here 
{ // The following output statement displays a message
cout << “Smoking is injurious to health"; return 0;
} // end of the program

Answer 12.
The following are the requirements to implement a multi-branching using a switch statement:

  1. Conditions involve only equality checking. In other cases, it should be converted into equality expression.
  2. The first operand in all the equality expressions should be the same variable or expression.
  3. The second operand in these expressions should be integer or character constants.

Answer 13.
In this configuration, all the computers have equal priority. That means each computer can function as both a client and a server. There is no dedicated server.

Answer 14.
A switch is an expensive device used to connect computers (device) to a network. Unlike a hub, switch transmit data, not to all computers, it retransmits data only to the intended computer. So the traffic is less and the speed is high.

Answer 15.
Intranet: A private network inside a company or organization is called intranet.
Extranet: It allows vendors and business partners to access the company resources.

Answer 16.
It is a more economical way of storing data. Medical history of patients will be accessible to patients easier and quicker. Transfer of records’ of patients between doctors/hospitals is much easier. A medical condition of a patient can be examined.

Answer 17.
a: (1101)= 1 × 23 + 1 × 22 + 0 × 21 + 1 × 2°
= 8 + 4 + 1
= 13
b. (A)16 = 10
c. (13)8 = 1 × 81 + 3 × 8°
= 8 + 3 = 11
d. (15)10 = 15
The smallest value is (A)16 = 10

Answer 18.

Step 1: Start
Step 2: Sum = 0, count = 1
Step 3: If count/2==1 then go to Step 4
Step 4: Sum = Sum + count
Step 5: count = count + 1
Step 6: If count<=100 then go to Step 3
Step 7: Print Sum
Step 8: Stop

Answer 19.
Plus One Computer Application Model Question Papers Paper 1 37

Answer 20.
Rotating point literals or real constants are numbers having fractional parts. These can be written in one of the two forms called fractional form or exponential form. A fractional form consists of signed or unsigned digits including a decimal point between digits. A real constant in exponent form has two parts: a mantissa and an exponent.

Answer 21.

  1. Variable name. It is a symbolic name (identifier) given to the memory location through which the content of the location is referred to.
  2. Memory address. Every cell (or byte) in RAM will be assigned a unique address to refer it. The address is also called the Lvalue of a variable.
  3. Content. It is the value stored in the location. This is also called the Rvalue of the variable. Type and size of the content depending on the data type of the variable.

Answer 22.

  1. After “a=” an operator << is missing.
  2. The data type is missing, the variable name of 015 is missing.
  3. The first semicolon is an error.
  4. The semicolon is missing at the end.
  5. The semicolon is missing at the end. << should be used after cout. \n must be in double quote.
  6. The semicolon is missing at the end. A data type is missing.
  7. The semicolon is missing at the end. a break is a keyword.

Answer 23.

# include<iostream> 
using namespace std;
int main ( )
int x, y, z; float result;
cout<< “Enter values for x, y, z”; 
cin>>x>>y>>z; 
result = (x + y + z)/3.0; 
cout<< “The answer is =”<<result; 
return 0;
}

Answer 24.

while: 
i = 1;
while (i<= 10)
{
cout<<i;
i++;
}
do while: 
i = 1; 
do 
{
cout<<i;
i++;
}
while (i<= 10);

Answer 25.
When a break statement is encountered, the program control goes to the statements following the switch statement.
If the break statement is absent, even after finding a match other cases following are also checked. If no match is found, statements in the default block get executed.

Answer 26.
1. Firewall. A firewall is a combination of computer hardware and software that provide security to the computer/network. A firewall checks all the incoming and outgoing data from your computer and determines whether they are allowed or not.

2. Antivirus scanner. Antivirus software scans the files in the computer and removes viruses if they found. When an antivirus found malware in a file, the antivirus stops the file from running and put it into quarantine. Quarantine is a special area for storing files that are infected by a virus.

3. Cookies. These are small text files created when we use a browser to visit a website. Cookies store information like usernames, email address, websites visited, products purchased etc. Cookies help for efficient browsing. Cookies are not viruses, but it is possible for a hacker to use cookies as spyware. Most browsers provide facility to delete cookies.

Answer 27.

  1. Face to face contact between students adds teachers is not possible.
  2. Proper interaction among teachers and students are often limited due to the lack of infrastructural facilities.
  3. Equipment and technology (computer and high speed Internet) requirement restrict the adoption of e-Learning.
  4. Learners who require constant motivation may not be serviced adequately.
  5. Handson on real laboratory scenario is also a constraint in eLearning.

Answer 28.
1. Hard disk. It consists of metal disks coated with magnetic material concealed in dust free containers. Hard disks have very high storage capacity, high data transfer rates and low access time. It is more durable and less error prone. A hard disk may contain one or more platters. Each platter requires two read/write heads, one for each surface.

2. Compact Disc (CD). It is an optical storage medium capable of storing upto 700 MB of data. A CD drive uses red laser beams for reading from and writing data into CD. Two types of CDs are CDR (recordable) and CDRW (Rewritable).

3. USB flash drive. It is a small external storage device which consists of flash memory. These are portable and rewritable. The storage capacity of a USB drive currently varies from 2 GB to 32 GB.

4. Digital Versatile Disk (DVD). In these higher storage capacity is achieved by using smaller spots to record data. Recording and reading of data is done using DVD drive. The capacity of a DVD varies from 4.37 GB to 15.9 GB. There are three major types of DVDs: DVDROM, DVDRW and DVDRAM.

5. Magnetic tape. It is a backup device that can store huge volume of data. The cost per unit volume of a magnetic tape is less compared to other magnetic storage devices. It is a recording medium consisting of a thin tape with a coating of fine magnetic material. It can be used for recording analog or digital data. Data is stored in frames across the width of the
‘tape with a read/ write head.

Answer 29.

# include <iostream> 
using namespace std; 
int main()
{
int i, mark, sum = 0, max; 
float per;
for (i = 0; i<6; i++)
{
cout<<“ Enter the mark: ”;
cin>>mark;
sum = sum + mark; 
}
cout<<“Enter the maximum mark: ”; 
cin>>max;
per = (sum/max)* 100; 
cout<<“Sum of the entered marks:” << sum;
cout<<“ Percentage of the marks in six subjects:” << per; 
return 0;
}

Answer 30.
A protocol is a collection of rules and regulations to transfer data from one location to another. Different types of protocols are:

  1. Transmission Control Protocol (TCP): It uses a set of rules to exchange messages with other internet points at the information packet level.
  2. Internet Protocol (IP): It uses a set of rules to send and receive messages at the internet address level.
  3. File Transfer Protocol (FTP): It is used for transferring files between computers connected to local network or internet.
  4. Hyper Text Transfer Protocol (HTTP): It is a protocol used for WWW for enabling the web browse to access web server and request HTML documents.

Plus One Computer Application Previous Year Question Papers and Answers

Plus One Computer Application Previous Year Question Paper 2017

Kerala Plus One Computer Application Previous Year Question Paper 2017

Time: 2 Hours
Cool off time: 15 Minutes
Maximum: 60 Scores

General Instructions to candidates

  • There is a ‘cool off-time’ of 15 minutes in addition to the writing time of 2 hrs.
  • Use the ‘cool off time’ to get familiar with the questions and to plan your answers.
  • Read questions carefully before you answering.
  • Read the instructions carefully.
  • Calculations, figures, and graphs should be shown in the answer sheet itself.
  • Malayalam version of the questions is also provided.
  • Give equations wherever necessary.
  • Electronic devices except non-programmable calculators are not allowed in the Examination Hall.

Plus One Computer Application Previous Year Question Papers and Answers 2017 33

Question 1.
Processed data is known as ………….
a. facts
b. figures
c. information
d. raw material
Plus One Computer Application Previous Year Question Papers and Answers 2017 1

Question 2.
USB port stands for ……………..
Plus One Computer Application Previous Year Question Papers and Answers 2017 2
a. Uniform Serial Bus
b. Universal Serial Bus
c. Uninterruptable Serial Bus
d. Updatable Serial Bus

Question 3.
Fill the missing block.
Plus One Computer Application Previous Year Question Papers and Answers 2017 3

Question 4.
Which one of the following is NOT a search engine?
Plus One Computer Application Previous Year Question Papers and Answers 2017 4
a. Google
b. Bing
c. Facebook
d. Ask

Question 5.
In ICT enabled services BPO stands for
Plus One Computer Application Previous Year Question Papers and Answers 2017 5

Question 6.
for, while do while are the three looping statements in C+ +. From these three loops which loop will execute the loop body at least once even though the condition is false?
Plus One Computer Application Previous Year Question Papers and Answers 2017 6
Plus One Computer Application Previous Year Question Papers and Answers 2017 7
a. for loop
b. while loop
c. do while loop
d. do for loops

Question 7.
HTTP stands for a ………………. protocol.
Plus One Computer Application Previous Year Question Papers and Answers 2017 8

Question 8.
IDE stands for …………..
Plus One Computer Application Previous Year Question Papers and Answers 2017 9
a. Integrated Development Environment
b. Information Development Environment
c. Inheritance Development Environment
d. Interactive Development Environment

Question 9.
Let X and Y are two variables of int data type, then correct the following input statement.
Plus One Computer Application Previous Year Question Papers and Answers 2017 10

Question 10.
In a flowchart, the terminal (an ellipse) symbol is used to indicate the ……………… and …………… in the program logic.
Plus One Computer Application Previous Year Question Papers and Answers 2017 11

Question 11.
A ……………….. is a computer peripheral that allows you to connect and communicate with other computers via telephone lines.
Plus One Computer Application Previous Year Question Papers and Answers 2017 12

Question 12.
Differentiate or define the terms Hardware (h/w) and software (s/w) in a computer system. Give one example for each.
Plus One Computer Application Previous Year Question Papers and Answers 2017 13

Question 13.
a. Convert (1010.11)2 to decimal.
b. Find the missing terms in the following series. (18)16, (1A)16, (1C)16 ………………., ……………….
Plus One Computer Application Previous Year Question Papers and Answers 2017 14

Question 14.
Predict the output of the following operations. x = – 5 and y = 3 initially,
Plus One Computer Application Previous Year Question Papers and Answers 2017 15
Consider the following statement.
Plus One Computer Application Previous Year Question Papers and Answers 2017 16
int Length;
Then what is the difference between (a) and (b)?
Plus One Computer Application Previous Year Question Papers and Answers 2017 17
a. Length = 50
b. Length ==50

Question 15.
Arrange the following memory or storage devices on the base of their operation speed in ascending order.
Plus One Computer Application Previous Year Question Papers and Answers 2017 18
a. Hard disk
b. Cache
c. RAM
d. Registers

Question 16.
List the different stages in programming.
Plus One Computer Application Previous Year Question Papers and Answers 2017 19

Question 17.
Classify the following identifiers valid or invalid. If invalid, give a reason.
Plus One Computer Application Previous Year Question Papers and Answers 2017 20
a. Length_l
b. _Lengthl
c. Length 1
d. 1 Length

Question 18.
A part of biodata of a student is given. Identify the data types which we can use to store and process these data.
Plus One Computer Application Previous Year Question Papers and Answers 2017 21
RolIJMumber : 34
Age : 17
Sex : M
Mob_Number : 8181818181
Height_in_Cm : 152.8
Rncode : 690601

Question 19.
State whether the following statements are true or false. If false, give a reason.
Plus One Computer Application Previous Year Question Papers and Answers 2017 22
a. break statement is essential in a switch.
b. for loop is an entry controlled loop.
c. do while loop is an entry controlled loop.
d. the switch is a selection statement.

Question 20.
URL stands for Uniform Resource Locator. Every resource on the internet has a unique URL. Then classify the following URL on the basis of
Plus One Computer Application Previous Year Question Papers and Answers 2017 23
http://www.dhsekerala.gov.in/index.html
a. Network protocol
b. Domain name
c. Filename

Question 21.
How is a WAN different from a LAN?
Plus One Computer Application Previous Year Question Papers and Answers 2017 24

Question 22.
If a = 5, b = 4, c = 3, d = 4, then what is the result in X after the following operation ?
Plus One Computer Application Previous Year Question Papers and Answers 2017 25

Plus One Computer Application Previous Year Question Papers and Answers 2017 26

Is there any difference between (a) and (b) by considering the following statement?
Plus One Computer Application Previous Year Question Papers and Answers 2017 27
a. Gender = ‘M’;
b. Gender = ‘M’;

Question 23.
Your friend Ravi purchased a new PC for his personal use. Mention the components required to connect this PC to the internet.
Plus One Computer Application Previous Year Question Papers and Answers 2017 28

Question 24.
Compare the advantages and disadvantages of implementing eBusiness.
Plus One Computer Application Previous Year Question Papers and Answers 2017 29

Question 25.
Compare Dot Matrix Printer (DMP), inkjet printer, laser printer, and thermal printer on the basis of their working speed, quality of printing and expense for printing.
Plus One Computer Application Previous Year Question Papers and Answers 2017 30
Dot Matrix Printer (DMP), inkjet printer, laser printer, thermal printer.

Question 26.
Rewrite the following code using else if ladder.
Plus One Computer Application Previous Year Question Papers and Answers 2017 30

Plus One Computer Application Previous Year Question Papers and Answers 2017 32

# include<iostream> 
using namespace std; 
int main()
{
int colour;
cout«“Enter a number between 1 and 4 : ";
cin»colour;
switch(colour)
{
case 1:
cout<<“Red”; 
break; case 2:
cout<<“ Green"; 
break; case 3:
cout<<“Blue”;
break;
default:
cout<<“Wrong input”;
}
}

OR

Write a C++ program to find the biggest number from 3 given numbers.

Answers

Answer 1.
c. Information

Answer 2.
b. Universal Serial Bus

Answer 3.
Compiler / interpreter / assembler /language processors

Answer 4.
c. Facebook

Answer 5.
Business Process Outsourcing

Answer 6.
c. do while loop

Answer 7.
Hyper Text Transfer Protocol

Answer 8.
a. Integrated Development Environment

Answer 9.

cin>>X>>Y;

Answer 10.
Start and Stop

Answer 11.
MODEM

Answer 12.
Hardware is the tangible and visible parts of a computer, which consists of some electromechanical components, eg., keyboard, mouse. The software is a set of programs that help us to use the computer system for our needs, eg., Operating system, language processors.

Answer 13.
a. (1010.11)2 = 1 × 23 + 0 × 22 + 1 × 21
+ 0 × 2°+ 1 x 21 + 1 × 22
= 8 + 0 + 2 + 0 + 1/2 + 1/4
= 10 + 0.75
= 10.75
b (1E)16, (20)16

Answer 14.
a. 5
b.1
c.2
d. 2

OR

a. The value 50 will be stored in the variable Length (ie., assignment operation).
b. The value 50 and the value of Length will be compared.

Answer 15.
Hard disk, RAM, Cache, Registers

Answer 16.

  1. Problem identification: During this phase, you will be able to identify the data involved in processing, its type and quality, a formula to be used, activities involved and the output to be obtained.
  2. Preparing algorithms and flowcharts: Once the problem is identified, it is necessary to develop a precise step-by-step procedure to solve the problem.
  3. Coding the program: The process of writing program instructions to solve a problem is called coding. The program written in any HLL is known as source code.
  4. Translation: It is the process of converting a program written in the high-level language into its equivalent version in machine language. The compiler or interpreter is used for this purpose.
  5. Debugging: In this stage, programming errors are discovered and corrected. Programming errors are known as ‘bugs’ and the process of detecting and correcting these errors is called debugging.

Answer 17.
a. Valid
b. Valid
c. Invalid; White space is used.
d. Invalid; the First letter is a digit.

Answer 18.
Roll_Number: int
Age: int
Sex: char
Mob_Number: long int
Height_in_Cm: float
Pincode: int/long int

Answer 19.
a. True
b. True
c. False; do while loop is an exit controlled loop
d. True

Answer 20.
a. http
b. dhsekerala.gov.in
c. index.html

Answer 21.
Wide Area Network (WAN). This is used to connect computers over a large geographical area. It is a network\of network. Here the computers are connected using telephone lines or microwave station or satellites. The error rate in data transmission is high, eg., internet. Local Area Network (LAN). This is used to connect computers in a single room or buildings of one location by using twisted pair wire or coaxial cable. Data transfer rate is high and an error rate is less.

Answer 22.
-3
OR
a. It is true. The variable is a type of char and the value assigned is a character value.
b. This statement is wrong. The variable is a type of char and the value assigned is a string.

Answer 23.
The following are the requirements for connecting a computer to the Internet:
1. (NIC) and an operating system that supports TCP/IP.
2. Modem
3. Telephone connection
4. Internet account of any ISP (Internet Service Provider)
5. Software for browsing.

Answer 24.
The major advantages of using e-Business applications are:

  • With e-Business, you can buy and sell products from anywhere.
  • eBusiness reduces the operational cost.
  • It minimizes travel time and cost. Challenges to eBusiness:
  • Most of the people are unaware of online business and its possibilities or they do not know how to conduct this.
  • Most of the people from rural areas do not have plastic money (debit card, credit card) which is necessary for eBusiness.
    If not used with caution your valuable information like credit card no., password etc. may lose.

Answer 25.

  1. Dot matrix printers use small electromagnetically activated pins in the print head and an inked, to produce images by an impact. These printers are slow and noisy.
  2. Inkjet printers form the image on the page by spraying tiny droplets of ink from the printed head. The printer needs several colors of ink. These are inexpensive, but the cost of ink cartridge makes it a costly.
  3. Laser printer produces good quality output. The image to be printed is transferred to a drum using a laser beam. The toner powder from the toner cartridge is then sprayed on the drum. The toner powder sticks onto the portions traced the drum by the laser beam. It is transferred to a paper by rolling the paper on the drum. Through heating, the powder is fused on to the paper. Laser printers are faster and their speed is in page per minute (ppm).
  4. The thermal printer produces a printed image by selectively heating heat-sensitive when it passes over the thermal print head.

Answer 26.

# include<iostream>
using namespace std;
int main()
{
int colour;
cout<<“Enter a number between 1 and 4:";
cin»colour; if (colour==1)
cout<<“Red”;
else if (colour==2)
cout<<“Green”; 
else if (colour==3) cout«“Blue";
else
cout«“Wronginput”; 
return o;
}

OR

#include<iostream> using namespace std; 
int main() 
{
int a, b, c;
cout<<“Enter three different numbers:”; 
cin >> a >> b >> c ; 
if (a > b)
{
if (a > c)
cout<<“The largest number is:”« a; 
else
cout<<“The largest number is:”<<c;
}
else
{
if (b > c)
cout<<“The largest number is:”«b; 
else
cout<<“The largest number is: ”<<c;
}
return O;
}

Plus One Computer Application Previous Year Question Papers and Answers

Plus One Computer Application Previous Year Question Paper 2018

Kerala Plus One Computer Application Previous Year Question Paper 2018

Time: 2 Hours
Cool off time: 15 Minutes
Maximum: 60 Scores

General Instructions to candidates

  • There is a ‘cool off time’ of 15 minutes in addition to the writing time of 2 hrs.
  • Use the ‘cool off time’ to get familiar with the questions and to plan your answers.
  • Read questions carefully before you answering.
  • Read the instructions carefully.
  • Calculations, figures, and graphs should be shown in the answer sheet itself.
  • Malayalam version of the questions is also provided.
  • Give equations wherever necessary.
  • Electronic devices except non-programmable calculators are not allowed in the Examination Hall.

Plus One Computer Application Previous Year Question Papers and Answers 2018 33

Part A
Answer all questions from 1 to 5
Plus One Computer Application Previous Year Question Papers and Answers 2018 1

Question 1.
The meaningful and processed form of data is known as ……………….
Plus One Computer Application Previous Year Question Papers and Answers 2018 2

Question 2.
Write the full form of USB.

Question 3.
…………….. is a step by step procedure to solve a problem.
Plus One Computer Application Previous Year Question Papers and Answers 2018 3

Question 4.
What is the name of files created to support C++ programs and kept in the standard library?
Plus One Computer Application Previous Year Question Papers and Answers 2018 4

Question 5.
Find out the odd one from the following:
Plus One Computer Application Previous Year Question Papers and Answers 2018 5
a. DOS
c. ISDN
b. DSL
d. FTTH

Answer any nine questions from 6 to 16
Plus One Computer Application Previous Year Question Papers and Answers 2018 6

Question 6.
Despite the high speed and accuracy, computers are said to be the slaves of human beings. Why?
Plus One Computer Application Previous Year Question Papers and Answers 2018 7
Plus One Computer Application Previous Year Question Papers and Answers 2018 8

Question 7.
Name the four waste disposal methods.
Plus One Computer Application Previous Year Question Papers and Answers 2018 9

Question 8.
What are the features of RAM?
Plus One Computer Application Previous Year Question Papers and Answers 2018 10

Question 9.
Problem-solving by computer proceeds through different stages. Name the stages in the correct order.
Plus One Computer Application Previous Year Question Papers and Answers 2018 11

Question 10.
Write the output of the following C++ expressions.
Plus One Computer Application Previous Year Question Papers and Answers 2018 12

Let a = 7, b = 2 ’
a. a + b * 3 / ++b;
b. a < = 7 && b > 1;

Question 11.
Detect and correct the errors in the following C++ code.
Plus One Computer Application Previous Year Question Papers and Answers 2018 13

# include<iostream> 
using name space std; 
int main ( );
int a, b;
cout<< “Enter two numbers”; 
cin>>a and b; a + b = c;
cout<< “Sum =”<<c; 
return 0;
}

Question 12.
Rewrite the following code using a switch case statement.
Plus One Computer Application Previous Year Question Papers and Answers 2018 14

if(Lan==‘M’)
cout<<‘i prefer Malayalam”;
else if (Lan == ‘E’)
cout<<“l prefer English”;
else cout<<“l prefer neither Malayalam
nor English”;

Question 13.
There are many advantages of using networked computers instead of standalone computers. Write any four advantages of them.
Plus One Computer Application Previous Year Question Papers and Answers 2018 15

Question 14.
What is the importance of the TCP/IP protocol in computer networks?
Plus One Computer Application Previous Year Question Papers and Answers 2018 16

Question 15.
Write any two drawbacks in using social media.
Plus One Computer Application Previous Year Question Papers and Answers 2018 17

Question 16.
eBusiness has many possibilities in the business world, but it faces some challenges. Write about any two challenges in e-Business.
Plus One Computer Application Previous Year Question Papers and Answers 2018 18

Answer any nine questions from 17 to 27
Plus One Computer Application Previous Year Question Papers and Answers 2018 19

Question 17.
If (M)8 = (96)10 = (N)2 , find M and M.
(M)8 = (96)10 = (N)2
Plus One Computer Application Previous Year Question Papers and Answers 2018 20Plus One Computer Application Previous Year Question Papers and Answers 2018 21

Question 18.
Following is a flowchart to find the sum of the first 50 natural numbers.
a. Correct the flowchart if there are errors.
b. Redraw the flowchart to find the sum of even numbers between 1 and 50.
Plus One Computer Application Previous Year Question Papers and Answers 2018 22
Plus One Computer Application Previous Year Question Papers and Answers 2018 23

Question 19.
What is debugging? Which are the different types of errors that may occur in a program?
Plus One Computer Application Previous Year Question Papers and Answers 2018 24

Question 20.
a. What is a token in C++?
Plus One Computer Application Previous Year Question Papers and Answers 2018 25
b. Distinguish between keywords and identifiers.
Plus One Computer Application Previous Year Question Papers and Answers 2018 26

Question 21.
Data types are necessary to declare variables in C++.
a. What is a data type?
b. Write the classification of fundamental data types in C++.
Plus One Computer Application Previous Year Question Papers and Answers 2018 27

Question 22.
Write a short note on arithmetic and logical operators in C++.
Plus One Computer Application Previous Year Question Papers and Answers 2018 28

Question 23.
a. Write the equivalent arithmetic operations for the given C++ shorthands.
Plus One Computer Application Previous Year Question Papers and Answers 2018 29
b. What is the difference between a=20 and a==20?
Plus One Computer Application Previous Year Question Papers and Answers 2018 30

Question 24.
Write a C++ program to find the sim pie interest of an amount (P) deposited with a rate of interest (R) for a period of years (N). A rate of interest = 7% if deposit amount P is less than 1 lakh. A rate of interest = 8% if deposit amount P is between 1 lakh and 5 lakhs. A rate of interest = 9% if the deposit amount P is above 5 lakhs. (Hint: Simple interest = P × N × R/100)
Plus One Computer Application Previous Year Question Papers and Answers 2018 31

Question 25.
a. Give the output of the following code.
Plus One Computer Application Previous Year Question Papers and Answers 2018 32

for(i= 10; i<30; i+ = 3)
{
cout<<i<<“\t”;
}

b. Rewrite the code using while loop, while
Plus One Computer Application Previous Year Question Papers and Answers 2018 33

Question 26.
Explain briefly about the wireless broadband connectivity methods used for internet connection.
Plus One Computer Application Previous Year Question Papers and Answers 2018 34

Question 27.
e-Leaming allows us to overcome many limitations of the conventional teaching-learning process.
a. Name any three eLearning tools for enhancing the e-Learning process.
b. Write any three advantages of eLearning.
Plus One Computer Application Previous Year Question Papers and Answers 2018 35

Answer any two questions from 28 to 30
Plus One Computer Application Previous Year Question Papers and Answers 2018 36

Question 28.
a. Write a detailed classification of software.
b. Some programming languages use compiler whereas some use interpreter. What makes them different?
c. What do you mean by free software?
Plus One Computer Application Previous Year Question Papers and Answers 2018 37

Question 29.
a. What is a type conversion ? Which are the two ways of type conversion?
Plus One Computer Application Previous Year Question Papers and Answers 2018 38
b. Define type casting.
Plus One Computer Application Previous Year Question Papers and Answers 2018 39
c. Consider the C++ code.
Plus One Computer Application Previous Year Question Papers and Answers 2018 40
p = 7, q = 2; float a, b;
a = p/q;
b = (a+q)/q;
Find the values of’a and b.

Question 30.
a. Define the term topology.
b. Consider that, your principal has decided to network your computer lab. Which topology will you suggest? Justify your answer.
c. Differentiate between LAN and WAN.
Plus One Computer Application Previous Year Question Papers and Answers 2018 41

Answers

Answer 1.
information

Answer 2.
Universal Serial Bus

Answer 3.
Algorithm

Answer 4.
Header files

Answer 5.
a. DOS

Answer 6.
Yes. Many people think that the computer has superhuman capabilities. However, this is not true. A computer does not have natural intelligence as humans have. A computer cannot decide on its own.

Answer 7.

  1. Reuse: It refers to second-hand use or usage after the equipment has been upgraded or modified.
  2. Incineration: It is a controlled and complete combustion process in which the waste is burned in specially designed incinerators at a high temperature in the range of 900 to 1000 degree Celsius.
  3. Recycling: It is the process of making or manufacturing new products from a product that has originally served its purpose.
  4. Landfilling: In this method, the soil is excavated from the trenches made and waste material is buried in it, which is covered by a thick layer of soil.

Answer 8.
The microprocessor can read from and write to RAM. Data can be stored and retrieved at random from anywhere within the RAM, no matter where the data is. The contents of RAM are lost when power is switched off. Therefore, RAM is a volatile memory. The speed of a RAM refers to how fast the data in memory is accessed and expressed in MegaHertz (MHz).

Answer 9.
Problem identification, preparing algorithms and flowcharts, coding the program, translation, debugging.

Answer 10.
a. 9
b. True / 1

Answer 11.

# include<iostream> 
using namespace std; 
int main ()
int a, b, c;
cout<< “Enter two numbers"; 
cin>>a>>b; c = a + b;
cout<< “Sum =”<<c; return 0;
}

Answer 12.

switch (Lan)
{
case‘M’: cout<<“I prefer Malayalam";
break;
case ‘E’: cout<<“l prefer English”; break;
default:cout<<“l prefer neither Malayalam nor English";
}

Answer 13.
The advantages of networks are:

  1. Resource sharing: All the computers in a network can share software.
  2. Reliability: If one computer fails, the other computer can perform the work without any delay.
  3. Price Vs Performance: Instead of a main frame 10 personal computers are used with less cost and same performance.
  4. Communication medium: It has a powerful communication medium. We can exchange information between computers in a network.
  5. Scalable: System performance can be increased by adding computers to a network.

Answer 14.
Transmission Control Protocol (TCP) uses a set of rules to exchange\messages with other internet points at time information packet level. When data is to be sent from one computer to another over the internet, it is first broken into smaller packets by TCP and then sends. When these packets are received by the receiving computer, TCP submits a request for retransmission else packets are assembled into the original message according to the rules specified in the TCP protocol. Delivery of each packet to the right destination is done by Internet Protocol (IP).

Answer 15.

  1. Intrusiontoprivacy.The personal information (photo, e-mail id, phone number, name, address etc.) posted on such sites can be used for illegal activities.
  2. Addiction to such sites wastes our valuable time.
  3. Spread rumors. Social media will spread the news quickly.

Answer 16.

  1. A good percentage of the population is unaware of IT applications and its uses. Most of the regular Internet users also lack knowledge about online business and its possibilities.
  2. Most of the customers, especially to the rural population, do not possess plastic money such as credit card, debit card and net banking system, which is necessary for e-Business.
  3. If not Used with caution, customers may lose valuable information like their credit card number, passwords, etc.
  4. Products like apparel, handicrafts, jewelry, etc are often purchased after examining physically. But in online shopping, customers don’t have this touch and feel advantage.
  5. For the success of e-Business of any organization or company perfect and efficient shipment service is a necessity.

Answer 17.
Plus One Computer Application Previous Year Question Papers and Answers 2018 42
Plus One Computer Application Previous Year Question Papers and Answers 2018 43

Answer 18.
Plus One Computer Application Previous Year Question Papers and Answers 2018 44

Answer 19.
It is the stage where programming errors are discovered and corrected, programming errors are known as ‘bugs’and the process of detecting and correcting these errors is called debugging.

The error messages may be displayed by the error-handling function of the language. These errors are known as a runtime error. These errors can be rectified by providing instruction for checking the validity of the data before it gets processed by the subsequent instructions in the program.

The logical error is due to the improper planning of the program’s logic. The language processor successfully translates the source code into machine code if there are no syntax errors. The computer actually follows the program instructions and gives the output as per the instructions. But the output may not be correct. This is known as logical errors.

The error messages may be displayed by the error-handling function of the language. These errors are known as a runtime error. These errors can be rectified by providing instruction for checking the validity of the data before it gets processed by the subsequent instructions in the program.

Answer 20.
a. Tokens or lexical units are the fundamental building blocks of the program. C++ has five types of tokens. They are keywords, identifiers, literals, punctuators, and operators.
b. Identifiers are the user-defined words that are used to name different program elements such as memory locations, statements, functions, objects, classes etc.
The words (tokens) that convey a specific meaning to the language compiler are called keywords. These are also known as reserved words as they are reserved by the language for special purposes and cannot be redefined for any other purposes.

Answer 21.
a. The data type specifies the nature of
data we have to store, the set of operations that can be performed on the data. Predefined data types in C++ are char, int, float, double and void, b. int data types; Integers are whole numbers without a fractional part: They can be positive, zero or negative. The keyword int represents integer numbers. It allows 4 bytes of memory.

char data types. All letters, digits, special symbols, punctuations, etc. come under this category. When these characters are used as data they are considered as char type data in C+ +. The keyword char represents character type data, void data type. The data type void is a keyword and it indicates an empty set of data. It does not require any memory space, float data types.

Numbers with a fractional part are called floating point numbers. The keyword float is used to denote such numbers. It allows 4 bytes of memory, double data type. It is used to store large real numbers. It uses 8 bytes of memory. It can be represented as double.

Answer 22.
Arithmetic operators: These are defined to perform basic arithmetic operations such as addition, subtraction, multiplication, and division. The symbols used for this are +,* and / respectively. It provides a special operator, % (modulus operator) for getting remainder during division.
Logical operators: Used to combine relational operations and it gives either true or false.

Answer 23.
a. i. x = x % 20;
ii. a = a + 2;
iii. p = p/5;
b. A specific data is stored in memory lo-cations (variables) using assignment op-erator (=). Here the value 20 is stored in the variable
a. == (equal to) is a relational operator used for comparing numeric data. Here the value 20 is compared with the value stored in the variable a.

Answer 24.

# include <iostream>'
using namespace std; 
int main()
{ 
int P, N, R; 
float SI;
cout << “Enter the values of P and N:”; cin >> P>>N; 
if (P< 100000)
{
SI = (P*N*7)/100;
cout << “Simple Interest is”<<SI;
}
else if (P>100000 && P<500000)
{
SI = (P*N*8)/100;
cout << “Simple Interest is”<<SI;
}
else if (P>500000)
{
SI = (P*N*9)/100;
cout << “Simple Interest is"<<SI;
}
return 0;
}

Answer 25.
a. 10, 13, 16, 19, 22, 25, 28 b. i = 10;

while (i<30)
{
cout<<i<<“\t”;
i+=3;
} '

Answer 26.
Satellite Broadband. Here the internet connectivity is provided through a satellite. A VSAT (Very Small Aperture Terminal) dish antenna and a transceiver (transmitter-receiver) required at the user’s side. Speed up to 1 Gbps. Used in banks, stock exchange etc.

Mobile broadband is wireless internet access using mobile phones, tablets, USB modems etc. The modems are built inside the mobile phones, tablets. You can use the internet when you are in traveling. The mobile technologies use here are 2G, 3G, and 4G.

Wimax (World Wide Interoperability for Microwave Access). The whole area of a city can be provided with wireless internet using WiMax. It uses the base station for transmitting WiMAX signals and Wimax receivers for receiving the signal. Speed ‘ up to 70 Mbps.

Answer 27.
a. Online chat, Educational TV channels, Electronic books reader (e-Books) b. 1. eLearning has the ability to offer courses on a variety of subjects to a large number of students from a distant location.
2. In e-Learning, a cost for learning is much less. It saves journey time and money, instructor fees, etc.
3. People with limited financial resources are very much supported by the lower cost of e-Learning.

Answer 28.
a. Software is a general term used to denote a set of programs that help us to use a computer system and other electronic devices efficiently and effectively. The two types of softwares are:
1. System software: It is a set of one or more programs designed to control the operations of a computer.

  • Operating system: It is a set of programs that acts as an interface between the user and computer hard ware.
  • Language processors: The instructions to the computer are written in different languages. Various language processors are:

a. Assembler: It converts languages written in assembly language into machine language.
b. Interpreter: It converts a high-level language into machine language by-line by line.
c. Compiler: It translate a high level language into machine language by converting all the lines at a time.

  • Utility software: A set of programs which help users in system maintenance tasks and in performing tasks of routine nature. Utility programs are compression tools (WinZip, Win RAR), disk defragmenter (rearranges files on a computer hard disk), backup software.

2. Application software: It is tHe software developed for a specific application. It ineludes general purpose software\(Word Processing software, spreadsheet sbftware, presentation software, database, multimedia), specific purpose software (designed to handle particular tasks).
b. Compiler: It translate a high level lan-guage into machine language by converting all the lines at a time. The errors are provided at the end of the compilation. The programming language that have a compiler are C, C++, Pascal, etc.

Interpreter: It converts a high level language into machine language by line by line. If there is an error in one line, it reports and the execution is terminated. It will continue the translation only after the correction of the error, eg., BASIC is an inter-preted language.
c. It gives the user the freedom to use, copy, distribute, examine, change and improve the software.

Answer 29.
a. Type conversion is the process of con-verting the current data type of a value into another type. It may be implicitly and explicitly converted.
It can be done in two ways:
1. Implicit type conversion: It is performed by C++ compiler internally. In expressions where different types of data are involved, C++ converts the lower sized operands to the data type of the highest sized operand. Since the conversion is always from lower type to higher, it is also known as type promotion.

2. Explicit type conversion: Sometimes the programmer may decide the data type of the result of an evaluation. This is done by the programmer by specifying the data type within parentheses to the left of the operand. Since the programmer explicitly casts a data to the desired type, it is also known as type casting. Usually, type casting is applied on the variables in the expressions.
b. Sometimes the programmer may decide the data type of the result of an evaluation.

This is done by the programmer by sSpecitying the data type within parentheses to the left of the operand. Since the programmer explicitly casts a data to the desired type, it is also known as type casting.
c. a = 3.0 or 3
b = 2.5

Answer 30.
a. Physical or logical arrangement of computers on a network is called structure or topology.
b. Bus topology. All the computers are at-tached to a single cable called the bus. Here one computer transmits all other computers listen. Therefore it is called the broadcast bus. The transmission from any station will travel in both the direction. The connected computers can hear the message and check whether it is for them or not. Advantages are add or remows computer is very easy. It requires less cable length and the installation cost is less,
c. Local Are Network (LAN): This is used to connect computers in a single room or buildings of one location by using twisted pair wire or coaxial cable. Data transfer rate is high and an error rate is less.

Wide Area Network (WAN): This is used to connect computers over a large geographical area. It is a network of networks. Here the computers are connected using telephone lines or Microwave station or satellites. The error rate in rate in data transmission is high, eg., internet.

Plus One Computer Application Previous Year Question Papers and Answers

Plus One Computer Science Model Question Paper 3

Kerala Plus One Computer Science Model Question Paper 3

Answer all question from 1 to 5
Plus One Computer Science Model Question Papers Paper 1
Question 1.
The computing machine developed by Balaise Pascal is known as ………………………………..
Plus One Computer Science Model Question Papers Paper 3

Question 2.
The conditional operator is ……………… opera­tor.
Plus One Computer Science Model Question Papers Paper 3.2

Question 3.
Write the name of the header file which contains the exit( ) function.
Plus One Computer Science Model Question Papers Paper 3.34

Question 4.
……………. is stored at the end of the string.
Plus One Computer Science Model Question Papers Paper 3.3

Question 5.
A short distance wireless internet ac­cess method is…
Plus One Computer Science Model Question Papers Paper 3.4

Answer any nine questions from 6 to 16
Plus One Computer Science Model Question Papers Paper 3.5

Question 6.
Compare the Roman number system and Mayan’s number system.
Plus One Computer Science Model Question Papers Paper 3.6

Question 7.
If (X)2 – (1o1o)2 = (1ooo)2 then find X.
Plus One Computer Science Model Question Papers Paper 3.35

Question 8.
Describe the use of electronic spread­sheets.
Plus One Computer Science Model Question Papers Paper 3.7

Question 9.
Differentiate between top-down design and bottom-up design in problem solv­ing.
Plus One Computer Science Model Question Papers Paper 3.8

Question 10.
Some of the literals in C++ are given below. How do they differ?
Plus One Computer Science Model Question Papers Paper 3.9

Question 11.
What will be the result of the following if ans is 6 initially?
Plus One Computer Science Model Question Papers Paper 3.10

  1. cout <<ans = 8 ;
  2. cout << ans == 8;

Question 12.
Write a C++ code segment to input val­ues into the array:
Plus One Computer Science Model Question Papers Paper 3.11

Question 13.
Predict the output of the following code segment:
Plus One Computer Science Model Question Papers Paper 3.12

char str[] = “program”;
for (int i=o; str[i] != ‘\o’; ++i)
{
putchar(str[i]);
putchar(‘-’);
}

Question 14.
Write down the output of the following code segment:
Plus One Computer Science Model Question Papers Paper 3.13
puts(“hello”);
puts(“friends”);

Question 15.
How can multimedia content be sent using mobile phones?
Plus One Computer Science Model Question Papers Paper 3.14

Question 16.
What are the functions of the mobile oper­ating system?
Plus One Computer Science Model Question Papers Paper 3.15

Answer any nine questions from 17 to 27
Plus One Computer Science Model Question Papers Paper 3.16

Question 17.
Find dual of following Boolean expressions:
Plus One Computer Science Model Question Papers Paper 3.17

  1. X. Y + Z
  2. C + A.1 + A.C
  3. (A+o).(A.1. A )

Question 18.
Fill in the blanks
Plus One Computer Science Model Question Papers Paper 3.18

  1. (———– )2 = (AB)l6
  2. (__ D__ )l6 = (1010_____ 1ooo)2
  3. 2510 = (______ )2

Question 19.
Differentiate compiler and interpreter.
Plus One Computer Science Model Question Papers Paper 3.19

Question 20.
Draw a flowchart to input ten different numbers and find their average.
Plus One Computer Science Model Question Papers Paper 3.20

Question 21.
Write a C++ program to check whether the given number is prime or not.
Plus One Computer Science Model Question Papers Paper 3.21

Question 22.
In how many ways can a variable be declared in C++?
Plus One Computer Science Model Question Papers Paper 3.23

Question 23.
Write a program to find the largest among the three numbers.
Plus One Computer Science Model Question Papers Paper 3.24

Question 24.
Write a C++ program to find the sum of major diagonal elements of a matrix,
Plus One Computer Science Model Question Papers Paper 3.25

Question 25.
What are the differences between the linear search method and the binary search method?
Plus One Computer Science Model Question Papers Paper 3.36

Question 26.
What are the advantages of the modular style of programming?
Plus One Computer Science Model Question Papers Paper 3.26

Question 27.
Distinguish between exit( ) function and return statement.
Plus One Computer Science Model Question Papers Paper 3.27

Answer any two questions from 28 to 30
Plus One Computer Science Model Question Papers Paper 3.28

Question 28.
Define the term green computing. List and explain the approaches that you can adopt to promote green computing concepts at all possible levels.
Plus One Computer Science Model Question Papers Paper 3.29

Question 29.
Write a program using a nested loop that inputs a number n which generates an output as follows. [Hint: If the value of n is 5, the output will be as]
Plus One Computer Science Model Question Papers Paper 3.31
Plus One Computer Science Model Question Papers Paper 3.30

Question 30.
What is network protocol? Explain.
Plus One Computer Science Model Question Papers Paper 3.32

Answer

Answer 1.
Pascaline

Answer 2.
ternary

Answer 3.
process.h

Answer 4.
The null character ‘\o’

Answer 5.
Wimax

Answer 6.
The Romans used 7 letters (I, V, X, L, C, D, and M) of the alphabet for representing numbers.
The Mayans used a number system with base 20. It is the sum of the number of fingers and toes. This number system could produce very accurate astronomical observations and make measurements with greater accuracy.

Answer 7.
(X)2 – (1o1o)2 = (1ooo)2
(X)2 – 10 = 8
18 – 10 = 8
(18)10= (1oo1o)2 = (X)2

Answer 8.
Spreadsheet software allows users to perform calculations using spreadsheets. eg., Microsoft Excel, Open Office calc, Lotus 1-2-3, and Apple numbers.

Answer 9.
Top-down design: It is the process of breaking the overall procedure or task into component parts (modules) and then subdividing each component module until the lowest level of detail is reached. It is also called top-down decomposition.
Bottom-up design: Once the overall procedure or task is broken down into component parts (modules) and each component module are further subdivided until the lowest level of detail has been reached, we start solving from the low­est module onwards. The solution for the main module will be developed only after designing a specific solution to its submodules.

Answer 10.
5 is an integer literal.
‘5’ is a character literal.
5.0 is floating point literal.
“5” is string literal.

Answer 11.

  1. 8
  2. The result will be o (false) because of 6
  3. is not equal to 8.

Answer 12.

for (int i=o; i<50; i++)
{
cin>>ar[i];
}

Answer 13.
p-r-o-g-r-a-m-

Answer 14.
hello friends

Answer 15.
Multimedia Messaging Service (MMS) is the standard way to send and receive messages consisting of multimedia con­tent using mobile phones.

Answer 16.
It is an OS used in handheld devices such as a smartphone, tablet, etc. It man­ages the hardware, multimedia func­tions, internet connectivity, etc. eg., Android, iOS.

Answer 17.
a. X + Y.Z
b. A + C . A+o . A + C
c. (A . l) + (A + o + \( \bar { A } \))

Answer 18.
a. A → 1010, B → 1011
(1010101l)2
b. (AD8)26 = (1010 1101 1ooo)2
c. (o.o1)2

Answer 19.
Compiler: It translates a high-level language into machine language by converting all the lines at a time. The errors are provided at the end of the compilation. The programming language that has a compiler are C, C++, Pascal, etc.
Interpreter: It converts a high-level language into machine language by-line by line. If there is an error in one line, it reports and the execution is terminated. It will continue the translation only after the correction of the error, eg., BASIC is an interpreted language.

Answer 20.
Plus One Computer Science Model Question Papers Paper 3.33

Answer  21.

#include<iostream>
#include<cstdlib>
using namespace std; int main()
{
int i, num;
cout<<“Enter the number: cin>>num;
for(i=2; i<=num/2; ++i)
}
if(num%i == o)
{
cout<<“Not a Prime Number”; exit(o);
}
}
cout<<“Prime Number”; return 0;
}

Answer 22.
In C+ +, variable can be declared in three ways. They are:

  • Uninitialized variable, eg., int a;
  • Initialised variable, eg., int a = 2;
  • Dynamically initialized variable,
  • eg., int a = b + 10;

Answer 23.

#include <iostream> 
using namespace std;
 int main( )
{
int a, b, c;
cout << “Enter three different num­bers: ”;
cin >>a>>b>>c;
 if (a > b)
{
if (a > c)
cout<<“The largest number is:”<< a; else
cout << “The largest number is:”<<c;
}
else
{
if Ob > c)
cout << “The largest number is:”<<b; else
cout << “The largest number is: ”<<c;
}
return o;
}

Answer 24.

#include <iostream> 
using namespace std; int main( )
{ int mat[io][io], n, i, j, s=o;
cout<<“Enter the rows/columns of square matrix: ”; 
cin> >n;
cout<<“Enter the elements\n”; for(i=o; i<n; i++)
for(j=o; j<n; j++) 
cin> >mat[i][j];
cout<<“Major diagonal elements are\n”;
for(i=o; i<n; i++)
{
cout<<mat[i][i]<<“\t”; 
s = s + mat[i][i];
}
cout<<“\nSum of major diagonal elements is: 
cout<<s; 
return o; 
}

Answer 25.
Linear search method:

  • The elements need not to be in any or­der.
  • Takes more time for the process.
  • May need to visit all the elements.
  • Suitable when the array is small.

Binary search method:

  • The elements should be in sorted or­der.
  • Takes very less time for the process.
  • All the elements are never visited.
  • Suitable when the array is large.

Answer 26.

  • It reduces the size of the program
  • Less chances of error.
  • Modularization reduces program­ming complexity.
  • Improves reusability.

Answer 27.
The return statement returns a value to the calling function and transfers the program control back to the calling function.
The exit( ) function terminates the ex­ecution of the program itself.

Answer 28.
Green computing is the study and prac­tice of environmentally sustainable computing or IT. To promote green computing, there are 4 approaches are used. They are:

  1. Green design: Designing energy effi­cient and eco-friendly computers and devices.
  2. Green manufacturing: Minimising waste during the manufacturing of IT devices.
  3. Green use: Minimising the electric­ity consumption of computers.
  4. Green disposal: Reconstructing used computers or appropriately disposing off or recycling unwanted electronic equipment.

Answer  29.

#include<iostream>
using namespace std;
int main( )
{
int n, i, j, s;
cout<<“Enter the value of n”; cin> >n;
for (i=n; i>=i; i- -)
{
for (j=n; j>=i; j- -)
{
s = j * j;
cout<<s<<“\t”;
}
cout< <“\n”;
}
return o;
}

Answer 30.
A protocol is a collection of rules and regulations to transfer data from one location to another. Different types of protocols are:

  1. Transmission Control Protocol (TCP): It uses a set of rules to exchange mes­sages with other internet points at the information packet level.
  2. Internet Protocol (IP): It uses a set of rules to send and receive messages at the internet address level.
  3. File Transfer Protocol (FTP): It is used for transferring files between comput­ers connected to local network or internet.
  4. Hyper Text Transfer Protocol (HT­TP): It is a protocol used for WWW for enabling the web browser to access the web server and request HTML documents.

Plus One Computer Science Previous Year Question Papers and Answers

Plus One Accountancy Model Question Paper 3

Kerala Plus One Accountancy Model Question Paper 3

Time Allowed: 2 hours
Cool off time: 15 Minutes
Maximum Marks: 60

Answer all questions from question numbers 1 to 9. Each carries one score.
Plus One Accountancy Model Question Papers Paper 3
Question 1.
The fact that a business is separated and distinguished from its owner is best exempli­fied by the concept.
a. money measurement
b. going concern
c. business entity
d. cost
Plus One Accountancy Model Question Papers Paper 3.1

Question 2.
In every organization, a large number of small payments of repetitive nature are there. To record these as a separate cash book is main­tained is called petty cash book. Name the person who prepares this book.
Plus One Accountancy Model Question Papers Paper 3.2

Question 3.
Consider the following fields of MS Access
Plus One Accountancy Model Question Papers Paper 3.3
Voucher
Voucher
No Voucher Name
Here, ‘voucher’ stands for_____
Plus One Accountancy Model Question Papers Paper 3.4

Question 4.
Furniture bought on credit is the wrong re­corded in the cash book. It is an exam-pie of an error of….
a. principle
b.compensation
c. commission
d. omission
Plus One Accountancy Model Question Papers Paper 3.5

Question 5.
Name any two internal users of accounting information of your choice.

Question 6.
Income tax paid by the sole trader from the business is treated as____
a. Capital
b. Drawings
c. Expensed.
d. None of these
Plus One Accountancy Model Question Papers Paper 3.7

Question 7.
Arun sold goods on credit for Rs. 1000 to Amal. Who is the debtor in this transactions?
Plus One Accountancy Model Question Papers Paper 3.7

Question 8.
……………is used as a source document for recording purchase return.
Plus One Accountancy Model Question Papers Paper 3.8

Question 9.
Complete the series based on the hint given:
Plus One Accountancy Model Question Papers Paper 3.9
Hint: Intangible asset – goodwill

  1. Fictitious asset -________
  2. Liquid asset – __________

Answer any five from question numbers 10 to 15. Each carries two scores.

Question 10.
Prepare a cash book from the follow­ing transactions of grace enterprises for the month of December 2010.
Plus One Accountancy Model Question Papers Paper 3.10

Question 11.
Computerised accounting has some advan­tages over manual accounting. List out any four such advantages.

DateDetails of transactionsAmount
Dec 1Cash in hand15000
Cash at bank10000
Dec 8Purchased goods for cash5000
Dec 15Sold goods for cash7000
Dec18Cash deposited into bank4000
Dec 20Paid rent500
Dec 25Withdraw cash for personal use250
Dec28Purchased goods and pay
ment made by cheque
1000
Dec 29Received commission200

Question 11.
Computerised accounting has some advan­tages over manual accounting. List out any four such advantages.
Plus One Accountancy Model Question Papers Paper 3.11

Question 12.
Jaya Brothers is a sole trader who invested Rs 10000 on 01-01-2012 in his business and the accounting year. He also withdrew Rs 6000 for his private use. Ascertain his profit for the year.
Plus One Accountancy Model Question Papers Paper 3.12

Question 13.
Given below is an extract taken from the Trial Balance of a trader as on 31 -12-2012

DebtorsRs 9100
Bad debtsRs 1000
Provision for bad debtsRs 900

Additional information:
a. Further bad debts to be written off this year were Rs 100.
b. 10% is reserved for further bad debts
How much amount has to be debited to the Profit and Loss account?
Plus One Accountancy Model Question Papers Paper 3.13<

Question 14.
Unni purchased goods for Rs 9818 and the trader allowed a discount of Rs 18 at the time of purchase.
a. Identify the type of discount
b. Mention the other types of discounts available and differentiate them with the one stated above.
Plus One Accountancy Model Question Papers Paper 3.14
Plus One Accountancy Model Question Papers Paper 3.15

Question 15.
Consider the following information from the books of Mr. Sidique.
a. Profit for the year Rs. 60000
b. Additional capital introduced by him Rs. 50000
c. Drawings by him this year Rs.30000
d. Capital at the end of the year Rs.200000
Find the capital contributed by him at the beginning of the year.
Plus One Accountancy Model Question Papers Paper 3.16

Answer any three from question numbers 16 to 19 Each carries three scores.
Plus One Accountancy Model Question Papers Paper 3.17

Question 16.
M.S. Brothers carry on business as cloth deal­ers. From the following, write their purchase book for January 2010
Plus One Accountancy Model Question Papers Paper 3.18
Plus One Accountancy Model Question Papers Paper 3.19
3rd Jan-2010

Purchased on credit from Ambika Mills, 100 meters long cloth @ Rs 30 per meter and 50 meters shirting @ 50 per meter.

8th Jan-2010
Purchased for cash from Aravind Mills, 50 meters muslin@ Rs 40 per meter
15th Jan-2010

Purchased on credit from India Textile Mills, 120 meters suiting @ Rs 100 perimeter and 100 meters shirting @ 60 per meter.

20th Jan-2010
Purchased laser printer on credit from Bharath Company Ltd. for Rs 12000

Question 17.
0n January 31, 2013, the passbook of Miss Reshmi showed a credit balance of Rs 15000. On verifying the passbook with the cash book, the following was observed.
Plus One Accountancy Model Question Papers Paper 3.20
Plus One Accountancy Model Question Papers Paper 3.74
1. Ascertain the cash book balance as on the above date.
2. Give any two causes of differences between a cash book and a passbook other than the four stated above.
Plus One Accountancy Model Question Papers Paper 3.21

Question 18.
0n 1st July 2011, Mrs. Kavitha sold goods to Mrs. Molly for Rs 10000 and drew 2 months bill for that amount which was duly accepted. On 5th July 2011, Mrs. Kavitha discounted the same with the bank for Rs 8500. On the due date, the bill was dishonored and noting charges of 150 was paid by the bank. Show the journal entries in the books of both the parties.

Plus One Accountancy Model Question Papers Paper 3.22

Question 19.
Prasad kept his books under single entry system. His position as on 31 -12-2012 was as follows.
Plus One Accountancy Model Question Papers Paper 3.23

Plus One Accountancy Model Question Papers Paper 3.24

His capital account shows a credit balance of Rs 54000 as on 01-01-2012. He introduced
an additional capital of Rs 5000 during the financial year. He withdrew Rs 10000 for
personal purpose. Ascertain his profit for the yearended3l-12-20l2.
Plus One Accountancy Model Question Papers Paper 3.28

Answer any two from question number 20 to 22. Each carries four scores.
Plus One Accountancy Model Question Papers Paper 3.29

Question 20.
On 01 /01 /2013, A sold goods to B for Rs 2000 and on the same day, ‘A’ drew upon ‘B’ a bill of Rs 2000 for three months. On 06/01/2013, the bill has been discounted and received Rs 1800. On the due date, the bill has been dishonored.
Draw up the journal in the drawer’s book.
What would be the entry have been had the banker spent Rs 100 for noting the bill?
Plus One Accountancy Model Question Papers Paper 3.30
Plus One Accountancy Model Question Papers Paper 3.31

Question 21.
Give journal entries for the following tran­sactions.
1. Ram started a business with cash Rs. 80,000/- Building Rs. 1,50,000/­Machinery Rs. 1,20,000/- and stock of goods Rs. 50,000/-
2. He purchased goods for Rs. 70,000 of which he paid Rs. 50,000 in cash and balance on credit from Mohan
Plus One Accountancy Model Question Papers Paper 3.32

Question 22.
The following is the trial balance of Ammu Associates for the year ending 31st Dec­ember, 2014 and other information relating are given to you. Find the working result of business and also show the financial position of them for the year.
Plus One Accountancy Model Question Papers Paper 3.33
Plus One Accountancy Model Question Papers Paper 3.34

Additional information:

  • Closing stock is valued at Rs. 25000
  • Salary of an employee is not paid Rs.500
  • Further bad debt incurred Rs. 200
  • Provision for bad debt is created at 5% on debtors.

Answer question numbers 23 and 24. Each car­ries five scores.

Question 23.
Some transactions relating to business are given below:

  1. Prepare a suitable cashbook from the above.
  2. Identify a special Journal where goods withdrawn by the proprietor for perso­nal use worth Rs 200 will be recorded

Plus One Accountancy Model Question Papers Paper 3.36
Plus One Accountancy Model Question Papers Paper 3.37
Plus One Accountancy Model Question Papers Paper 3.38
Plus One Accountancy Model Question Papers Paper 3.39

Question 24.
The following balances are taken from the books of Mr. Biswas. After making the following adjustments, prepare the Trading and Profit and Loss accounts for the year ended 31 st March 2014 and a Balance Sheet as on that date.
Plus One Accountancy Model Question Papers Paper 3.40
Plus One Accountancy Model Question Papers Paper 3.41

Answer any one from question numbers 25 and 26. A question carries six scores.
Plus One Accountancy Model Question Papers Paper 3.42

Question 25.
Compute the cost of goods sold and gross profit with the help of the following information.
Plus One Accountancy Model Question Papers Paper 3.43

Question 26.
Prepare the financial statements of Rajeevan Stores for the year 2012-13 from the information given below.
Plus One Accountancy Model Question Papers Paper 3.44
Plus One Accountancy Model Question Papers Paper 3.45
Adjustments:
(a) The closing stock was valued at Rs 7000.
(b) Wages yet to be paid Rs 300.
(c) Rent includes advance payments of Rs 600 for the next year.
(d) Bad debts are written off Rs 400.
(e) Depreciate building at 10% per annum.
Plus One Accountancy Model Question Papers Paper 3.46

Answer question number 27, which carries eight scores.
Plus One Accountancy Model Question Papers Paper 3.47
Question 27.
What do you mean by accounting, branc­hes of accounting and explain the features of accounting?
Plus One Accountancy Model Question Papers Paper 3.48

Answer

 

Answer 1.
business entity

Answer 2.
Petty cashier

Answer 3.
Entity

Answer 4.
principle

Answer 5.
Managers, Employees

Answer 6.
Drawings

Answer 7.
Amal

Answer 8.
Debit Note

Answer 9.
Preliminary expenses / Profit and loss (Debit balance)

Answer 10.
Double column cash book
Plus One Accountancy Model Question Papers Paper 3.49

Answer 11.
1. Speed: A computer is able to process data at a very high speed than that of a human being.
2. Accuracy: gree of exactness with which compu­tation are made and operations are performed.
3. Diligence: Computers can work for long hours without any laxity and monotony.
4. Versatility: Computers have the ability to perform a variety of task, simple as well as complex. It can be used in any area of application – business, industry, statistical, technological etc.

Answer 12.
Statement of Profit / Loss for the year ended
Plus One Accountancy Model Question Papers Paper 3.50

Answer 13.
Plus One Accountancy Model Question Papers Paper 3.51

Answer 14.

Trade discountCash discount
(1) It is allowed by the seller to the purchaser(1) It is allowed by the creditor to the debtor
(2) The purpose is to encourage bulk purchases(2) The purpose is to encourage prompt payment
(3) It is not shown in the books of accounts(3) It is shown in the books of accounts

Answer 15.
Plus One Accountancy Model Question Papers Paper 3.52

Answer 16.
Plus One Accountancy Model Question Papers Paper 3.53

Answer 17.
Plus One Accountancy Model Question Papers Paper 3.54
ii.
(a) Interest, dividend etc collected by the bank
(b) Direct payment by the bank on behalf of the customer.
(c) Interest credited by the bank.
(d) Dishonor of cheques/bill.

Answer 18.
In the books of Mrs. Kavitha
Plus One Accountancy Model Question Papers Paper 3.55
Plus One Accountancy Model Question Papers Paper 3.73

Answer 19.
Plus One Accountancy Model Question Papers Paper 3.56

Answer 20.
In the books of Drawer (A)
Plus One Accountancy Model Question Papers Paper 3.57
Answer 21.
Plus One Accountancy Model Question Papers Paper 3.58

Answer 22.
Plus One Accountancy Model Question Papers Paper 3.59

Answer 23.
Plus One Accountancy Model Question Papers Paper 3.60

Answer 24.
Plus One Accountancy Model Question Papers Paper 3.61

Answer 25.
Cost of goods sold = opening stock + Purchase + Direct = Expenses – closing stock
=60000 + (30000-2000) + 50000 + 10000-80000
= 60000 + 298000 + 60000 – 80000 = 338000
Gross profit = Sales (Net) – Cost of goods sold = (400000 – 3000) – 338000 = 59000
Plus One Accountancy Model Question Papers Paper 3.62

Answer 26.
Plus One Accountancy Model Question Papers Paper 3.63
Plus One Accountancy Model Question Papers Paper 3.64

Answer 27.
Meaning and Definition of Accounting According to the American Institute of Certified public Accountants [AICPA], “Accounting is an art of recording, classi­fying and summarizing in a significant manner and in terms of money, trans­actions and events which are, in part, at least, of a financial character and inter­preting the result thereof’.

Branches of Accounting
In order to satisfy the needs of the differ­ent people interested in accounting infor­mation, various branches of accounting have developed. They are:
Plus One Accountancy Model Question Papers Paper 3.65

1. Financial Accounting: It is the original form of accounting. The purpose of this form of accounting is to record transa­ctions in the books of accounts and to prepare the financial statements and interpreting the results.
Plus One Accountancy Model Question Papers Paper 3.66

2. Cost Accounting: This branch of accounting deals with the process of ascertainment of cost with the help of this system, the cost of product or services can be ascertained and controlled. It is more helpful to the management of the business.
Plus One Accountancy Model Question Papers Paper 3.67
Plus One Accountancy Model Question Papers Paper 3.68

3. Management Accounting: It is con­cerned with the use of financial and cost accounting information to managers for making business decisions.

Accounting Process/Features
Identification: It means determining and identifying events that are to be recorded in business. The business transactions and other economic events, therefore, be evaluated for deciding whether it has to record in the accounts
Plus One Accountancy Model Question Papers Paper 3.70
Measurement: It means quantification of business transactions into financial terms by using monetary units (Rupees). If an event cannot be monetarily expressed, it is not considered for recording.

Recording: Once the economic events are identified and measured, they are recorded in the books of accounts in chronological order.
Plus One Accountancy Model Question Papers Paper 3.70

Communication: The summarised accounting information has to be communicated in a proper form to the internal as well as external users.
Plus One Accountancy Model Question Papers Paper 3.71

Objectives of Accounting:
Plus One Accountancy Model Question Papers Paper 3.72

Plus One Accountancy Previous Year Question Papers and Answers

Plus One Accountancy Model Question Paper 2

Kerala Plus One Accountancy Model Question Paper 2

Time Allowed: 2 hours
Cool off time: 15 Minutes
Maximum Marks: 60

Answer all questions from question numbers 1 to 9. Each carry one score.
Plus One Accountancy Model Question Papers Paper 2

Question 1.
Credit purchase is calculated by preparing……….
Plus One Accountancy Model Question Papers Paper 2.1
a. Total Debtors account
b. Total Creditors account
c. Bills Receivable account
d. Bills Payable account

Question 2.
Under which one of the following can the asset of ‘Debtors’ be well placed?
Plus One Accountancy Model Question Papers Paper 2.2
a. Real asset
b. Fixed asset
c. Current asset
d. Human asset.

Question 3.
The drawer of a bill of exchange is always the………
Plus One Accountancy Model Question Papers Paper 2.3
a. Debtor
b. Endorser
c. Creditor
d. Proprietor

Question 4.
Introduction of the latest technologies may be one of the causes for_________
Plus One Accountancy Model Question Papers Paper 2.4<
a. Depletion
b. Amortisation
c. Appreciation
d. Depreciation

Question 5.
What will be the effect on the trial balance if Rs 500 is received as interest and correctly entered in the cash book, but posted to the debit side of interest account?
Plus One Accountancy Model Question Papers Paper 2.5

Question 6.
A bill dated August 1, 2012, is payable two months after date. If the due date is a public holiday, what will be the date of maturity of the bill?
Plus One Accountancy Model Question Papers Paper 2.6

Question 7.
When the debit of income and expenditure is more than its credit, it leaves a………
Plus One Accountancy Model Question Papers Paper 2.7
a. profit
b. surplus
c. deficit
d. loss

Question 8.
A ____ is a person to whom business owes money.
Plus One Accountancy Model Question Papers Paper 2.8
a. Debtor
b. Creditor
c. Investor
d. Borrower

Question 9.
Furniture bought on credit is wrongly re­corded in the cash book. It is an exam-pie of an error of ………..
Plus One Accountancy Model Question Papers Paper 2.9
a. Error of principle
b. Error of compensation
c. Error of commission
d. Error of omission

Answer any five from question numbers 10 to 15. Each carries two scores.
Plus One Accountancy Model Question Papers Paper 2.10
Question 10.
The trial balance is a statement prepared to check the arithmetical accuracy of business.
a. Name any two types of errors which can­ not be disclosed through this state­ment.
b. Rectify the following errors.

  1. Office furniture purchased for Rs. 5000 was posted to purchase acco­unt.
  2. Cash sales Rs. 2000 was posted as Rs. 200.
  3. Goods withdrew by the proprietor for personal use Rs. 1000 was not recorded in the books

Plus One Accountancy Model Question Papers Paper 2.11
Plus One Accountancy Model Question Papers Paper 2.12

Question 11.
Every transaction has two aspects which will be recorded in the books of accounts.
a. Identify and explain the accounting concept referred to above, by giving suitable examples.
b. Narrate a transaction which affects only the asset side of an accounting equation
Plus One Accountancy Model Question Papers Paper 2.13

Question 12.
The following errors are noticed in the books of accounts of a trader at the time of prepara­tion of a Trial Balance.
Plus One Accountancy Model Question Papers Paper 2.14
a. Sales book was overcast by Rs 300
b. Salary paid Rs 1500 was wrongly debited to Wages account.
c. Goods sold to Kavitha worth Rs 2000 were completely omitted to be reco­rded.
d. Rent amounting to Rs 1200 was recei­ved but debited to Rent account as Rs 120.

    1. Pass the rectification entries for the above.
    2. Identifying the compensating error from the above.

Plus One Accountancy Model Question Papers Paper 2.15
Plus One Accountancy Model Question Papers Paper 2.16

Question 13.
Which assumption of accounting states that the capital supplied by the proprietor is a li­ability to the business? Describe it in one or two sentences.
Plus One Accountancy Model Question Papers Paper 2.17

Question 14.
Jaya Brothers is a sole trader who invested Rs 10000 on 01-01-2012 in his business and the same was found at Rs 18000 at the end of the accounting year. He also withdrew Rs 6000 for his private use. Ascertain his profit for the year.
Plus One Accountancy Model Question Papers Paper 2.18

Question 15.
Unni purchased goods for Rs 9818 and the trader allowed a discount of Rs 18 at the time of purchase.
a. Identify the type of discount
b. Mention the other, types of discounts available and differentiate them with the one stated above.
Plus One Accountancy Model Question Papers Paper 2.19

Answer any three from question numbers 16 to 19. Each carries three scores.
Plus One Accountancy Model Question Papers Paper 2.20

Question 16.
Kannan and Sona acquired a machine for Rs.1,80,000 on 10th Oct 2012 and spend Rs. 20000 for its installation. The firm write-off depre­ciation at the rate of 10% p.a. on original cost every year. Draw up machinery account for the first 3 years given that the books of accounts close on March 31 st every year.
Plus One Accountancy Model Question Papers Paper 2.21

Question 17.
Prepare a Bank Reconciliation Statement on behalf of Lalu shoe mart as on 31 -03-2013.

  • Balance as per cash book as on 31­03-2013 was Rs 3000.
  • A cheque worth Rs 2000 issued for rent, so far not presented to a bank
  • Interest credited to passbook was only 1200
  • Chinnu, one of our customers, cred­ited Rs 4000 to our bank directly.
  • Bank charges of Rs 200 were not cr­edited to the cash book so far.

Plus One Accountancy Model Question Papers Paper 2.23
Plus One Accountancy Model Question Papers Paper 2.24

Question 18.
Noel, the sole trader bought a building for Rs. 1,00,000 on01/01/2009.
Further, he constructed another building which was completed on 01 /01 /2010. He spent Rs 2,00,000 for this.
Depreciation was charged at the end of every year on 31st December on the diminishing balance method @10%. Draw the building account till 2012.
Plus One Accountancy Model Question Papers Paper 2.25

Question 19.
On 1st January 2012, Rajan sold goods to Suresh for Rs 25000 and drew upon him a bill of exchange for 2 months. Suresh accepted the bill and returned it to Rajan. He then endorsed the bill to Manoj, who discounted the bill with the bank on 15-01 -2012 for cash Rs 24750. The bill was dishonored on the due date. Show the journal entries in the books of Rajan and Suresh.
Plus One Accountancy Model Question Papers Paper 2.26
Plus One Accountancy Model Question Papers Paper 2.27

Answer any two from question numbers 20 to 22. Each carries four scores.
Plus One Accountancy Model Question Papers Paper 2.28
Question 20.
On 1st January 2015, Arya sold goods to await for Rs. 10000 and drew a bill of exchange for 3 months. Adwaith accepted the bill. In 7th Feb 2015 Arya discounted the bill with her bank for Rs. 9800. But on the date of maturity of the bill, Adwaith was unable to make the payment. Pass the journal entries in the books of Arya.

Plus One Accountancy Model Question Papers Paper 2.29

Question 21.
On 1st July 2012, a firm purchased a plant worth Rs 40,000. The firm writes-off depreciation @ 10% on the original cost. The accounts are closed on 31st December every year. If the plant is sold for Rs 35000 on 1st July 2013, prepare the plant account up to this date.

Plus One Accountancy Model Question Papers Paper 2.30

Question 22.
Ali purchased goods for Rs 30000 from Stephen on 1st January 2015. A bill was drawn for three months which was accepted by the drawee and returned to Stephen. On the same day, the bill was discounted with the bank @12%. Pass the entries in the
books of the drawer and drawee.
Plus One Accountancy Model Question Papers Paper 2.31
Plus One Accountancy Model Question Papers Paper 2.32

Answer question numbers 23 and 24. Each car­ries five scores.

Question 23.
Prepare a double column cash book on behalf of a cloth merchant from the information given below.
Plus One Accountancy Model Question Papers Paper 2.33
Plus One Accountancy Model Question Papers Paper 2.34

Question 24.
Noel, the sole trader bought a building for Rs. 1,00,000 on01/01/2009.
Further, he constructed another building which was completed on 01 /01 /2010. He spent Rs 2,00,000 for this.
Depreciation was charged at the end of every year on 31st December on the diminishing balance method @10%. Draw the building account till 2012.
Plus One Accountancy Model Question Papers Paper 2.35

Answer any one from question numbers 25 and 26 A question carries six scores.
Plus One Accountancy Model Question Papers Paper 2.36
Plus One Accountancy Model Question Papers Paper 2.37
Question 25.
Mention the difference between double en­try and single entry system.
Plus One Accountancy Model Question Papers Paper 2.38

Question 26.
Find the sale of Binesh from the following information provided by him for the year ending 31 st March 2013.
Plus One Accountancy Model Question Papers Paper 2.39

Answer question number 27, which carries eight scores.
Question 27.
From the following Trial balance, prep­are the Trading and Profit and Loss account for the year ended 31st Dece­mber 2012 and a Balance sheet as on that date considering the adjus­tments given.
Plus One Accountancy Model Question Papers Paper 2.40
Plus One Accountancy Model Question Papers Paper 2.41
Adjustments required:
(a) The closing stock was valued at Rs 18000.
(b) Insurance prepaid Rs 200.
(c) Salary outstanding Rs 3000.
(d) Rs 500 written off as further bad debts
(e) Provide 10% on debtors against bad and doubtful debts.
(f) Depreciate furniture @10%

Answer

Answer 1.
Total Creditors account

Answer 2.
Current asset

Answer 3.
Creditor

Answer 4.
Depreciation (Obsolescence)

Answer 5.
A liability

Answer 6.
The expense for the business

Answer 7.
Procedure

Answer 8.
Creditor

Answer 9.
Error of principle

Answer 10.
a. Errors of Principle, Compensating errors
Plus One Accountancy Model Question Papers Paper 2.42

Answer 11.
a. Duality concept/Double entry concept
According to the duality concept, every business transaction has two aspects

  • a debit aspect (giving aspect) and
  • a credit aspect (receiving aspect).

Eg: Purchased goods for cash
Debit aspect – Purchases
Credit aspect – Cash
b.

  • Purchased machinery for cash
  •  Sold furniture for cash etc.

Answer 12.
Plus One Accountancy Model Question Papers Paper 2.43
Plus One Accountancy Model Question Papers Paper 2.44

Answer 13.
A business entity or Accounting entity. According to this concept, the business unit has a separate entity apart from its owners. Thus the proprietor and his dealings with the business should be regarded as a transaction.

Answer 14.
Statement of Profit / Loss for the year ended 31-12-2012
Plus One Accountancy Model Question Papers Paper 2.45

Answer 15.

Trade discountCash discount
1) It is allowed by the seller to the purchaser1) It is allowed by the creditor to the debtor
2) The purpose is to encourage bulk purchases2) The purpose is to encourage prompt payment
3) It is not shown in the books of accounts3) It is shown in the books of accounts

Answer 16.
Plus One Accountancy Model Question Papers Paper 2.46

Answer 17.
Bank Reconciliation Statement as on 31-03-2013
Plus One Accountancy Model Question Papers Paper 2.47

 

Answer 18.
Plus One Accountancy Model Question Papers Paper 2.48

Answer 19.
Plus One Accountancy Model Question Papers Paper 2.49
Plus One Accountancy Model Question Papers Paper 2.50
Plus One Accountancy Model Question Papers Paper 2.51

Answer 20.
Plus One Accountancy Model Question Papers Paper 2.52

Answer 21.
Plus One Accountancy Model Question Papers Paper 2.53

Answer 22.
In the books of Drawer (Stephen)
Plus One Accountancy Model Question Papers Paper 2.54

Answer
23.
Plus One Accountancy Model Question Papers Paper 2.55

Answer 24.
Plus One Accountancy Model Question Papers Paper 2.56

Answer 25.
The following are the difference between the double-entry system and single entry system.

Single Entry SystemDouble Entry System

(1) Dual aspects of transactions are not recorded.

(2) As trial balance is not prepared, arithmetical accuracy can’t be checked.

(3) Only an estimate of profit can be made.

(4) The balance sheet cannot be prepared to ascertain the financial position

(5) This system is suitable for a sole trader who has a few transactions

(1) Dual aspects of every transaction are recorded.

(2) The trial balance is prepared to check the
arithmetical accuracy.

(3) Actual net profit can be calculated

(4) The balance sheet can be prepared to ascertain the financial position

(5) This is suitable for all types of business enterprises.

Answer 26.
Plus One Accountancy Model Question Papers Paper 2.57
Answer 27.
Trading and Profit and Loss Account for the year ended 31-12-2012
Plus One Accountancy Model Question Papers Paper 2.58
Plus One Accountancy Model Question Papers Paper 2.59

Plus One Accountancy Previous Year Question Papers and Answers

Plus One Accountancy Model Question Paper 1

Kerala Plus One Accountancy Model Question Paper 1

Time Allowed: 2 hours
Cool off time: 15 Minutes
Maximum Marks: 60

Answer all questions from question 1-5 which carries score 1 each.
Plus One Accountancy Model Question Papers Paper 1
Question 1.
Rajeev received an order for 100 Churidars of र 250 per Churidar from Krishna Textiles. But the accountant did not record the item in the books. Point out the accounting con­cept guided the accountant.
Plus One Accountancy Model Question Papers Paper 1.1

Question 2.
A loan can be treated as a short loan if the period is
a. years
b. More than two years
c. Less than one-year
d. than one year
Plus One Accountancy Model Question Papers Paper 1.2

Question 3.
Did Sam sell goods worth? 15000 on 10-03-2016 to Dinesh and drew a bill for two months. Calcu­late the maturity date if Dinesh accepted it
Plus One Accountancy Model Question Papers Paper 1.3
Plus One Accountancy Model Question Papers Paper 1.4

Question 4.
Identify the key attribute from the following:
a. Name of the student
b. Admission number
c. Class
d. Date of birth
Plus One Accountancy Model Question Papers Paper 1.5

Question 5.
SQL stands for
a. Structured Question Language
b Standard Question Language
c. Structuared Query Language
d. Standard Query Language
Plus One Accountancy Model Question Papers Paper 1.6
Question 6.
Fill in the blanks with suitable examples.
Plus One Accountancy Model Question Papers Paper 1.8

Question 7.
The following is the error committed in the book of a car Manufacturing company
Wages A/c Dr
Cash A/c
(Being wages paid for the construction of build­ing)

    1. Show the rectification error
    2. Identify the types of error involved

Plus One Accountancy Model Question Papers Paper 1.9

Question 8.
Prepare a statement showing the accounting equation on the basis of following transac­tions.
1. Nihara started a business with cash र 5,00,000
2. Purchased goods from Nirmal for र 60,000
3. Paid into Bank र 75,000
4. Sold goods to Abi costing र 80,000 for र1,00,000
Plus One Accountancy Model Question Papers Paper 1.10
Plus One Accountancy Model Question Papers Paper 1.11

Question 9.
Show the Debit or Credit of the following items.
a. Increase in the value of Fixed asset
b. Increase the amount of withdrawals from the business for private affairs
c. Decrease the value of debtors
Plus One Accountancy Model Question Papers Paper 1.13

Question 10.
An amount transferred from one account to another account is treated a contra entry. Write two more examples of contra entry.
Plus One Accountancy Model Question Papers Paper 1.13

Question 11.
Plus One Accountancy Model Question Papers Paper 1.14
Plus One Accountancy Model Question Papers Paper 1.15

Question 12.
Briefly explain the following terms:
a. Single Entry
b. Accrual System
Plus One Accountancy Model Question Papers Paper 1.16

Answer any five from question numbers 13 to 18. Each carries two scores.
Plus One Accountancy Model Question Papers Paper 1.17

Question 13.
From the following transactions of M/s Sujith and Sons for the month of April 2017. Pre­pare Purchase Day Book.
April 52017 purchased credit from M/s Rahul Mills.
100 pieces of long cloths @ र 90/piece 50 pieces of shirting @ र 150/piece.
April 8, 2017, Purchased for cash from M/s Niranjan Mills.
50 pieces of suiting @ र 180/piece.
April 152017 purchased goods on credit from Sunil Mills.
20 pieces of coatings @ र 1200/piece.
10 pieces of shirtings  150/piece.
April 20, 2017, purchased credit from Laneesh T.raders
60 typewriter र@ 500 each.
Plus One Accountancy Model Question Papers Paper 1.18
Plus One Accountancy Model Question Papers Paper 1.19

Question 14.
Identify the type of errors on the basis of the following narrations:
Plus One Accountancy Model Question Papers Paper 1.20
Plus One Accountancy Model Question Papers Paper 1.21

Question 15.
Find out the profit of the business from the given information:
Capital at the beginning of the year र 6,50,000
Capital at the end of the year  र 5,00,000
Drawings made during the year र 2,75,000
Additional Capital introduced र  50,000
Plus One Accountancy Model Question Papers Paper 1.22

Question 16.
List out the three distinct advantages of computerised accounting over manual ac­counting
Plus One Accountancy Model Question Papers Paper 1.23

Question 17.
What is a Query in computerised accounting?
Plus One Accountancy Model Question Papers Paper 1.24

Question 18.
Balance sheet differs from the statement of affairs. Write three points to support the above state­ment
Plus One Accountancy Model Question Papers Paper 1.27

Answer any three from question numbers 19 to 22. Each carries four scores.
Plus One Accountancy Model Question Papers Paper 1.26

Question 19.
Gopal cashier of star traders advanced र 2,000 as imprest amount to Ramesh on 1 -1 -2017 the petty cashier of the firm. Could you help Ramesh to record the following items?
Plus One Accountancy Model Question Papers Paper 1.28
Plus One Accountancy Model Question Papers Paper 1.29

Question 20.
Soorya Traders purchased machinery for र  1,50,000 on 1 -1 -2012. The further purchased machinery on 1-7-2013 for र 80000. Prepare Machinery Account for three years considering that the firm writes off depreciation at the rate of 10 % on original cost every year.
Plus One Accountancy Model Question Papers Paper 1.30

Question 21.
Hari in a discussion agrees that financial statements are the most reliable accounting report to exhibits the profitability of the firm. Do you agree? why?
Plus One Accountancy Model Question Papers Paper 1.54

Question 22.
Write journal entries for the following transactions:
a. Did business start with cash र 1,00,000
b. Purchased goods from Manu र 40,000
c. Purchased furniture र 1,50,000
d. Paid cash to Manu in full settlement
Plus One Accountancy Model Question Papers Paper 1.31

Answer question numbers 23 and 25. Each car­ries five scores.
Question 23.
Prepare a bank reconciliation statement.
a. Overdraft is shown as perc ash book 31-12-2017 र 20,000.
b. Bank charges debited in the passbook
c. Interest on overdraft र 760.
d. Cheque issued but not encashed र 4,300.
e. Interest on investment collected by the Bank and credited in the passbook र 120.
f. Cheque paid into Bank but not cleared before 31-12-2017? 2,200.
Plus One Accountancy Model Question Papers Paper 1.55

Question 24.
Sojan sold goods for? 50,000 to Sreejithon 1­4-2017. Sojan drew a bill of exchange upon Sreejith for the same amount for three months. Sreejith accepted the bill and resumed into Sojan. Sojan endorsed the bill to George. The bill is dishonored on the due date. Show the journal entries in the books of Sojan.
Plus One Accountancy Model Question Papers Paper 1.56

Answer any one from question numbers 25 and 26. A question carries six scores.

Question 25.
List out five situations which lead discrep­ancies in the pass book balance and cash book balance.
Plus One Accountancy Model Question Papers Paper 1.33

Answer the following questions which carry 8 scores.
Plus One Accountancy Model Question Papers Paper 1.34

Question 26.
The following balances are extracted from the Trail Balances of.KBros. Prepare Trading and Profit and Loss A/c on the year ending 31 st March 2017.
Plus One Accountancy Model Question Papers Paper 1.35
1. Closing stock र 10000
2. Provide 5% provision on doubtful debts.
3. Wages र 300 and salary र 500 are outstanding.
4. Depreciation on plant and Machinery 5%, Building 10%.
Plus One Accountancy Model Question Papers Paper 1.36

Answer

Answer 1.
Full disclosure concept.
This principle requires that all material and relevant facts concerning financial perfor­mance of an enterprise must be fully and com­pletely disclosed in the financial statement.

Answer 2.
Less than one year

Answer 3.
11-5-2016

Answer 4.
Admission number

Answer 5.
Structured Query Language

Answer 6.
Plus One Accountancy Model Question Papers Paper 1.38

Answer 7.
a. Building A/c
To Wages A/c
An error of principle when a transaction is recorded in contravention of accou­nting principles.

Answer 8.
Plus One Accountancy Model Question Papers Paper 1.39
Assets = Liability ± Capital
Asset = Cash + Debtors + Stock
= 425000+100000 + (-20000) = 505000
Assct=L+C=445000+ 60000= 505000

Answer 9.
a. Debit
b. Debit
e. Credit
d. Debit

Answer 10.
a. Cash deposited into bank
b. withdrew cash from a bank

Answer 11.
Plus One Accountancy Model Question Papers Paper 1.40

Answer 12.
single entry
Single entry accounting system is a method of book keeping relying on a one-sided accounting entry to maintain financial information.

Accrual system
Under the accrual system basis of accounting, expenses are matched with the related revenue and are reported when the expenses occur, not when

the cash is paid.
The result of accrual accounting is an income statement that better measures ta specific time period.

Answer 13.
Plus One Accountancy Model Question Papers Paper 1.41
Answer 14.
Error of principles
When a transaction is recorded in contravention of accounting prin­ciples. It is called the error of principles.
Plus One Accountancy Model Question Papers Paper 1.42

Error of commission
There are tire error which is committed due to wrong posting; of transactions, wrong totaling or wrong balancing of the accounts, the wrong casting of subsidiary books etc. These errors are clerical nature and most of the errors of commission effect in the trail balance.

Answer 15.
Plus One Accountancy Model Question Papers Paper 1.43

Answer 16.

Manual accountingComputerized Accounting
a. Human intervention is morea. Human intervention is less
b. Alteration and additions in transactions are not easyb. Alteration and additions are easy
c. It requires more timec. It requires less time
d. It requires more workersd. It requires less workers
e. Closing entries are necessarye. Closing entries are not necessary
f. It has narrow scopef. It has a wider scope

Answer 17.
A query is basic tools that access provides for retrieving information from the database. It is used to review, add, change or delete data from the database. It allows. taking information from single or multiple tables to obtain the data required. Different types of queries are Selected queries, Parameter queries, Crosstab queries, Action queries, Union query, and Pass-through query.

Answer 18.

BasisStatement of affairsBalance sheet
ReliabilityIt is less reliable as it is prepared from an incomplete recordIt is more reliable as it is prepared  from double entry
ObjectiveIt is prepared to ascertain the capital on a given dateIt is prepared to ascertain the financial position on a given date
Omissionomission of asset and liability
cannot be discovered easily
omission of asset and liabilities can be traced easily

Answer 19.
Plus One Accountancy Model Question Papers Paper 1.45

Answer 20.
Plus One Accountancy Model Question Papers Paper 1.46

Answer 21.
Yes, I agree with the statement. Financial statements are more reliable accounting rep­orts to exhibits the profitability of the firm. Trading and Profit and Loss Account, Balance sheet are the two important finan­cial statements. Trading and Profit and Loss Account also known as income statements show the financial performance of the busi­ness in the form of Profit of Losses for a particular period. The balance sheet shows the financial position of the business for a particular date.

Answer 22.
Plus One Accountancy Model Question Papers Paper 1.47
Plus One Accountancy Model Question Papers Paper 1.48

Answer 23.
Plus One Accountancy Model Question Papers Paper 1.49

Answer 24.
Plus One Accountancy Model Question Papers Paper 1.50

Answer 25.
The various situations which lead to discrepancies in pass book and cash book balances are:

  1. Cheque issued or drawn to creditors but not paid by Bank.
  2. Amount deposited directly into the Bank.
  3. Expenses paid by the Bank
  4. Bank charges
  5. Cheque deposited for collection but not yet collected and credited by the bank.
  6. Interest on deposits

Answer 26.
Plus One Accountancy Model Question Papers Paper 1.51
Plus One Accountancy Model Question Papers Paper 1.52
Plus One Accountancy Model Question Papers Paper 1.53

Plus One Accountancy Previous Year Question Papers and Answers

Plus One Accountancy Improvement Question Paper 2018

Kerala Plus One Accountancy Improvement Question Paper 2018

Time Allowed: 2 hours
Cool off time: 15 Minutes
Maximum Marks: 60

Answer all questions from question 1 to 8. Each carry 1 score.
Plus One Accountancy Improvement Question Papers 2018
Question 1.
State the accounting concept, if a business charges depreciation underwritten down value method and it follows the same method in the subsequent years.
Plus One Accountancy Improvement Question Papers 2018 1

Question 2.
Which one of the following events is NOT a business transaction?
a. Furniture purchased for cash
b. Goods are ordered for next month
c. 10% of debtors are treated as bad.
d. Salary outstanding to the employee
Plus One Accountancy Improvement Question Papers 2018 2

Question 3.
Computer purchased from Mr.X on credit is recorded in the ……………..
a. Purchase book
b. Journal proper
c. Cash book
d. Sales book
Plus One Accountancy Improvement Question Papers 2018 3
Plus One Accountancy Improvement Question Papers 2018 4

Question 4.
As per business entity concept owner of the business is
a. supplier
b. creditor
c. debtor
d. borrower
Plus One Accountancy Improvement Question Papers 2018 41

Question 5.
Find the odd one and state the reason
a. Mouse
b. Monitor
c. Keyboard
d. Pen drive
Plus One Accountancy Improvement Question Papers 2018 42

Question 6.
Find the “entity” from the following.
a. Employee
b. Employee
c. Employee name
d. Age
Plus One Accountancy Improvement Question Papers 2018 43

Question 7.
Income receivable is………………….
a. an asset
b. a liability
c. profit
d. a loss
Plus One Accountancy Improvement Question Papers 2018 6
Question 8.
Different entities are related to simplifying the data storage is termed as………….
Plus One Accountancy Improvement Question Papers 2018 7

Answer any five from question numbers 9 to 14, Each carries two scores.
Plus One Accountancy Improvement Question Papers 2018 8

Question 9.
Classify the following items as Revenue, Ex­pense, Gain and Profit.
a. Profit on sale of investment
b. Interest received
c. Goods sold at above cost
d. Depreciation
Plus One Accountancy Improvement Question Papers 2018 9

Question 10.
Arun constructed a building for Rs.5,00,000 for his new business concept. After 2 years the market value of the building is enhanced toRs.8,00,000
a. If you are the accountant, which amount appear in the books?
b. What is the accounting principle support your recording?
Plus One Accountancy Improvement Question Papers 2018 10
Plus One Accountancy Improvement Question Papers 2018 11

Question 11.
Cash book is both a Journal and Ledger. Justify your views.
Plus One Accountancy Improvement Question Papers 2018 12

Question 12.
Write the name of the correct computer com­ponents in the given box.
Plus One Accountancy Improvement Question Papers 2018 13

Question 13.
Identify the limitations of CAS from the foll­owing
a. Disruptions
b. Scalability
c. Staff opposition
d. Legibility
Plus One Accountancy Improvement Question Papers 2018 14

Question 14.
Point out any two differences between ‘Pro­vision’ and Reserve’
Plus One Accountancy Improvement Question Papers 2018 15

Answer any 4 questions from question numbers 15 to 19. Each carries 3 scores.
Plus One Accountancy Improvement Question Papers 2018 16

Question 15.
Show the effect of following transactions on Asset, Liabilities, and Capital based on the accounting equation.

  1. Started a business with cash र15000
  2. Rent received र 5000
  3. Purchased goods on credit from Rema र2000
  4. Paid cash to household expenses र 4000
  5. Sold goods for cash (cost 10000) र13000
  6. Deposited into bank र 25000

Plus One Accountancy Improvement Question Papers 2018 17

Question 16.
Calculate gross profit from the balances taken from the books of Usha for the year ending 31st March 2017
Plus One Accountancy Improvement Question Papers 2018 18

Question 17.
From the following information, calculate the capital at the beginning.
Plus One Accountancy Improvement Question Papers 2018 19
Plus One Accountancy Improvement Question Papers 2018 20

Question 18.
Explain briefly about ‘Accounting Reports’.
Plus One Accountancy Improvement Question Papers 2018 21

Question 19.
What are the following terms stand for?
Plus One Accountancy Improvement Question Papers 2018 22

  1. GAAP
  2. IFRS
  3. ICAI

Answer any 3 questions from question numbers 20 to 23. Each carries 4 scores.
Plus One Accountancy Improvement Question Papers 2018 24

Question 20.
Give narrations for die following journal entry.
Plus One Accountancy Improvement Question Papers 2018 25

Question 21.
Record the following transactions in a double column cash book
Plus One Accountancy Improvement Question Papers 2018 26
Plus One Accountancy Improvement Question Papers 2018 27

Question 22.
Chandra Traders purchased a Motor Van on 01-01-2013 for र 6,00,000. The firm writes off depreciation at the rate of 10% p.a on written down value method. Draw up Motor Van account for the first three years
Plus One Accountancy Improvement Question Papers 2018 28

Question 23.
Identify the debit and credit aspects from the following transaction.
Plus One Accountancy Improvement Question Papers 2018 29

  • Insurance premium paid in advance
  • Discount allowed Mr. Anandu
  • Goods were taken for personal use
  • Depreciation is written off on Machinery

Answer any 2 questions from question numbers 24 to 27. Each carries 5 scores.
Plus One Accountancy Improvement Question Papers 2018 30

Question 24.
The cash book shows a debit balance of Rs. 10, 800. on comparing the cash book with passbook the following discrepancies were found. Help them to reconcile the same.
Plus One Accountancy Improvement Question Papers 2018 31

Question 25.
Help Ramu a friend of you to prepare a Trial
Balance with the following items.
Plus One Accountancy Improvement Question Papers 2018 32
Plus One Accountancy Improvement Question Papers 2018 33

Question 26.
Rectify the following errors
a. Credit sales to Mohan र 1200 was not recorded
b. Rent paid र 6000 was posted to Ramu (Laird Lord) personal account
c. Cash sales र 2000 were posted as र 200
d. Sales book overcast by र 3000
e. Purchases book under cast by र 4000
Plus One Accountancy Improvement Question Papers 2018 34
Plus One Accountancy Improvement Question Papers 2018 35

Question 27.
Aroop sold goods to Salini on January, 1st 2017 for र 40000 and drew upon her a bill of exchange for three months. Salini accepted the bill and returned to Aroop. Aroop discounted the bill by an interest of 8% p.a on 02-01-2017. On the due date, the bill was dishonored. Record the entries in the books of Aroop
Plus One Accountancy Improvement Question Papers 2018 36

Answer question number 28, which carries 8 scores.
Plus One Accountancy Improvement Question Papers 2018 37

Question 28.
From the following Trial Balance of M/s. Goutham and Son’s as on 31 st December 2016 prepare a Trading and Profit & Loss Account and Balance sheet.
Plus One Accountancy Improvement Question Papers 2018 38
Plus One Accountancy Improvement Question Papers 2018 39
Adjustment:
a. Closing Stock र 12,300
b. Outstanding wages र 200 and salary र 100
c. Accrued commission र 300
d. Create 5% provision for bad and doubtful debts.
e. Charge 10% depreciation on Machinery.
Plus One Accountancy Improvement Question Papers 2018 40

Answers

Answer 1.
Consistency

Answer 2.
Goods are ordered for next month

Answer 3.
Journal proper / Purchase book

Answer 4.
Creditor

Answer 5.
Monitor [Output component]
OR
Pen drive [Storage device ]

Answer 6.
Employee

Answer 7.
An asset

Answer 8.
Relationship/ER Model/Entity Relationship

Answer 9.
Profit on sale of investment – Gain
Interest Received – Revenue
Goods sold at above cost – Profit
Depreciation – Expense

Answer 10.
a. Rs.500000
b. Historical cost concept/Cost principle

Answer 11.
1. Cash transactions are recorded directly from source documents
2. Cash and bank balance can be determi­ned. Thus there is no need for preparing cash a/c or bank a/c.

Answer 12.
a. Input
b. output
c. Memory unit
d. Control unit

Answer 13.
a. Disruptions
b. Staff opposition
c. Provision
d. Reserve

Answer 14.

ProvisionReserve
1. It is charged against profit1. It is an appropriation of profit
2. Created to meet the specific liability 2.Made of strengthening financial po­sition
3. It reduces net profit3. It reduces divisi­ble profit

Answer 15.
Plus One Accountancy Improvement Question Papers 2018 44

Answer 16.
Gross Profit = Net sales – Cost of goods sold
Cost of goods sold = Opening stock + Net purchases + Direct expenses – Closing stock
CGS = 100000 + 900000 + 80000-150000
=930000
GP= 150000-930000 = 570000

Answer 17.
Plus One Accountancy Improvement Question Papers 2018 45

Answer 18.
Accounting report is a collection of related information. It is a physical form of account­ing information. It helps in decision making.

Answer 19.
a. GAAP – Generally Accepted Account­ing Principles
b. IFRS – International Financial Reporting Standards
c. ICAI – Institute of Chartered Account­ing of India.

Answer 20.

  1. Goods are withdrawn for Personal use
  2. Introduced stock into the business
  3. Paid cheque to Rejitha
  4. Sales A/C closed

Answer 21.
Plus One Accountancy Improvement Question Papers 2018 46

Answer 22.
Plus One Accountancy Improvement Question Papers 2018 47

Answer 23.
Insurance paid in advance A/C – Debit
Insurance – Credit
Discount allowed A/C – Debit
Mr. Anandu A/C – Credit
Drawings A/C – Debit
Purchases A/C – Credit
Depreciation A/C – Debit
Machinery A/C – Credit

Answer 24.
Plus One Accountancy Improvement Question Papers 2018 48

Answer 25.
Plus One Accountancy Improvement Question Papers 2018 49

Answer 26.
Plus One Accountancy Improvement Question Papers 2018 50

Answer 27.
Plus One Accountancy Improvement Question Papers 2018 51

Answer 28.Plus One Accountancy Improvement Question Papers 2018 52
Plus One Accountancy Improvement Question Papers 2018 53

Plus One Accountancy Previous Year Question Papers and Answers

Plus One Accountancy Previous Year Question Paper 2017

Kerala Plus One Accountancy Previous Year Question Paper 2017

Time Allowed: 2 hours
Cool off time: 15 Minutes
Maximum Marks: 60

General Instructions to Candidates

  • There is a ‘cool off time of 15 minutes in addition to the writing time of 2 hrs.
  • You are not allowed to write your answers nor to discuss anything with others during the ‘cool off time’.
  • Use the ‘cool off time’ to get familiar with the questions and to plan your answers.
  • Read questions carefully before you answering.
  • All questions are compulsory and the only internal choice is allowed.
  • When you select a question, all the sub-questions must be answered from the same question itself.
  • Calculations, figures, and graphs should be shown in the answer sheet itself.
  • Malayalam version of the questions is also provided.
  • Give equations wherever necessary.
  • Electronic devices except non-programmable calculators are not allowed in the Examination Hall.

Plus One Accountancy Previous Year Question Papers and Answers 2017 30

Question 1.
Vinod took a loan of र 1,00,000 from Canara Bank. Identify the debtor in the above transaction
Plus One Accountancy Previous Year Question Papers and Answers 2017 9

Question 2.
Writing off the cost of intangible assets is te­rmed as …………..
a. depreciation
b. depletion
c. amortization
d. obsolescence
Plus One Accountancy Previous Year Question Papers and Answers 2017 28

Question 3.
Which one of the following is NOT a feature of Ready-to-use accounting software?
a. It is suited to small organizations.
b. A volume of accounting transactions is very low
c. Cost of installation is high.
d. A number of users is limited.
Plus One Accountancy Previous Year Question Papers and Answers 2017 10
Plus One Accountancy Previous Year Question Papers and Answers 2017 11

Question 4.
Classify the following assets under appropri­ate heads.
Plus One Accountancy Previous Year Question Papers and Answers 2017 12
a. Cash
b. Machinery
c. Land
d. Stock

Question 5.
“A Balance Sheet is more reliable than state­ment of affairs”. Explain.
Plus One Accountancy Previous Year Question Papers and Answers 2017 13

Question 6.
Classify the following into input devices and output devices.
a. Keyboard
b. Printer,
c. Mouse
d. Monitor
Plus One Accountancy Previous Year Question Papers and Answers 2017 29

Question 7.
Give any two limitations of computerized ac­counting systems.
Plus One Accountancy Previous Year Question Papers and Answers 2017 14

Question 8.
a. Write a suitable entity for the attributes given below
Account Code,
Account Name
b. Also, identify the key attribute to that en­tity.
Plus One Accountancy Previous Year Question Papers and Answers 2017 15

Question 9.
a. Mention the name of the reserve that is created out of revenue profits.
b. How does it differ from capital reserve?
Plus One Accountancy Previous Year Question Papers and Answers 2017 16

Question 10.
Opening stock र 18,000
Purchases र 22,000
Wages र  5,000
Closing stock र 15,000
a. Ascertain cost of goods sold.
b. How is gross profit, if sales are? 37,500
Plus One Accountancy Previous Year Question Papers and Answers 2017 18

Question 11.
Write any two data types in MS-Access with suitable examples.
Plus One Accountancy Previous Year Question Papers and Answers 2017 19

Question 12.
Match the following

AB
a.Closing stock valued at cost or market price whichever is lessiObjectivity Principle
b.Every transaction will have two aspectsii.Money measurement concept
c.All business events not recorded in the accountingiii.Dual aspect concept
d.Accounting information should be free from biasiv.Principle of conserva­tism

Question 13.

  • Started business with cash र 85,000 and stock र 15,000.
  • Sold goods for cash र 10,000.

a. Prove that the accounting equation is sat­isfied in the above transactions.
b. Also, pass the journal entries to record the above transactions
Plus One Accountancy Previous Year Question Papers and Answers 2017 20

Question 14.
Purchases day book was undercast by र 3,000.
Wages paid र 500 in connection with pur­chase of machinery has been debited to wages account.
a. Identify the type of errors committed in the above transactions.
b. Pass the entries to rectify it.
Plus One Accountancy Previous Year Question Papers and Answers 2017 22

Question 15.
On 1st January. 2016 Arun drew a 3 months bill upon Varan for र 6000. On 3rd January 2016, Arun discounted the bill with his banker @ 6% per annum. The bill was honored on the due date.
a. Identify the drawer in the above bill.
b. Record the necessary journal entries in the books of Arun and Varan.
Plus One Accountancy Previous Year Question Papers and Answers 2017 23

Question 16.
The cashbook of Manu showed a debit bal­ance of र 18,000. On comparing cash book with Passbook, the following differences were noted.
a. Cheque issued but not yet presented for payment र 4,000.
b. Bank charges debited in the passbook र 500.
c. Cheques sent to the bank for collection but not yet collected र 3,000.
d. Rent collected and credited by the bank र 3,500.

    1. Name the statement Manu will prepare in order to reconcile balance as per cash book with passbook,
    2. Prepare that statement to reconcile it.

Plus One Accountancy Previous Year Question Papers and Answers 2017 24

Question 17.
Sethu a dealer in books had the following tran­sactions for the month of June 2016.
a. Purchased books on credit from Himalaya Publishers:
100 copies of Accountancy Text for Class
@ र 150 per text.
80 copies of Business Studies Text for Cla­ss XI
@ र 120 per text.

b. Purchased books on credit from Saradhi Books:
90 copies of Accountancy Text for Class
@ र 180 per text
75 copies of Business Studies Text for Cla­ss XII @ र140 per text Trade discount allowed 5%.

c. Returned to Saradhi Books :
8 copies of Accountancy Text for Class XII
@ र 180pertext.
15 copies of Business studies Text for Cla­ss XII
@ र140 per text.

  1. Record the above transactions in the ap­propriate daybooks.
  2. Identify the source document for recording the transaction no. (c) above.

Plus One Accountancy Previous Year Question Papers and Answers 2017 25

Question 18.
The following is the Trial Balance of Kiran, a trader as on 31 st December 2016.
Plus One Accountancy Previous Year Question Papers and Answers 2017 26
Additional information:
a. The closing stock was valued at ? 10,000.
b. Carriage outstanding? 500.
c. The commission received in advance? 700.
d. Provide 5% of debtors for bad debts.
Prepare Trading and Profit and Loss account for the year ended 31 st December 2016 and a Balance Sheet as on that date.
Plus One Accountancy Previous Year Question Papers and Answers 2017 27

Answers

Answer 1.
Vinod-Debtor

Answer 2.
amortization

Answer 3.
c. Cost of installation is high.

Answer 4.
Current Assets – Cash, Stock
Fixed Assets – Land, Machinery

Answer 5.

  • In the Balance sheet, the balance of assets,
  • The balance sheet is prepared under the double entry system. A statement of affairs is pre­pared from incomplete records.

Answer 6.
Input devices: Keyboard, Mouse
Output devices Printer,’Monitor

Answer 7.
Limitations of CAS:

  • The high cost of training
  • Staff opposition
  • Discretion
  • System failure
  • Breach of security
  • Inability to check unanticipated errors
  • ill effect or health

Answer 8.
a. Entity – Account
b. Key Attribute – Account code\code

Answer 9.
a.Revenue Reserve/General Reserve
b. Difference between capital Reserve and General Reserve:

  1. Capital Reserve created out of Capital pro¬fit, Revenue Reserve created out of Rev¬enue profit
  2. Capital Reserve – For compliance of legal requirements
    Revenue Reserve – Strengthen financial position
  3. Capital Reserve – cannot be utilised for .dis¬tribution of dividend
    Revenue Reserve – Can be utilised for dis¬tribution of dividend

Answer 10.
a. Cost of goods sold = Opening stock + Net
purchases + Direct exp – closing stock Cost of goods sold
= 18000 + 22000 + 5000-15000 = 30,000 b. Gross Profit = Cost of goods sold – Net sales = 37500-30000 = 7500

Answer 11.
a. Text – It can be a name
b. Date/time: -Birthdate

Answer 12.
a. a-Principle of Conservatism(iv)
b. b – Dual aspect concept (iii)
c. c – Money measurement (ii)
d. d – Objectivity principle (i)

Answer 13.
a. Assets = Liability + capital
Cash + Stock

    1. 85000+15000 = 0 + 1,00,000
    2. 10,000-10,000=0+0
      95000 + 5000 = 0+1,00,000

Plus One Accountancy Previous Year Question Papers and Answers 2017 1

Answer 14.
a. i. The error of commission/be sided Error
ii. The error of principle/two-sided Error
Plus One Accountancy Previous Year Question Papers and Answers 2017 2

Answer 15.
Plus One Accountancy Previous Year Question Papers and Answers 2017 3

Answer 16.
Plus One Accountancy Previous Year Question Papers and Answers 2017 4

Answer 17.
Plus One Accountancy Previous Year Question Papers and Answers 2017 5
b.Debit Note
Plus One Accountancy Previous Year Question Papers and Answers 2017 6

Answer 18.
Plus One Accountancy Previous Year Question Papers and Answers 2017 7

Plus One Accountancy Previous Year Question Papers and Answers

Plus One Accountancy Previous Year Question Paper 2018

Kerala Plus One Accountancy Previous Year Question Paper 2018

Time Allowed: 2 hours
Cool off time: 15 Minutes
Maximum Marks: 60

General Instructions to Candidates

  • There is a ‘cool off time of 15 minutes in addition to the writing time of 2 hrs.
  • Use the ‘cool off time’ to get familiar with the questions and to plan your answers.
  • Read the instructions carefully
  • Read questions carefully before you answering.
  • Calculations, figures, and graphs should be shown in the answer sheet itself.
  • Malayalam version of the questions is also provided.
  • Give equations wherever necessary.
  • Electronic devices except non-programmable calculators are not allowed in the Examination Hall.

Plus One Accountancy Previous Year Question Papers and Answers 2018 16
Answer all questions from question number 1 to 9. Each carries score.
Plus One Accountancy Previous Year Question Papers and Answers 2018 17

Question 1.
Notebooks purchased by a stationery shop comes under……..
a. Assets
b. Income
c. Purchases
d. Liabilities
Plus One Accountancy Previous Year Question Papers and Answers 2018 18

Question 2.
Fill in the blank.
………….A/c Dr.
To Thomas & Co.A/c
(Purchased Machinery from Thomas & Co.)
a. Purchase
b. Cash
c. Machinery
d. Goods
Plus One Accountancy Previous Year Question Papers and Answers 2018 19

Question 3.
Ramesh, a dealer of Television, sold old furniture to Rafeeque for Rs. 3,000 on credit. Identify the day book to record this transac­tion.
a. Purchase day book
b. Journal proper
c. Sales day book
d. Cash book
Plus One Accountancy Previous Year Question Papers and Answers 2018 20

Question 4.
Bank Reconciliation Statement is prepared by…..
a. Bank
b. Depositor
c. Creditor
d. Debtor
Plus One Accountancy Previous Year Question Papers and Answers 2018 21

Question 5.
Rent paid Rs.4,500 was entered in cash book as Rs. 5,400. This is an error of…..
a. Principle
b. Omission
c. Compensating error
d. Commission
Plus One Accountancy Previous Year Question Papers and Answers 2018 22

Question 6.
…………….reserve is not shown in the Bal­ance Sheet.
a. Secret
b. General
c. Revenue
d. Capital
Plus One Accountancy Previous Year Question Papers and Answers 2018 23

Question 7.
James sold goods for Rs. 10,000 to Rajeev and a promissory note was prepared for a period of 2 months and endorsed to Raheem. Who is the drawer of the promissory note?
a. James
b. Rajeev
c. Raheem
d. None of these
Plus One Accountancy Previous Year Question Papers and Answers 2018 28

Question 8
……………….. account is prepared by a trader, who does not maintain the double entry system of accounting, to find out the value of credit purchase.
a. Total creditors
b. Total debtors
c. Bills receivable
d. Bills payable
Plus One Accountancy Previous Year Question Papers and Answers 2018 29

Question 9.
Find the odd one out.
a. Keyboard
b. Mouse
c. MICR
d. Printer
Plus One Accountancy Previous Year Question Papers and Answers 2018 30

Answer any five from question numbers 10 to 15 Each carries two scores.
Plus One Accountancy Previous Year Question Papers and Answers 2018 31

Question 10.
Identify the accounting principles related to the following:
a. Purchased 10 kg of raw materials for Rs. 5,000 was entered in the books of account asRs. 5,000.
b. Assets of a business are always equal to the claims of owners and outsiders.
Plus One Accountancy Previous Year Question Papers and Answers 2018 33

Question 11.
Rectify the following errors.
a. Sold goods for Rs. 7,000 to Sangi & Co., entered in Purchase day book.
b. Rent paid Rs. 4,000 debited to Landlord. account.
Plus One Accountancy Previous Year Question Papers and Answers 2018 58

Question 12.
Insurance premium of Rs. 6,000 was paid for a period of one year on 1st April 2015. How the transaction will be treated while preparing fi­nancial statements for the year ending 31st December 2015?
Plus One Accountancy Previous Year Question Papers and Answers 2018 34

Question 13.
Write any two features of using computers in accounting.
Plus One Accountancy Previous Year Question Papers and Answers 2018 35

Question 14.
Match the column A with column B.
Plus One Accountancy Previous Year Question Papers and Answers 2018 59

Question15.
Write the name of any two attributes of the entity employee in an organization.
Plus One Accountancy Previous Year Question Papers and Answers 2018 36

Answer any three from question numbers 16 to 19. Each carries three scores.
Plus One Accountancy Previous Year Question Papers and Answers 2018 37

Question 16.
In a business organization, goods are known in different names. Write the names used for the goods in the following cases.
a. Goods remaining unused at the end of the year.
b. Goods returned by the buyer due to break­age in transit.
c. Goods sold for cash and credit.
Plus One Accountancy Previous Year Question Papers and Answers 2018 38
Plus One Accountancy Previous Year Question Papers and Answers 2018 39

Question 17.
Royal Furniture received an order for making a dining table on 10th May 2017 and they com­plete the work on 15th July 2017. The dining table was delivered to the customer on 20th July 2017 and received the payment on 25th July 2017. On which date this transaction will be recorded in the books of the Royal Furniture? Why?
Plus One Accountancy Previous Year Question Papers and Answers 2018 40

Question 18.
A Trial Balance is given below. Rewrite it, if there is any mistake.
Plus One Accountancy Previous Year Question Papers and Answers 2018 41
Question 19.
Write a short note on a key attribute with an example.
Plus One Accountancy Previous Year Question Papers and Answers 2018 42

Answer any two from question numbers 20 to 22 Each carries four scores.
Plus One Accountancy Previous Year Question Papers and Answers 2018 43

Question 20.
Prepare Minerva Traders A/c from the following information for the month of December 2017.
Plus One Accountancy Previous Year Question Papers and Answers 2018 60

Question 21.
Compute the cost of goods sold and gross profit with the help of the following information.
Plus One Accountancy Previous Year Question Papers and Answers 2018 46
Plus One Accountancy Previous Year Question Papers and Answers 2018 47

Question 22.
From the following particulars, find out total purchases.
Plus One Accountancy Previous Year Question Papers and Answers 2018 48

Answer question numbers 23 and 24. Each car­ries five scores.
Plus One Accountancy Previous Year Question Papers and Answers 2018 53

Question 23.
Prepare a Bank Reconciliation Statement as on 31st December, 2017.
Plus One Accountancy Previous Year Question Papers and Answers 2018 50

Question 24.
On 4th May 2014, Rajan sold goods to Kabheer for Rs. 25,000. Kabheer paid Rs. 5,000 immediately in cash and accepted a bill drawn by Rajan for the balance amount for a period of 2 months. On maturity date, Kabheer requested Rajan to cancel the old bill and to draw a new bill upon him for a period of 3 months. He also agreed to pay interest at 6% p.a.in cash. Rajan to cancel the old bill and to draw a new bill upon him for a period of 3 months. He also agreed to pay interest at 6% p.a. in cash. Rajan agreed and cancelled the old bill and drew a new bill. The new bill was accepted and met by Kabheer on the due date. Pass the journal entries in the books of Rajan.

Question 25.
Prepare a double column cash book from the following transactions for the month of January 20l8.
Plus One Accountancy Previous Year Question Papers and Answers 2018 54

Question 26.
On 1st July 2014 M/s. Golden Stores purchased a second-hand plant for Rs. 85,000, spent Rs. 10,000 for its overhauling and Rs. 5,000 for installation. Another plant was purchased on 1st January 2016 for
Rs. 50,000. It was decided to charge depreciation at 10% on original cost, On July 1st, 2016, the plant purchased on 1st July 2014 was sold for Rs. 75,000. Prepare a plant account up to 31st December 2017.
Plus One Accountancy Previous Year Question Papers and Answers 2018 55

Answer question number 27, which carries eight scores
Plus One Accountancy Previous Year Question Papers and Answers 2018 56
Question 27.
The following is the Trial Balance extracted from the books of Arya Traders for the year ended 31st March 2017.
Plus One Accountancy Previous Year Question Papers and Answers 2018 57
Plus One Accountancy Previous Year Question Papers and Answers 2018 61
Additional information:

  1. The closing stock was valued at Rs. 45,000.
  2. Salaries paid only up to 31st January 2017.
  3. Insurance prepaid Rs. 800.
  4. 10% p.a. on debtors.
  5. Depreciate building at 5% p.a. and furni­ture at 10% p.a. Prepare Trading and Profit & Loss account for the year end­ed 31st March 2017 and a Balance Sheet as on that date.

Plus One Accountancy Previous Year Question Papers and Answers 2018 62

Answer

Answer 1.
a. Purchase

Answer 2.
c. Machinery

Answer 3.
b. Journal proper

Answer 4.
b. Depositor.

Answer 5.
d. Commission.

Answer 6.
a. Secret

Answer 7.
b. Rajeev

Answer 8.
a. Total creditors

Answer 9.
d. Printers

Answer 10.
a. Money measurement concept
b.Dual Aspect / Duality principle
or Accounting equivalent concept

Answer 11.
Plus One Accountancy Previous Year Question Papers and Answers 2018

Answer 12.
Plus One Accountancy Previous Year Question Papers and Answers 2018 1

Answer 13.
Features in computers in accounting
1. Online input and storage of data, speed, accuracy.
2. Printout of purchase and sales invoices, the codification of accounts, grouping of, accounts, instant reports etc.

Answer 14.
a.Data processing – covert data into information
b. Front-end interface – Link between user and software
c. Reporting system – Pinal output
d. Back-end database – Data storage system.

Answer 15.
Employee ID, Employee Name, Employee Age, Employee sex, Employee Department etc.

Answer 16.
a. Closing stock: It is the amt of inventory that business still has on hand at the end of reporting period.
b. Sales return or Return Inward: Return of goods by the customer ( solid earlier) to the business.
c. Sales: IT is the revenue or income earned by a business through the sale of goods and services.

Answer 17.
Revenue Recognition Concept (Realisation Concept)
The concept says that the revenue for a business transaction should be included in the accounting records at the time when the title of goods passes from seller to buyer, unearned or unrealised revenue should not be taken into account.

Answer 18.
Trial Balance As on 31st March 2017
Plus One Accountancy Previous Year Question Papers and Answers 2018 2

Answer 19.
Attributes are characteristics of entities that further describes the entity such as height, weight, date of birth, name, ID etc.
The different types of attributes are:

  1. Simple or Atomic attributes: Attributes that cannot be further subdivided into smaller parts.
    Eg: height of a person
  2. Composite attributes: Attribute that can be subdivided into smaller subparts.
    Eg: Name into First Name, Middle,
  3. Single-valued attribute: An attribute with a single value for an entity.
    Eg: Age has an only single value
  4. Multi-valued attribute: An attribute with multiple values.
    Eg: Educational qualific­ations
  5. Stored attribute: A basic attribute that contains some stored value is called a stored attribute.
    Eg: From the date of birth age is derived.
  6. Derived attribute: The attribute derived from a stored attribute is called derived attri­butes
    Eg: From the date of birth age is derived and age is called derived attributes.
  7. Complex attribute: A multi-valued attri­bute may be nested or grouped within pare­ntheses ( ) or curly braces { } to constitute a complex

Plus One Accountancy Previous Year Question Papers and Answers 2018 3

Answer 20.
Plus One Accountancy Previous Year Question Papers and Answers 2018 4

Answer 21.
Cost of goods sold = opening stock + Purchase + Direct = Expenses – closing stock
= 60000 + ( 30000 – 2000) + 50000 + 10000 -80000
= 60000 + 298000 + 60000 – 80000 = 338000
Gross profit = Sales ( Net) – Cost of goods sold = ( 400000 – 3000) – 338000 = 59000
Plus One Accountancy Previous Year Question Papers and Answers 2018 5

Answer 22.
Total purchases = Cash purchase + credit purchase. Cash purchase = 47000 Credit purchase
Plus One Accountancy Previous Year Question Papers and Answers 2018 6

Answer 23.
Plus One Accountancy Previous Year Question Papers and Answers 2018 7

Answer 24.
Plus One Accountancy Previous Year Question Papers and Answers 2018 9
Plus One Accountancy Previous Year Question Papers and Answers 2018 10

Answer 25.
Plus One Accountancy Previous Year Question Papers and Answers 2018 11

Answer 26.
Plus One Accountancy Previous Year Question Papers and Answers 2018 12

Answer 27.
Plus One Accountancy Previous Year Question Papers and Answers 2018 13
Plus One Accountancy Previous Year Question Papers and Answers 2018 14
Plus One Accountancy Previous Year Question Papers and Answers 2018 15

Plus One Accountancy Previous Year Question Papers and Answers

Plus One Economics Model Question Paper 4

Kerala Plus One Economics Model Question Paper 4

Time Allowed: 2 hours
Cool off time: 15 Minutes
Maximum Marks: 60

Answer all questions from question numbers 1 to 5. Each carry one score.
Plus One Economics Model Question Papers Paper 4.52
Question 1.
Match the columns ‘B’ and ‘C’ with column
Plus One Economics Model Question Papers Paper 4.51
Answer all questions from question numbers 2 to 6. Each carries 1 score
Plus One Economics Model Question Papers Paper 4.1
Question 2.
The mode can be graphically located by means of…………….
Plus One Economics Model Question Papers Paper 4.2

Question 3.
This method is appropriate in cases where informants are literate and are spread over a wide area.
Plus One Economics Model Question Papers Paper 4.4
a. Direct personal interview
Plus One Economics Model Question Papers Paper 4.5
b. Indirect oral investigation
Plus One Economics Model Question Papers Paper 4.6
c. Mailed questionnaire
Plus One Economics Model Question Papers Paper 4.8
d. Information from correspondents
Plus One Economics Model Question Papers Paper 4.9

Question 4.
What is TANWA?
Plus One Economics Model Question Papers Paper 4.10

Question 5.
Inflation is a situation of the general price level.
Plus One Economics Model Question Papers Paper 4.11

Question 6.
Who was the first person to discuss the concept of a poverty line
Plus One Economics Model Question Papers Paper 4.12

Answer all questions from question numbers 7 to 11. Each carries 2 scores.
Plus One Economics Model Question Papers Paper 4.13
Question 7.
Write the features of urban poverty.

Question 8.
Write any two examples each for quantitative and qualitative data.
Plus One Economics Model Question Papers Paper 4.14

Question 9.
Name two major sources of human capital in a country.
Plus One Economics Model Question Papers Paper 4.15

Question 10.
Distinguish between formal sector workers and informal sector workers.
Plus One Economics Model Question Papers Paper 4.16

Question 11.
A data on the annual profit of a firm is given below:
Plus One Economics Model Question Papers Paper 4.17
Draw the Arithmetic Line graph (Time Series graph) for the data.
Plus One Economics Model Question Papers Paper 4.18

Answer any 6 questions from question numbers 12 to 18. Each carries 3 scores.

Question 12.
Distinguish between primary data and sec­ondary data with examples.
Plus One Economics Model Question Papers Paper 4.19

Question 13.
In a city, the weekly observations made in a study on the cost of living index are given in the following table:
Plus One Economics Model Question Papers Paper 4.21
Plus One Economics Model Question Papers Paper 4.22
Draw a frequency polygon for the above data (without constructing a histogram)
Plus One Economics Model Question Papers Paper 4.23

Question 14.
Heights of 10 plants in a garden are given below.
Plus One Economics Model Question Papers Paper 4.24
a. Find of the mean height.
b. State the interesting property of A.M.(3)
Plus One Economics Model Question Papers Paper 4.25

Question 15.
‘Small scale industries play a vital role in economic development. Write the advan­tages of small-scale industries.
Plus One Economics Model Question Papers Paper 4.26

Question 16.
Calculate the arithmetic mean from the following data:
Plus One Economics Model Question Papers Paper 4.27

Question 17.
Write the conventional sources and non-conventional sources of energy.
Plus One Economics Model Question Papers Paper 4.28

Question 18.
Classify the following features pertaining to the economics of India, China, and Pakistan (One Child norm, very high fertility ratio, commune system, high density of popula­tion, economic reforms in 1988, economic reforms in 1991).
Plus One Economics Model Question Papers Paper 4.29

Answer any 4 questions from question numbers 19 to 23. Each carries 4 scores.
Plus One Economics Model Question Papers Paper 4.30

Question 19.
Find the odd one out and justify your answer.
a. UGC,NCERT,SCERT,NREGP.
b. Title, Captions, Stubs, Text.
c. Mode, Median, Quartiles, Percentiles.
d. Chemical fertilizers, HYV seeds, Licensing, Irrigation.
Plus One Economics Model Question Papers Paper 4.31

Question 20.
Compare the development experience of In­dia, China and Pakistan with reference to demographic indicators, GD.P., growth rate, and development strategies.
Plus One Economics Model Question Papers Paper 4.32

Question 21.
The following data shows the daily wages of 11 families.
Plus One Economics Model Question Papers Paper 4.33

Question 22.
While preparing a frequency distribution; your friend is confused about inclusive and exclusive classes. Help her to distinguish be­tween them, with examples for each.
Plus One Economics Model Question Papers Paper 4.34
Question 23.
The ranks given by two judges to the six par­ticipants of the Kuchipudi competition in the Subdistrict School Kalolsavam, 2012 are Find the correlation between the two judgments.
Plus One Economics Model Question Papers Paper 4.37
Plus One Economics Model Question Papers Paper 4.36
Plus One Economics Model Question Papers Paper 4.35

Answer any 2 questions from question numbers 24 to 26. Each carries 5 scores.
Plus One Economics Model Question Papers Paper 4.38
Question 24.
Calculate the correlation coefficient between X and Y and comment on their relationship.
Plus One Economics Model Question Papers Paper 4.39

Question 25.
In a survey the monthly income of 230 fami­lies in a village was found as follows:
Find mode.
Plus One Economics Model Question Papers Paper 4.40

Question 26.
In India, workers are employed in formal sec­tor and informal sector. Is it necessary to gen­erate gen­erate employment in the formal sector rather than in the informal sector ? Give reasons.
Plus One Economics Model Question Papers Paper 4.41
Plus One Economics Model Question Papers Paper 4.42

Answer any 2 questions from question numbers 27 to 29. Each carries 8 scores.
Plus One Economics Model Question Papers Paper 4.43

Question 27.
The following data shows the marks obtained by 50 students of a class in a test.
Plus One Economics Model Question Papers Paper 4.44

Question 28.
Your Economics teacher is planning to form an economic association in your convener from two students. The criteria for selection is the consistency in marks of five class tests in Economics.
The marks are:
Plus One Economics Model Question Papers Paper 4.46
Plus One Economics Model Question Papers Paper 4.47
Plus One Economics Model Question Papers Paper 4.48

Who will be selected as the convener? (Hint: State the answer by finding SD,CV)
Plus One Economics Model Question Papers Paper 4.49
Question 29.
Vishnu and Joshy are classmates. Usually, they conduct combine study during holidays. They want to draw a Lorenz curve during the course of their study. Explain the steps required to draw the Lorenz Curve.
Plus One Economics Model Question Papers Paper 4.50

Answers

Answer 1.
Plus One Economics Model Question Papers Paper 4.51
Answer 2.
Histogram

Answer 3.
b. Direct oral investigation
Plus One Economics Model Question Papers Paper 4.54

Answer 4.
Tamil Nadu Women in Agriculture

Answer 5.
Increasing
Plus One Economics Model Question Papers Paper 4.55

Answer 6.
Dadabhai Naoroji

Answer 7.
1. Good facility of education, drinking water sanitation etc make the standard of the living of urban people high assets
Plus One Economics Model Question Papers Paper 4.56
Plus One Economics Model Question Papers Paper 4.57
2. open unemployment is generally found

Answer 8.
Quantitative Data

  • Production
  • Weight

Qualitative Data

  • Nationality
  • Gender

Answer 9.
Major sources of human capital in a country they are,

  • Investment in Education
  • Investment in health
  • Migration
  • Information

Answer 10.
Formal sectors are an establishment with more than ten workers, they have a high salary, have social security measures, stable employment etc. While in informal sectors are establish­ments with less than ten workers, low wages, No social security measures, No stable em­ployment, etc.
Plus One Economics Model Question Papers Paper 4.58

Answer 11.
Plus One Economics Model Question Papers Paper 4.59

Answer 12.
Primary Data
It refers to a collection of data, direct from its source of origin. The enumerator i: e, a per­son who collects the data, can collect it by conducting an inquiry or an investigation.
Plus One Economics Model Question Papers Paper 4.60

Secondary Data:
It refers to a collection of data by some ag­ency, which already collected the data and processed. The data thus collected is called secondary data. Secondary data can be ob­tained either from a published source such as government reports, documents, news­papers, books written by economists, etc
Plus One Economics Model Question Papers Paper 4.61

Answer 13.
Plus One Economics Model Question Papers Paper 4.62

Answer 14.
Plus One Economics Model Question Papers Paper 4.63
Plus One Economics Model Question Papers Paper 4.64

Answer 15.
Small-scale industries are more “labour intensive” ie they use more labour than the large-scale industries and, therefore generate more employment. But these industries cannot compete with the big industrial firms., it is obvious that the development of small-scale industry requires them to be shielded from the large firms. For this purpose, the production of a number of products was reserved for the small-scale industry, the criterion of the reservation is the ability of these units to manufacture the goods. They were also given concessions such as lower excise duty and bank loans at lower interest rates. Therefore it can be concluded that small-scale industries play a vital role in an economy like India.
Plus One Economics Model Question Papers Paper 4.65
Plus One Economics Model Question Papers Paper 4.66

Answer 16.
Plus One Economics Model Question Papers Paper 4.67

Answer 17.
Conventional Source of Energy: The energy sources which cannot be compensated, once these are used ( after their exploit­tion) are termed as conventional energy sources, eg: Coal, Electricity, Petroleum
Plus One Economics Model Question Papers Paper 4.68

Non-Conventional Source of Energy: The energy sources which should be renewable and provide a pollution free environment are termed as a non-conventional source of en­ergy. eg: Solar, wind, tidal energy.
Plus One Economics Model Question Papers Paper 4.69

Answer 18.
India: High density of population, Economic reforms in 1991
Plus One Economics Model Question Papers Paper 4.71

Answer 19.
a. NREGP – All others are institutions for controlling education.
b. Text – All others are related to part of a table.
c. Mode – All others are partitioned values
d. Licensing-AII others are related to green revolution.
Plus One Economics Model Question Papers Paper 4.72

Answer 20.
The population of Pakistan is very small and is about one-tenth of China and India. Though China is the largest nation among the three, its density is the lowest. Popula­tion growth is highest in Pakistan, followed by India and China. Sex ratio is low and bi­ased against females in all the three coun­tries. The fertility rate is also low in China and very high in Pakistan. Urbanization is high in both Pakistan and China with India having 28 percent of its population living in urban areas.
Plus One Economics Model Question Papers Paper 4.73

Answer 21.
Plus One Economics Model Question Papers Paper 4.74
Plus One Economics Model Question Papers Paper 4.75

Answer 22.
Inclusive Method
In comparison to the exclusive method, the inclusive method does not exclude the upper-class limit in a class interval. It includes the upper class in a class. Thus both class limits are parts of the class interval.
Plus One Economics Model Question Papers Paper 4.103

Exclusive Method
The classes, by this method, are formed in such a way that the upper-class limit of one class equals the lower class limit of the next class. In this way, the continuity of the data is maintained.
Plus One Economics Model Question Papers Paper 4.77

Answer 23.
Plus One Economics Model Question Papers Paper 4.78
Plus One Economics Model Question Papers Paper 4.79

Answer 24.
Plus One Economics Model Question Papers Paper 4.80

Answer 25.
Plus One Economics Model Question Papers Paper 4.81
Plus One Economics Model Question Papers Paper 4.82

Answer 26.
It is necessary to generate employment in the formal sector. The reasons are:
Plus One Economics Model Question Papers Paper 4.83
• Acceptance of labour laws
• Formation of trade unions.
• Minimum wage fixation
• High level of monitory gains

Answer 27.
Plus One Economics Model Question Papers Paper 4.84
Plus One Economics Model Question Papers Paper 4.85
Plus One Economics Model Question Papers Paper 4.86
Plus One Economics Model Question Papers Paper 4.87

Answer 28.
Plus One Economics Model Question Papers Paper 4.88
Plus One Economics Model Question Papers Paper 4.89
Plus One Economics Model Question Papers Paper 4.90
Since S.D and C.V of Jyothi are less com­pared to Amrutha, Jyothi is considered more consistent. Therefore Jyothi should be selected as convenor according to the criteria.
Plus One Economics Model Question Papers Paper 4.91

Answer 29.
1. The size of items or mid-points of classes is cumulated. The cumulative sum of the items is assumed to be 100. All the different cumulative totals are converted into a percentage.
Plus One Economics Model Question Papers Paper 4.92
2. Frequencies are also made cumulative. Last cumulative frequency is considered as 100. Other frequencies except the last are converted into a percentage.
Plus One Economics Model Question Papers Paper 4.93
3. Cumulative frequencies are plotted on X-axis while cumulative items are plot­ted on the Y-axis.
Plus One Economics Model Question Papers Paper 4.94
4. We start on X-axis while cumulative items are plotted on the Y-axis
Plus One Economics Model Question Papers Paper 4.95Plus One Economics Model Question Papers Paper 4.99
5. 0 on X-axis and 100 on Y-axis are joined by a line. This line is known as the line of equal distribution.
Plus One Economics Model Question Papers Paper 4.100
6. We plot the values on X and Y axis in an ordinary way and the plotted points are joined by a curve. It is the curve of ac­tual distribution.
Plus One Economics Model Question Papers Paper 4.101
7. The lesser distance between the line of equal distribution and line of actual distribu­tion shows lesser dispersion and so on.
Plus One Economics Model Question Papers Paper 4.102

Plus One Economics Previous Year Question Papers and Answers

Plus One Economics Model Question Paper 3

Kerala Plus One Economics Model Question Paper 3

Time Allowed: 2 hours
Cool off time: 15 Minutes
Maximum Marks: 60

Answer all questions from question numbers 1 to 6. Each carry one score.

State whether the following statement is true or false. (Q. 1 to Q. 3)
Plus One Economics Model Question Papers Paper 2
Question 1.
In India, inflation is calculated by using the wholesale price index.
Plus One Economics Model Question Papers Paper 2.2

Question 2.
SHG for Social Health Group

Question 3.
More than half of the workforce in India belongs to regular salaried employees.
Plus One Economics Model Question Papers Paper 2.3

Question 4.
Find the odd one out
height,weight ,honesty,price,income.
Plus One Economics Model Question Papers Paper 2.5

Question 5.
Find out the odd one Growth, Modernization, Equity, Exports
Plus One Economics Model Question Papers Paper 2.6

Question 6.
Match column B with column A
Plus One Economics Model Question Papers Paper 2.7
Plus One Economics Model Question Papers Paper 2.8
Answer questions from question numbers 7 to 11. Each carries two scores.
Plus One Economics Model Question Papers Paper 2.9
Question 7.
Name some modem industries which were in operation in our country at the of indepen­dence.
Plus One Economics Model Question Papers Paper 2.10

Question 8.
Give two ways of converting government companies into private companies
Plus One Economics Model Question Papers Paper 2.11

Question 9.
The activities of Kudumbasree limits in your locality plays an important role in the empowerment of women. How far it will promote the empowerment of women in your own view?
Plus One Economics Model Question Papers Paper 2.12
Question 10.
Critically evaluate the shortcomings of the industrial policy pursued by the colonial administrators.
Plus One Economics Model Question Papers Paper 2.13

Question 11.
You are asked to study, the problems faced by the rubber cultivators in Kerala. List out the important steps for preparing this project.
Plus One Economics Model Question Papers Paper 2.14

Answer any six questions from question numbers 12 to 18.Each carries three scores
Plus One Economics Model Question Papers Paper 2.16

Question 12.
Identify the various favorable conditions prevailing in India which make outsourcing possible.
Plus One Economics Model Question Papers Paper 2.17

Question 13.
Write three techniques for studying corre­lation.
Plus One Economics Model Question Papers Paper 2.18

Question 14.
Calculate the simple aggregative price index for the commodities given below.
Plus One Economics Model Question Papers Paper 2.19
Question 15.
China’s rapid industrial growth can be traced back to its reforms in 1978. Do you agree? Elucidate.
Plus One Economics Model Question Papers Paper 2.20

Question 16.
Which of the following errors is more serious and why?

Question 17.
Complete the parts of the statistical table given below.
Plus One Economics Model Question Papers Paper 2.21

Question 18.
The following table gives the daily income of ten workers in a factor. Find the arithmetic mean.
Plus One Economics Model Question Papers Paper 2.22
Answer any four questions from question numbers 19 to 23. Each carries four scores.
Plus One Economics Model Question Papers Paper 118
Question 19.
Critically evaluate the poverty alleviation programmes implemented in India
Plus One Economics Model Question Papers Paper 2.24

Question 20.
Draw a flow chart with different types of sampling
Plus One Economics Model Question Papers Paper 2.25

Question 21.
The following table shows the ages of the patients admitted to a hospital during a year.
Plus One Economics Model Question Papers Paper 2.26
Find the median age
Plus One Economics Model Question Papers Paper 2.27

Question 22.
How do the following factors contribute to the environmental crisis in India?
a. Global warming and ozone depletion
b. Reduction of forest coverage
c. Rising population
d. Air and water pollution
Plus One Economics Model Question Papers Paper 2.28

Question 23.
Group the following features pertaining to the economies of India, China, and Pakistan. (One-child norm, very high fertility rate, commune system, high density of population, economic reforms in 1988, economic reforms in 1991).
Plus One Economics Model Question Papers Paper 2.29

Answer any two questions from question numbers 24 to 26. Each carries five scores.
Question 24.
“Many developed countries were finding it difficult to maintain the growth rate of even 5%. China was able to maintain nears double­digit growth for more than two decades.” Can you point out the main strategies adopted by China to attain this?
Plus One Economics Model Question Papers Paper 2.30

Question 25.
The marks secured by 60 students in an examination are given below.
Plus One Economics Model Question Papers Paper 2.31

Question 26.
Mark obtained by 50 students in an examination are given below. Write the frequency distribution of these marks.
Plus One Economics Model Question Papers Paper 2.32
8,25,14,7,33,61,78,54,81,27,21,1867,58 55,21,90,74,53,38,42 ,63,7119,20,28,3741 ,85,29,64,79,88,97,19,21,41,77,59,69 52 ,44,75,81,2791,98,39,86,19

Answer any two questions from question numbers 27 to 29. Each carries eight scores.
Plus One Economics Model Question Papers Paper 2.33
Question 27.
Krishna is a research student at Cochin University. He is doing research on poverty among slum dwellers. He conducted a pre­test before the actual survey begins. Mention the advantages of conducting such a survey.
Plus One Economics Model Question Papers Paper 2.34
Plus One Economics Model Question Papers Paper 2.35

Question 28.
To check the quality of two brands of light bulbs, their life in burning hours was estimated as under for 100 bulbs of each brand.
Plus One Economics Model Question Papers Paper 2.36
1. Which brand gives higher life?
Plus One Economics Model Question Papers Paper 2.37

Question 29.
During the colonial period, industrial progress of India economy was very slow. Give reasons for supporting this statement.
Plus One Economics Model Question Papers Paper 2.38

Answer

Answer 1.
True
Plus One Economics Model Question Papers Paper 2.39

Answer 2.
False
Plus One Economics Model Question Papers Paper 2.40

Answer 3.
False
Plus One Economics Model Question Papers Paper 2.40
Answer 4.
Honest
Plus One Economics Model Question Papers Paper 2.41

Answer 5.
Exports. Others are objectives of 5 years
Plus One Economics Model Question Papers Paper 2.42

Answer 6.
Plus One Economics Model Question Papers Paper 2.43
Plus One Economics Model Question Papers Paper 2.44

Answer 7.
Cotton textile, Cement Industries, Jute textile, Sugar industries, paper industries.
Plus One Economics Model Question Papers Paper 2.45

Answer 8.
1. Disinvestment sales of public sector companies.
Plus One Economics Model Question Papers Paper 2.46
2. Withdrawal of the govt from ownership and management of public sector companies.
Plus One Economics Model Question Papers Paper 2.47

Answer 9.
Kudumbasree units help empowerment of women in the following manner.
Plus One Economics Model Question Papers Paper 2.77

  1. Self-employment
  2. Microfinancing
  3. Critical evaluation
  4. Rural poverty eradication

Answer 10.
1. Capital goods industry was absent
2. Indian handicraft industries perished

Answer 11.
Choice of the target group
Plus One Economics Model Question Papers Paper 2.49

Answer 12.
Outsourcing is good for India. Because the outsourcing is generated the new employ­ment opportunities in the Indian economy contributed to GDP and has increased the foreign reserve in the country. This is one of the important outcomes of the globalisation process. In outsourcing, a company hires regular service from an external source. Mostly from other countries, which was previously provided internally or from within the country like legal advice, computeri$ervice, ad­vertisement, etc.
Plus One Economics Model Question Papers Paper 2.50

Answer 13.
1. Scatter diagram
2. Karl Person Coefficient of correlation
3. Spearman’s rank correlation.
Plus One Economics Model Question Papers Paper 2.52

Answer 14.
Plus One Economics Model Question Papers Paper 2.53

Answer 15.
Yes, China’s rapid industrial growth can be traced back to its reforms in 1978. This is because reforms in agriculture and establish­ment of infrastructure in the areas of educa­tion and health, land reforms etc. had been taking place with introduced of reforms. In the initial phase, reformers were initiated in agriculture, foreign trade, and investment sec­tors. In the later phase, reforms were initi­ated in the industrial sector. Private sector firms and township and village enterprises were allowed to produce goods. The reform process also involves dual pricing. It was found that establishment of infrastructure in the area of education and health, land re­forms, long existence of decentralized plan­ing and existence of small enterprises had helped positively in improving the social and income indicators in the post-reform period.
Plus One Economics Model Question Papers Paper 2.54

Answer 16.
Non-sampling errors are more serious than sampling errors because a sampling error can be minimised by taking a large sample. Even census can contain non-sampling errors.
Type of Non-sampling errors
Plus One Economics Model Question Papers Paper 2.55

Answer 17.
Plus One Economics Model Question Papers Paper 2.56

Answer 18.
Plus One Economics Model Question Papers Paper 2.57
Answer 19.
Critical Assessment of Poverty Alleviation Programmes: Through the policy towards
poverty alleviation has evolved in a progressive manner but gone any radical transformation. Scholars state three major areas of concern which prevent the successful implementation of the programs they are
Plus One Economics Model Question Papers Paper 2.58
1. Unequal distribution of land and other assets due to the benefits have been availed by the non-poor.
2. In comparison to the magnitude of poverty, the amount of resources allocated for these programmes is not sufficient.
3. These programs depend mainly on government and bank officials for their

Plus One Economics Model Question Papers Paper 2.59

Answer 20.
Plus One Economics Model Question Papers Paper 2.60

Answer 21.
Plus One Economics Model Question Papers Paper 2.61
Plus One Economics Model Question Papers Paper 2.62

Answer 22.
The major greenhouse gases
a. Global warming the major greenhou­se gases (GHGs) consist of carbon dioxide, methane, nitrous oxide, wa­ter vapor and chlorofluorocarbons (CFCs). These gases allow sunlight to penetrate to the earth’s surface, yet prevent infrared radiant heat from escaping.
b. When forest cover is lost, runoff rap­idly flows into streams, elevating river levels and subjecting downstream vil­lages, cities, and agricultural fields to flooding, especially during the rainy season. During the dry season, such areas downstream of deforestation can be prone to months-long droug­hts which interrupt river navigation.
c. Rapid human population growth has a variety of consequences] Popula­tion grows fastest in the world’s poor­est countries. High fertility rates have historically been strongly correlated with poverty and high childhood mor­tality rates.
d. Air pollution has been linked to health problems like asthma and lung disea­se, as well as the deterioration of the ozone layer (which protects us from harmful UV rays) and the warming of the earth which may destroy the habi­tats of many animals.
Plus One Economics Model Question Papers Paper 1.68
Plus One Economics Model Question Papers Paper 2.63
Plus One Economics Model Question Papers Paper 2.64

Answer 23.
Economy of India

  • The high density of population
  • Economic reforms in 1991
    Economy of China
  • One child form
  • Commune system
    Economy of Pakistan
  • The very high fertility rate
  • Economic reforms in 1988

Answer any two questions from question numbers 24 to 26. Each carries five scores.

Answer 24.
Since 1978, China began to introduce many reforms in phases the reforms were initiated in agriculture foreign trade and investment sector. In agriculture, lands were divided in two small plots which were allocated to individual households, they were allowed to keep all income from the land after paying taxes. At this stage, enterprises owned by government, in India we call them public sector enterprises were made to face competition. In reform price was fixed in two ways,i.e, farmers and industrial units were required to buy and a sell fixed quantities of inputs and outputs on the basis of prices fixed by the government and the rest were purchase and 9old at a market prices Over the years, as production increased, the population of goods or inputs transacted in the market also increased. The goal of Chinese economic re­forms was to generate sufficient surplus to finance the modernization of the mainland Chinese economy. In order to attract for­eign investors, Special Economic Zones were setup.
Plus One Economics Model Question Papers Paper 2.66

Answer 25.
Plus One Economics Model Question Papers Paper 2.67
Plus One Economics Model Question Papers Paper 2.68

Answer 26.
Plus One Economics Model Question Papers Paper 2.69

Answer 27.
Once the questionnaire is ready, it is advisable to conduct a try Out with a small group which is known as the pilot survey. Advantages of the pilot survey:
Plus One Economics Model Question Papers Paper 2.70
Providing a preliminary idea about the survey.
Pre-testing of the questionnaire, so as to know the shortcomings and drawback of the questions.
Assessing the suitability of the questions, clarify the instructions, the performance of enumerators and the cost and time involved in the actual survey.
Plus One Economics Model Question Papers Paper 2.73

Answer 28.
Plus One Economics Model Question Papers Paper 2.74
Plus One Economics Model Question Papers Paper 2.75

Answer 29.
Plus One Economics Model Question Papers Paper 2.76

Plus One Economics Previous Year Question Papers and Answers

Plus One Economics Model Question Paper 2

Kerala Plus One Economics Model Question Paper 2

Time Allowed: 2 hours
Cool off time: 15 Minutes
Maximum Marks: 60

Answer Question number 1, which carries 5 scores.
Plus One Model Economics Question Papers Paper 2
Question 1.
Match the columns ‘B’ and ‘C’ with column ‘A’

ABC
a. Smallscale IndustryTaxation1955
b. Public ExpenditureKarve CommitteeFiscal Policy
c. LiberalizationMedianNCERT
d. UGCPrivatizationPercentile
e. QuartilesSCERTGlobalisation

Answer all questions from question numbers 2 to 6. Each Carry 1 score
Plus One Model Economics Question Papers Paper 2.1

Question 2.
As per 2009-2010, the State in India incur the highest per capita expenditure on edu­cation is
a. Kerala
b. Punjab
c. Himachal Pradesh
d. Madhya Pradesh

Plus One Model Economics Question Papers Paper 2.2

Question 3.
Meeting the needs of the present genera­tion without compromising the needs of the future generation is called
a. economic development
b. social development
c. sustainable development
d. economic growth
Plus One Model Economics Question Papers Paper 2.3

Question 4.
Data represented through a histogram can help in finding graphically the……………
a. mean
b. mode
c. median
d. standard deviation
Plus One Model Economics Question Papers Paper 2.4

Question 5.
When the coefficient of correlation, r =0, there is
a. positive correlation
b. no correlation
c. negative correlation
d. none of these
Plus One Model Economics Question Papers Paper 2.5

Question 6.
Athira plotted the values of two variables X and Y in a scatter diagram as follows. The nature of correlation here is ……………………
Plus One Model Economics Question Papers Paper 2.6
a. Perfect positive
b. Perfect negative
c. Positive
d. Negative
Plus One Model Economics Question Papers Paper 2.7

Answer all questions from question numbers 7 to 11. Each carries 2 scores.
Plus One Model Economics Question Papers Paper 2.8

Question 7.
Name some notable economists who esti­mated India’s per capita income during the colonial period
Plus One Model Economics Question Papers Paper 2.9

Question 8.
Compare and constract the terms relative and absolute poverty. Do you think absolute pov­erty exists in your neighbourhood?
Plus One Model Economics Question Papers Paper 2.10

Question 9.
In your view, is it essential for the government to regulate the fee structure in educa­tion and health care institutions? Give rea­son in support of your, answer.
Plus One Model Economics Question Papers Paper 2.11

Question 10.
Give the names of two government orga­nisations that regulate the health and education sectors in India.
Plus One Model Economics Question Papers Paper 2.12

Question 11.
What do you mean by rural development? Bring out the key issues in rural development.
Plus One Model Economics Question Papers Paper 2.13

Answer any 6 questions from question numbers 12 to 18. Each carries 3 scores.
Plus One Model Economics Question Papers Paper 2.14

Question 12.
Heights of 10 plants in a garden are given below.
Plus One Model Economics Question Papers Paper 2.15
Plus One Model Economics Question Papers Paper 2.18
a. Find of the mean height.
b. State the interesting property of A.M
Plus One Model Economics Question Papers Paper 2.16

Question 13.
Find the simple aggregative price index for the following selected commodities.
Plus One Model Economics Question Papers Paper 2.17
Plus One Model Economics Question Papers Paper 2.19
Question 14.
Given below are the seats won by different political parties of a state assembly election.

Political PartiesABCDE
Seats Won7555372910

Draw a simple bar diagram to represent the polling results.

Question 15.
Explain the two categories into which infra­structure is divided. How are both indepen­dent?
Plus One Model Economics Question Papers Paper 2.21
Question 16.
“During the colonial rule, there was neither growth nor equity in the agricultural sector.”
Plus One Model Economics Question Papers Paper 2.22
1. Name the two measures adopted by the policymakers of independent India to resolve this.
Plus One Model Economics Question Papers Paper 2.23
2. State the features of any one.
Plus One Model Economics Question Papers Paper 2.24
Question 17.
What is sustainable development?

Question 18.
Distinguish between bar diagram and histo­gram.
(Hint: Not to draw diagrams)
Plus One Model Economics Question Papers Paper 2.25

Answer any 4 questions from question numbers 19 to 23. Each carries 4 scores.

Question 19.
The Following data shows daily
Plus One Model Economics Question Papers Paper 2.27
Question 20.
Identify the factors responsible for land deg­radation in India.
Plus One Model Economics Question Papers Paper 2.29

Question 21.
The following information relates to the daily in­come of 150 families. Calculate the arithmetic mean.

Income in Rs.Number of families
Less than 8510.
Less than 9535
Less than 10555
Less than 11580
Less than 12590
Less than 135110
Less than 145125
Less than 150150

Question 22.
Scatter diagrams show the visual presenta­tion of correlation.
a. Draw scatter diagrams showing positive correlation and negative correlation.
b. Point out one example each for positive correlation and negative correlation.

Question 23.
Critically evaluate the poverty alleviation programmes in India.
Plus One Model Economics Question Papers Paper 2.30

Answer any 2 questions from question numbers 24 to 26. Each carries 5 scores.
Plus One Model Economics Question Papers Paper 2.31

Question 24.
Calculate the single aggregate price index for 2008 taking 1998 as the base year from the following data.
Plus One Model Economics Question Papers Paper 2.32

Commodities

ABCDE
Price in 1998 (Rs)2006016018030
Price in 2008 (Rs)22012018020030

Question 25.
Critically evaluate the poverty alleviation programmes in India
Plus One Model Economics Question Papers Paper 2.34
Question 26.
While explaining the features of globa­lization, your Economics teacher says “outsourcing is one of the important out­comes of the globalization process”. Examine how outsourcing helps the Indian economy.
Plus One Model Economics Question Papers Paper 2.35
Answer any 2 questions from question numbers 27 to 29. Each carries 8 scores.
Plus One Model Economics Question Papers Paper 2.36

Question 27.
The following are the marks obtained for the class test of 10 students in a class for Eco­nomics and History.
Plus One Model Economics Question Papers Paper 2.37

Marks for EconomicsMarks for History 
5035
6040
2521
5725
7229
3650
6862
7252
3065
3845

Plus One Model Economics Question Papers Paper 2.38

Question 28.
Distinguish between census survey and sample survey.
Plus One Model Economics Question Papers Paper 2.39

Question 29.
The following data shows the marks obtained by 50 students of a class in a test.

MarksNumber of students
0-105
10-204
20-3010
30-409
40-507
50-603
60-705
70-807

Find the arithmetic mean, median, and mode
Plus One Model Economics Question Papers Paper 2.40Answers

Answer 1.

ABC
a Small scale IndustryKarve  Committee1955
b.Public ExpenditureTaxation Fiscal Policy
c. Liberalization Privatizattion Globalisation
d. UGC SCERT NCERT
e. QuartilesMedian Percentile

Answer 2.
Himachal Pradesh

Answer 3.
Sustainable development

Answer 4.
Mode

Answer 5.
b. No correlation

Answer 6.
c. Positive

Answer 7.
Dadabhai Naoroji, William Digby, VKRVRao and RC Desai.

Answer 8.
Absolute poverty is defined as the inability to achieve the minimum requirement of life, health, and efficiency as a result of a very low level of income. On the other hand, relative pov­erty makes a comparison of relative levels of income of different people or groups of population to determine who poor. Yes, absolute poverty exists in my neighborhood.
Plus One Model Economics Question Papers Paper 2.41

Answer 9.
Yes, High fees are to be reduced or regulated due to the following reasons.
Plus One Model Economics Question Papers Paper 2.42
Plus One Model Economics Question Papers Paper 2.43

Answer 10.
Education sector

  • NCERT, UGC

Health sector

  • ICMR

Answer 11.
Following are the key issues in rural develop­ment.
Plus One Model Economics Question Papers Paper 2.44

Answer 12.
Plus One Model Economics Question Papers Paper 2.45
Plus One Model Economics Question Papers Paper 2.46
Answer 13.

CommoditiesP0P1
A2040
B5060
C4050
D2030
Total130180

\({ p }_{ 01 }=\cfrac { { \Sigma p }_{ 1 } }{ { \Sigma p }_{ o } } \times \cfrac { 180 }{ 130 } \times 100\)
= 1.3846 x 100 = 138.46

Answer 14.
Plus One Model Economics Question Papers Paper 2.47
Answer 15.
Infrastructure is broadly categorised as
1. Social Infrastructure:- It refers to the core elements of social change which serve as a foundation for the process of social development of a country.lt contributes to economic processes indirectly and from outside the system of production and distribution.

2. Economic Infrastructure:- It refers to all such elements of economic change which serve as a foundation for the process of economic growth.
Plus One Model Economics Question Papers Paper 2.48
Answer 16.

  • Land reforms
  • Green revolution
  • Land reforms

At the time of independence, the land tenure system was charactrized by intermediaries. Who merely collected rent from the actual tillers of the soil without contributing towards improvements on the farm. The low produc­tivity of the agricultural sector forced India to import food from the United States of America. Equity in agriculture called for land reforms which primarily refer to change in the owner­ship of landholding.
Plus One Model Economics Question Papers Paper 2.49
Answer 17.
It refers to the development strategy to inter­ruption till the resource extraction was not above the rate of regeneration of the resource and the wastes generated were within the assimilating capacity of the environment But today, environment fails to perform its third and vital function of the sustenance resulting in an environmental crisis. The rising popula­tion of the developing countries and the af­fluent consumption and production standards of the developed world have placed huge stress on the environment in terms of its first two functions.
Plus One Model Economics Question Papers Paper 2.51
Plus One Model Economics Question Papers Paper 2.52

Answer 18.

Bar diagramHistogram
Bar diagram comprised agro up of equispacedA histogram is a two-dimensional diagram
Equal width rectangular barsthe width may be different
Space is left between adjacent barNo space is left
Draw for discrete and con­tinues variables.Drawn for continuous variable only
Not help to determine any averageHelp to determine made

Answer 19.
Plus One Model Economics Question Papers Paper 2.53
Plus One Model Economics Question Papers Paper 2.54
Plus One Model Economics Question Papers Paper 2.55
Answer 20.
Land degradation is a process in which the value of the biophysical environment is af­fected by a combination of human-induced processes acting upon the land.
Plus One Model Economics Question Papers Paper 2.56

The factor responsible for land degradation in India are:

  1. Loss of vegetation occurring due to deforestation.
  2. Dumping of non-biodegradable fresh, such as plastics
  3. Shifting cultivation
  4. Encroachment into forest lands
  5. Forest fires and overgrazing.
  6. Non-adoption of adequte soil conser­vation measures.
  7. Improper crop rotation.
  8. Indiscriminate use of agrochemicals Such as fertilizers and pesticides.
  9. Improper plannig and management of irrigation system.
  10. Extraction of groundwater in excess of the recharge capacity.

Answer 21.
Arithmetic Mean
Plus One Model Economics Question Papers Paper 2.58

Classfmfm
75-851080800
85-9525902250
95-105201002000
105-115251102750
115-125101201200
125-135201302600
135-14551402100
145-155251503750
15017450

Plus One Model Economics Question Papers Paper 2.59
Answer 22.
Plus One Model Economics Question Papers Paper 2.60
Plus One Model Economics Question Papers Paper 2.61
Answer 23.
Through the policy towards poverty alleviation has evolved in a progressive maimer but over the last five and a half de­cades it has not undergone any radical trans­formation.
The three major area of concern which prevents the successful implementation of the programs, they are:

1. These programs depend mainly on government and bank officials for their implementation since such officials are ill-motivated, the resources are ineffi­ciently used and wasted.
Plus One Model Economics Question Papers Paper 2.63

2. Unequal distribution of land and other assets due to the benefits have been availed by the non-poor.
Plus One Model Economics Question Papers Paper 2.73

3. In comparison to the magnitude of poverty the amount of resource allocated for these programme is not sufficient
Plus One Model Economics Question Papers Paper 2.64

Answer 24.
Calculate simple agregate price index
\( { P }_{ 01 }=\cfrac { \Sigma { P }_{ 1 } }{ \Sigma { P }_{ 2 } } \times 100{ 142857 } \)
\( \cfrac { 750 }{ 630 } \times 100 \)

Answer 25.
Critical Assessment of Poverty Alleviation Programmes: Through the policy towards poverty alleviation has evolved in a progres­sive manner but gone any radical transfor­mation. Scholars state three major areas of concern which prevent the success imple­mentation of the programs they are-

  • Unequal distribution of land and other assets due to the benefits have been availed by the non-poor.
  • In comparison to the magnitude of poverty, the amount of resources al­located for these programmes is not sufficient.
  • These programs depend mainly on government and bank officials for their implementation since such officials are ill-motivated, inadequately trained, corruption-prone and vulnerable to pressure from a variety of local cit­ies, the resources are inefficiently used and wasted.

Plus One Model Economics Question Papers Paper 2.65
Plus One Model Economics Question Papers Paper 2.66

Answer 26.
Outsourcing is one of the important out­comes of the globalization process. In outsourcing, a company hires regular service from external sources, mostly from other countries, which was previously provided in­ternally or from within the country (like legal advice, computer service, advertisement, se­curity-each provided by respective depart­ments of the company).
Plus One Model Economics Question Papers Paper 2.67

Answer 27.
Standard Deviation is the positive square root of the mean of squared deviations from mean. So if there are five values X1 , X2, X3, X4 and X5, first their mean is calculated. Then deviations of the values from mean are cal­culated. These deviations are then squared. The mean of these squared deviations is the variance. The positive square root of the vari­ance is the standard deviation.
Plus One Model Economics Question Papers Paper 2.68

Answer 28.
A survey, which inculdes every elements of the population is known as Census or the Method of complete Enumeration. The essential feature of this method is that this covers every individual unit in the entire population
Sample survey:-  Population or the Universe in statistics means the totality of the items understudy. Thus, the population or the Universe is a group to which the results of the study are intended to apply. There are two methods of sampling namely, random sampling and non-random sampling. They are explained below.

Answer 29.
Plus One Model Economics Question Papers Paper 2.70
Plus One Model Economics Question Papers Paper 2.71
Plus One Model Economics Question Papers Paper 2.72

Plus One Economics Previous Year Question Papers and Answers