Tuesday, November 24, 2015

2013 Question Paper,COMPUTER APPLICATIONS(Theory),University Of Pune Question Paper,F. Y. B. Com.

2013 Question Paper,COMPUTER APPLICATIONS(Theory),University Of Pune Question Paper,F. Y. B. Com.
University Of Pune Question Paper
F. Y. B. Com. Examination - 2013
COMPUTER APPLICATIONS
(Theory)
(Vocational Course-II)
(New 2008 Pattern)
Time : 2 Hours] [Max. Marks : 40
Instructions :
(1) Draw a neat-labelled diagram wherever necessary.
(2) Figures to the right indicate full marks.
Q.1) Explain following functions with syntax and example : (Any Five) [05]
(a) main( )
(b) getc( )
(c) putc( )
(d) sqrt( )
(e) strcat( )
(f) abs( )
(g) clrscr( )
Q.2) What will be the output of the following modules : (Any Four) [08]
(a) main( )
{
int i = 1;
while(i < = 10)
{
printf(“\n %d”, i);
i++
}
}
[4369]-133 1 [P.T.O.
Seat
No.
(b) main( )
{
int x = 10;
if x>= = 2
printf(‘%d//n’, x)
}
(c) main( )
{
int x = 3, y = 4, z = 4;
printf(“ans = %d”, (z > = y ? 100:200));
}
(d) main( )
{
int i;
for(i = -1; i < = 10; i++)
{
if (i < 5)
continue;
else
break;
printf(“gets printed only once!!!”);
}
}
(e) main( )
{
int a = 500, b, c;
if(a > = 400)
b = 300;
c = 200;
printf("\n %d %d”, b, c);
}
[4369]-133 2 [Contd.
(f) main( )
{
int x = 1;
while(x == 1)
 x = x – 1;
printf("\n %d”, x);
}
Q.3) Write short notes : (Any Five) [15]
(a) Evolution of Programming Languages
(b) Object Oriented Programming
(c) Relational Operators
(d) If condition
(e) Loops in c
(f) Flowcharts
Q.4) Answer the following : (Any Three) [12]
(a) Write a program to calculate the sum of first 5 even numbers.
(b) Explain 2 numeric functions with syntax and example.
(c) Write a program to covert temperature from Celsius to
Fahrenheit.
(d) What is Array ? What is the need for array ?
(e) What are different data types available in C Language ?

Search Everything Here