0% found this document useful (0 votes)
267 views

F. Y. B. Sc. (Computer Science) Examination - 2010: Total No. of Questions: 5) (Total No. of Printed Pages: 4

This document contains information about a computer science examination from 2010, including instructions, questions, and additional printed pages. It covers the following topics: - Introduction to programming and C programming - File organization and fundamentals of database - Electronic devices, circuits, and computer peripherals The examination contains 5 questions worth a total of 80 marks. All questions are compulsory and diagrams should be drawn where necessary.

Uploaded by

Amarjeet Das
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
267 views

F. Y. B. Sc. (Computer Science) Examination - 2010: Total No. of Questions: 5) (Total No. of Printed Pages: 4

This document contains information about a computer science examination from 2010, including instructions, questions, and additional printed pages. It covers the following topics: - Introduction to programming and C programming - File organization and fundamentals of database - Electronic devices, circuits, and computer peripherals The examination contains 5 questions worth a total of 80 marks. All questions are compulsory and diagrams should be drawn where necessary.

Uploaded by

Amarjeet Das
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 76

Total No.

of Questions : 5]

[Total No. of Printed Pages : 4

[3718]-1
F. Y. B. Sc. (Computer Science) Examination - 2010
COMPUTER SCIENCE
PAPER - I INTRODUCTION TO PROGRAMMING AND C PROGRAMMING (New 2008 Pattern)

Time : 3 Hours] [Max. Marks : 80 Instructions : (1) All questions are compulsory. (2) Figures to the right indicate full marks. (3) Neat diagrams must be drawn wherever necessary.

Q.1) Answer the following : (Any Ten) (1) (2) (3) (4) (5) (6) (7) (8) (9) Give advantages of C Language. What is Source Program and Object Program ? C is a middle level language. Comment. State any four Escape Sequences. How many keywords are used in C Language ? Give rules to declare an Identifier. Give syntax and purpose of go to and label statement. How to access data member from a structure ?

[1x10=10]

What is the difference between SEEK-SET and SEEK-CUR ?

(10) Explain any two modes in which files can be opened ? (11) Compare Structure and Union with respect to Memory Management. (12) Explain difference between Pre-increment and Post-increment Operator. [3718]-1 1 P.T.O.

Q.2) Answer the following : (Any Four) (a) Distinguish between Compiler and Interpreter. (b) (c) (d) (e)

[5x4=20]

What is Recursion ? Explain its advantages and disadvantages. Explain any five library functions provided in C to manipulate Strings. Write a note on Preprocessor Directives. Write a note on Command Line Arguments. [5x4=20]

Q.3) Answer the following : (Any Four) (a) (b)

Write an algorithm and draw a flowchart to check whether the given string is palindrome or not. Find and justify output of the following program segment : #include <stdio.h> void main( ) { char ch = A; int i = 2; float f = ++ch+i; printf(%f %d %c, f, ch, ch); }

(c)

[3718]-1

Find and justify output of the following program segment : #include <stdio.h> void main( ) { int n = 63; printf(\n n is %d, n); printf(\n n is %2d, n); printf(\n n is %4d, n); printf(\n n is %6d, n); printf(\n n is %-6d, n); printf(\n n is %\d, n); } 2 Contd.

(d)

(e)

Find and justify output of the following program segment : #include <stdio.h> main( ) { int u1, u2; int v = 3; int * pv; u1 = 2 * (v + 5); pv = &v; u2 = 2 * (* pv + 5); printf(\n u1 = %d u2 = %d, u1, u2); } Complete the following program segment : void main( ) { int n = 5; int fact; fact = factorial(n); printf(%d, fact); }

Q.4) Answer the following : (Any Four) [5x4=20] (a) Write a C program to calculate GCD of two numbers. (b) Write a C program to convert decimal number to binary number using function. (c) Write a C program to sort given list of numbers in descending order. (d) Write a C program using pointers to search a substring from the given string. (e) Write a C program which prints number into words : for ex. ilp 123 olp one two three

[3718]-1

P.T.O.

Q.5) Answer the following : (Any Two) (a) (b) (c) Explain basic datatypes in C Language.

[5x2=10]

What do you mean by Array of Structures ? Explain with example. What is File ? State any four operations on file by giving proper example.

[3718]-1/4

Total No. of Questions : 5]

[Total No. of Printed Pages : 4

[3718]-2
F. Y. B. Sc. (Computer Science) Examination - 2010
COMPUTER SCIENCE
PAPER - II FILE ORGANISATION AND FUNDAMENTALS OF DATABASE (New 2008 Pattern)

Time : 3 Hours] [Max. Marks : 80 Instructions : (1) All questions are compulsory. (2) Figures to the right indicate full marks. (3) Neat diagrams must be drawn wherever necessary.

Q.1) Answer the following : (Any Ten) (1) (2) (3) (4) (5) (6) (7) (8) (9) What is Logical File ? Define Fixed Length Records. What is Query Optimizer ? What is Referential Integrity ? Define Natural Join. Define Domain. Define Cardinality of an Entity. Define DCL. What is Clustering Index ?

[1x10=10]

(10) Define Ordering Field or Key Field of an Ordered File. (11) Explain use of Foreign Key Constraint. (12) List any 2 design goals of Relational Database. Q.2) Answer the following : (Any Four) (a) (b) What are different types of the Database Users ? Consider the relation R = (A, B, C, D, G, H, I) and set of functional dependencies defined on R, F as {A B, A C, CG H, CG I, B H} (i) (ii) [3718]-2 Compute closure of F i.e. F+ and Compute closure of Attribute Set (AG)+ 1 P.T.O. [5x4=20]

(c) (d) (e) (a) (b) (c) (d) (e) Q.4) (A)

Write a short note on B+ Tree Index Files. What is Aggregation ? Explain with example. State rules to convert E-R diagram into tables. [5x4=20] State different File Organisations and explain Heap File Organisation in detail. Write a note on Referential Integrity. What is Decomposition of Relation Scheme ? Write any four functions of DBA. Differentiate between Weak Entity and Strong Entity with suitable example. Answer the following : (Any Three) (a) Consider the following database relations : Country(Con-code, Name, Capital) Population (Pop-code, Population) Country and Population are related with one to one relationship. Create a relational database for the above and convert it in 3NF and solve the following queries in SQL : (i) (ii) List highest population country. Give name and population of country whose capital is Delhi. [5x3=15]

Q.3) Answer the following : (Any Four)

(iii) Print Countrywise Population. (b) Consider the following relation : Teacher (tno, tname, collegename, dept.) Etest (eno, testname) Teacher and Etest are related with many to many relationship. Create a relational database for the above and convert it in 3NF and solve the following queries in SQL : (i) Count no. of teachers who passed Set Exam of Computer Science. (ii) Delete all teacher details of Maths Dept. (iii) Print total no. of teachers passing respective exam. [3718]-2 2 Contd.

(B)

Consider the following relation : Employee (empno, empname, salary, comm., desg.) Department (deptno, deptname, location) Employee and Department are related with many to one relationship. Create a relational database for the above and convert it in 3NF and solve the following queries in SQL : (i) Find out employees who are working at Ahmednagar city location. (ii) Find maximum, minimum and average salary for every designation. (iii) Update commission for every employee by 5% who belongs to Computer Department. (d) Consider the following relation : Item (I_no, I_name, I_qty) Po (p_no, p_date, cost, qty) Supplier (s_no, s_name, s_addr.) Item and Po are related with one to many relationship and supplier and Po are related with one to many relationship. Create a relational database in 3NF and solve the following queries in SQL : (i) Find out po_no, po_date and supplier_name of Po which is maximum amount. (ii) List name of supplier to whom Po is given for Mouse. (iii) List name of supplier who is going to supply Monitor with minimum cost. Answer the following : (Any One) [5x1=05] (a) Consider the following relationships : Doctor (doct_no, doct_name, doct_address, doct_city) Hospital (hosp_no, hosp_name, street, hosp_city) Doct_Hosp (doct_no, hosp_no, date) Solve queries in Relational Algebra : (i) Find hospital name to which Dr. Padghan has visited. (ii) Find out all doctors who have visited hospital in the same city. 3 P.T.O.

(c)

[3718]-2

Q.5) (A)

(B) (B)

(iii) List name of hospital to which Dr. Shirsat has visited on 08/01/2010. (iv) List all doctors who visited Padghan Hospital. (v) List name of Hospital in Shrirampur. (b) Consider the following relationships : Player (pno, name, city) Game (gno, name, place) Player_Game (pno, gno, date) Solve queries in Relational Algebra : (i) Find list of players playing Cricket. (ii) Find list of games played by more than 10 players. (iii) Find list of players and games played on March 4, 2010. (iv) List all available games in India. (v) List players playing cricket and football. Shramik Vidhyapit offers 10 courses on Information Technology. Each course is conducted in several batches, where the maximum batch size is of 50 students. For every batch separate instructor is appointed. When for a particular course minimum 25 students get admitted, then the timetable is prepared and separate classrooms and also instructors availability, daily one hour is allocated to each batch. As numbers of students is growing, it is difficult to the management to schedule the course. Suggest a suitable information system to handle the above problem : (i) Draw Entity-Relation Diagram for the Information System Design. (ii) Convert Entity-Relationship Diagram into Relational Database in 3NF. [07] Explain Degree of Relationship Type. [03] OR Write difference between Single Attribute and Multivalued Attribute. [03]

[3718]-2/4

Total No. of Questions : 5]

[Total No. of Printed Pages : 4

[3718]-5
F. Y. B. Sc. (Computer Science) Examination - 2010
ELECTRONICS
PAPER - I ELECTRONIC DEVICES, CIRCUITS AND COMPUTER PERIPHERALS (New 2008 Pattern)

Time : 3 Hours] Instructions : (1) All questions are compulsory.

[Max. Marks : 80

(2) Use of non-programmable electronic calculator is allowed. (3) Draw neat diagram wherever necessary.

Q.1) Attempt the following : (a) (b)

[8x2=16]

Draw Symbols of Ideal Current Source and Ideal Voltage Source. Define the given terms w.r.t. P-N Junction Diode : Knee Voltage, Peak Inverse Voltage (PIV)

(c) (d) (e) (f) (g) (h)

State any two advantages of FET over BJT. Draw output characteristics of C.E. Configuration. State types of amplifier based on Q Point Position. Find frequency of oscillation for phase shift oscillator if R = 10k and C = 0.01 F. Draw block diagram of Linear Regulated Power Supply. State any four components of Motherboard.

[3718]-5

P.T.O.

Q.2) Attempt any four of the following : (a) (b) (c) Explain working principle of Zener Diode. Explain FET as Voltage Variable Resistor (VVR). Define the following terms w.r.t. Op-Amp : (i) (ii) CMRR PSRR

[4x4=16]

(iii) Slewrate (iv) Input Bias Current (d) (e) (f) Draw and explain block diagram of SMPS. Give various steps involved in image formation in LASER Printer. State any two advantages of LASER Printer. Explain Transistor as an Amplifier. [4x4=16]

Q.3) Attempt any four of the following : (a)

Find current flowing through Resistor R3 in the following circuit using Kirchoffs Laws :
R1 4k V1 20V R3 6k R2 4k V2 24V

(b) (c) (d) (e) (f) [3718]-5

Draw circuit diagram of Inverting Operational Amplifier and derive Relation for its Output Voltage. Explain working principle of Photodiode. Explain need of UPS. Draw block diagram of Online UPS. Explain concept of reading data from a C.D. ROM. Draw circuit diagram of Hartley Oscillator. Explain its working and write an expression for its frequency of oscillation. 2 Contd.

Q.4) Attempt any two of the following : (a) Explain working principles of : (i) (ii) (b) (c) Scanner Light Pen

[2x8=16]

With neat diagram and waveforms, explain working of Full Wave Rectifier. Compare Half Wave and Full Wave Rectifier. (i) (ii)
0.6V 2k 0.4V

Draw circuit diagram of Op-Amp Subtracter and derive expression for its Output Voltage.
2k 4k I + 3.3k A II + 10k

Identify Op-Amp configurations in the above circuit. Write expression for output of each circuit and find voltages at points A and B. (d) (i) (ii) Define and of transistor. Derive equation of in terms of . Draw D.C. Load Line for the following circuit :
+vcc = 10V 10k R1 Rc 6k =200 2k R2 RE 2k

[3718]-5

P.T.O.

Q.5) Attempt any one of the following : (a) (i)

[1x16=16]

Find Thevenins and Nortons Equivalent Circuit for the following circuit :
2k R1 V 20V 2k R3 2k R2 RL = 1k A

(ii)

Explain working principle of n-channel enhancement only MOSFET. Define the following terms : (1) (2) (3) (4) D.C. Drain Resistance A.C. Drain Resistance Transconductance Amplification Factor Draw circuit diagram of Op-Amp differentiator. Derive an expression for its Output Voltage. Explain need of Multistage Amplifier. A cascaded amplifier has voltage gains A1 = 10, A2 = 20, A3 = 40. What is the overall voltage gain in decibel ?

(b)

(i)

(1) (2)

(ii)

Explain working principle of CRT and LCD Display.

[3718]-5/4

Total No. of Questions : 5]

[Total No. of Printed Pages : 3

[3718]-51
F. Y. B. Sc. (Computer Science) Examination - 2010
COMPUTER SCIENCE
PAPER - I INTRODUCTION TO COMPUTERS, DATA PROCESSING AND NETWORKING (Old 2004 Pattern)

Time : 3 Hours] Instructions : (1) All questions are compulsory.

[Max. Marks : 80

(2) Figures to the right indicate full marks. (3) Neat diagrams must be drawn wherever necessary.

Q.1) Answer the following : (Any Ten) (1) (2) (3) (4) (5) (6) (7) (8) (9) What is meant by Batch Files ? Explain function of Control Panel. What do you mean by Plotters ? Explain difference between ASCII and EBCDIC.

[1x10=10]

What is meant by Wild Card Characters ? Explain with proper example. Define Network Topology. Explain Applications of HTML. Define Domain Name System. Explain requirements for sending an e-mail.

(10) Explain any two accessories of MS-Windows. (11) What are the types of Mouse ? (12) What is the role of Touch Screen ?

[3718]-51

P.T.O.

Q.2) Attempt any four : (a) (b) (c) (d) (e) State difference between DOS and Linux. Explain CD-ROM in detail. What are the Application Areas of Computers ? Explain how to ensure LAN Security ?

[5x4=20]

Explain various Components of Application Windows in MS-Windows. [5x4=20]

Q.3) Attempt any four : (a) (b) (c) (d) (e) What are the features of MS-EXCEL ? Explain any five External DOS Commands in detail.

What is meant by Vi Editor ? Explain three modes of Vi Editor. Define CGI. State features of PERL. Write purpose and syntax of the following commands with example : (i) (ii) tail WHOAMI

(iii) more (iv) ATTACH (v) echo [5x4=20]

Q.4) Attempt any four : (a) (b) (c) (d) (e) Explain in detail for grep and wc command in Linux.

Explain attributes of <IMG> tag by giving proper examples. What is meant by Scanning Devices ? Explain any two Scanners in detail. Explain purpose and syntax of decision-making statements in shell by giving proper example. What is the role of Printer ? Explain any two types of Printers in detail. 2 Contd.

[3718]-51

Q.5) Attempt any two : (a)

[5x2=10]

Write HTML code which will generate the following output : Indian Games 1. Cricket 2. Kabaddi 3. Kho-kho 4. Hockey Indian Cities

Delhi Mumbai Chennai

(b) (c)

Write a shell program to calculate sum of digits of numbers. A file, employee.lst, contains emp_no, emp_name, designation, basic. Calculate total of hra, da and basic pay of all supervisors in the file employee.lst (Basic is the 4th field). Consider rules for hra = 15% of basic and da = 50% of basic. Write an awk code for above.

[3718]-51/3

Total No. of Questions : 5]

[Total No. of Printed Pages : 4

[3718]-52
F. Y. B. Sc. (Computer Science) Examination - 2010
COMPUTER SCIENCE
PAPER - II INTRODUCTION TO PROGRAMMING AND PROGRAMMING IN C (Old 2004 Pattern)

Time : 3 Hours] Instructions :

[Max. Marks : 80

(1) All questions are compulsory. (2) Figures to the right indicate full marks. (3) Neat diagrams must be drawn wherever necessary.

Q.1) Answer the following : (Any Ten) (1) (2) (3) (4) (5)

[1x10=10]

What is the difference between Machine and Assembly Languages ? What do you mean by Keywords ? List any two Keywords. Give purpose and syntax of Enumeration Constant. What is the difference between getch( ) and getche( ) functions ? What will be the value of b and c variables for execution of the following code : int a = 5; b = ++a; c = a ; What is the role of break and continue statements in C Language ? State difference between Actual and Formal Parameters. Explain purpose and syntax of malloc( ) function.

(6) (7) (8)

(9) What is the use of tolower( ) and toupper( ) functions ? (10) Explain how memory utilization happens in Union ? (11) Explain any two functions available in math.h file. (12) Give Syntax and example for drawing a Line. [3718]-52 1 P.T.O.

Q.2) Answer the following : (Any Four) (a) (b) (c) (d) (e)

[5x4=20]

What is meant by Pointer ? Explain Arithmetic Operations with Pointer Variables. What is the difference between if-else and switch statements ? Explain their use in detail. Define Recursion. Write a recursive function for finding factorial of a given number. What is the Scope of Variables ? Explain any two storage classes in detail. Explain in detail structure within structure by giving proper example. [5x4=20]

Q.3) Answer the following : (Any Four) (a) (b)

Write an algorithm and draw a flowchart to print sum of digits of a given number. (Ex. 579 21) Find and justify output of the following program : #include <stdio.h> main( ) { int lno, count, a = 1, n = 4; for (lno = 1; lno < = n; lno++) { for (count = 1; count < = lno; count++) { printf(%d \ t, a); a++; } printf(\n); } }

[3718]-52

Contd.

(c)

(d)

(e)

Complete program by writting proper function definitions : #include <stdio.h> main( ) { int n, s, c; printf(Enter a number :); scanf(%d, & n); s = sqr(n); c = cube(n); printf(\n square of number is %d, s); printf(\n cube of number is %d, c); } Find output of each code by using the given values : a = 1101 b = 0111 printf(\n %d, a & b); printf(\n %d, a|b); printf(\n %d, a b); printf(\n %d, a<<3); printf(\n %d, ~ a); Find and justify output of the following program : #include <stdio.h> #include <string.h> main( ) { char s1[40] = Hello !; char s2[ ] = How are you ?; int a, i; strcat (s1, s2); a = strlen(s1) i = 0, while (i < a) { printf(%c, s1[i]); i++; } } 3 P.T.O.

[3718]-52

Total No. of Questions : 5]

[Total No. of Printed Pages : 3

[3718]-57
F. Y. B. Sc. (Computer Science) Examination - 2010
ELECTRONICS
PAPER - II DIGITAL ELECTRONICS (Old 2004 Pattern)

Time : 3 Hours] Instructions : (1) All questions are compulsory.

[Max. Marks : 80

(2) Use of non-programmable calculator is allowed. (3) Draw neat diagrams wherever necessary.

Q.1) Attempt all of the following : (a) Draw logic symbols for : (i) (ii) (b) AND Gate NOR Gate

[8x2=16]

Convert given decimal number into binary number : (47)10

(c) (d) (e)

Give statements of De-Morgans Theorem. Define Encoding. Define : (i) (ii) Accuracy Resolution

[3718]-57

P.T.O.

(f) (g)

List different types of Shift Register. Identify the following ICs : (i) IC 74158 (ii) IC 74138 Define Monostable Multivibrator.

(h)

Q.2) Attempt any four of the following : [4x4=16] (a) Perform the following subtraction using 2s Complement Method : (29)10 (34)10 (b) Simplify the following expression using Boolean Algebra : y = A + B

i dC + D i

(c) (d) (e) (f)

What is Decoding ? With logic diagram explain working of 3 to 8 decoder. Draw circuit diagram of Crystal Oscillator using Inverters and explain its working. Explain working of a 3-bit Ripple Counter with timing diagram. Find output voltage from 4-bit R-2R ladder type DAC for a digital input 1010. Assume that 0 = 0 volts and 1 = +10 volts. [4x4=16]

Q.3) Attempt any four of the following : (a)

(b) (c)

What do you mean by Memory Refreshing ? For which type of memory it is required ? Differentiate between SRAM and DRAM. Construct all basic gates using NAND Gate. Convert the following into gray code : (i) (ii) (31)8 (31)10

(d) (e) (f) [3718]-57

Explain weighted and non-weighted codes with suitable examples. Explain working of Binary Weighted Register type of Digital to Analog Converter. With logic diagram, explain SR Flip-Flop. 2 Contd.

Q.4) Attempt any two of the following : (a) (b) (c)

[2x8=16]

A receiver received Hamming Code 1011011 with even parity. Find error in the received code and give corrected code. Explain working of 3 bit flash type ADC. Why is it useful in high speed operations ? What is Karnaugh Map ? Give layout of four variable K-map. Simplify the following Boolean Equation using K-map. Y = A BCD + AB CD + ABC D + ABCD + ABC D + A BC D + A B CD + A B C D

(d)

What do you mean by Multiplexer Tree ? How will you construct 32 : 1 multiplexer using 16 : 1 multiplexer ? [1x16=16]

Q.5) Attempt any one of the following : (a) (i) (ii) (b) (i) (ii)

Draw internal block diagram of IC 555. Explain how it works as an Astable Multivibrator. With the help of suitable diagram, explain working of 4-bit Universal Adder/Subtractor. What are the different types of ROM ? Explain working of Diode Matrix ROM. Explain working of JK Flip-Flop with logic diagram and truth table. What is Race-around Condition ? How it can be avoided ?

[3718]-57/3

Total No. of Questions : 5]

[Total No. of Printed Pages : 3

[3718]-6
F. Y. B. Sc. (Computer Science) Examination - 2010
ELECTRONICS
PAPER - II FUNDAMENTALS OF DIGITAL ELECTRONICS (New 2008 Pattern)

Time : 3 Hours] Instructions : (1) All questions are compulsory.

[Max. Marks : 80

(2) Use of non-programmable calculator is allowed. (3) Draw neat diagrams wherever necessary. Q.1) Attempt the following : (a) (b) (c) (d) (e) (f) (g) [2x8=16]

What are the types of Parity ? What is the purpose of adding parity bit to data bits ? Draw symbol and write truth table of Universal Gates. Draw logic circuit of Half Subtracter. Give one example each of Combinational Circuit and Sequential Circuit. Draw circuit for generating Clock using Crystal. Write full form of EPROM and EEPROM. Define the terms : Monotonicity of DAC and Quantization Error of ADC.

(h)

What is the function of Assembler ?

[3718]-6

P.T.O.

Q.2) Attempt any four of the following : (a) Convert binary number 1111 1111 to : (i) (ii) Decimal Hexadecimal

[4x4=16]

(iii) Octal (iv) Gray (b) (c) (d) (e) Write a short note on Server and Super Computer. With logic diagram, explain working of Parallel Adder. Draw logic symbols for level triggered and edge triggered SR Flip Flops. Classify memory based on : (i) (ii) Physical Characteristics Fabrication Technology

(iii) Mode of Access (iv) Principle of Read/Write Operation (f) Draw circuit diagram of 4 bit R-2R DAC. Find Full Scale Output Voltage if Vref = 10V. [4x4=16]

Q.3) Attempt any four of the following : (a) (b) (c) Write in brief about PIC and ARM Micro-controllers.

With circuit diagram, explain Operation of Diode Matrix ROM. Draw circuit diagram of Monostable Multivibrator using IC 555. Find pulse width generated if R = 10k and C = 0.1F. Draw circuit diagram of TTL NAND Gate. What is meant by the terms - Fan Out and Propagation Delay ? With logic diagram, explain working of 4 bit Ring Counter. Draw logic diagram and write truth table of 1 of 10 Decoder.

(d) (e) (f)

[3718]-6

Contd.

Q.4) Attempt any two of the following : (a) (b) Draw and explain working of Dual Shope ADC.

[2x8=16]

Express (+15)10 as 8 bit binary and (15)10 as 8 bit binary. Find 1s Complement and 2s Complement of (10)10. Perform subtraction of binary numbers 1011 1001 using 2s Complement Method.

(c)

Differentiate between : (i) (ii) RISC and CISC PC System and Embedded System

(d)

Design sequence generator using flip-flop for the following random sequence : 0 1 3 2 0

Q.5) Attempt any one of the following : (a) (i) Draw and explain operation of 8 : 1 Multiplexer.

[1x16=16]

How will you implement function y = m (0, 2, 5, 7) with this multiplexer ? (ii) (b) (i) Draw internal block diagram of IC 555. Explain function of each block. What is the difference between Synchronous and Asynchronous Counter ? Draw logic diagram of 3 bit asynchronous up counter. Also write its truth table. If a clock with frequency 10 kHz is applied at its input, what will be the frequency at the output of the counter ? Design a circuit to build a memory of capacity 2k 8 using 1k 8 memory chips. Find its memory address map.

(ii)

3/6-]8173[

Total No. of Questions : 5]

[Total No. of Printed Pages : 7

[3718]-7
F. Y. B. Sc. (Computer Science) Examination - 2010
STATISTICS
PAPER - I STATISTICAL METHODS - I (New 2008 Pattern)

Time : 3 Hours] Instructions : (1) All questions are compulsory.

[Max. Marks : 80

(2) Figures to the right indicate full marks. (3) Use of single memory, non-programmable, scientific calculators and statistical tables is allowed. (4) Symbols have their usual meanings unless otherwise stated.

Q.1) Attempt each of the following : (a)

[8x2=16]

Calculate Mode and Arithmetic Mean of the following data on number of times a batsmen got out on zero in a year for 12 batsmen : 4, 4, 12, 8, 9, 6, 12, 3, 6, 12, 15, 12.

(b)

Explain the following terms : (i) (ii) Class Width Open End Class

(c)

[3718]-7

Coefficients of Variation of two groups of observations are 40% and 50% respectively and their Standard Deviations are 16 and 20. Find their Arithmetic Means. 1 P.T.O.

(d) (e) (f)

If 1 = 0.5 and 2 = 2, find values of 1 and 3. Define Positive Correlation and Negative Correlation with an illustration each for a Bivariate Data. State Expressions for Regression Coefficients in a Bivariate Data. Also, state relationship between Karl Pearsons Coefficient of Correlation and Regression Coefficients. Calculate value of r 12.3 when r 12 = 0.28, r 13 = 0.5, r23 = 0.49. State four components of Time Series. [4x4=16]

(g) (h)

Q.2) Attempt any four of the following : (a) (b)

Explain Concept of Central Tendency of a Data Set. Discuss median as a measure of Central Tendency. For the following frequency distribution, find median and 8th decile : Wages in Rs. per hour Less than 35 35 37 37 39 39 41 41 43 Over 43 No. of Wage Earners 14 62 99 18 7 8

(c) (d)

State any four requisites of a good measure of Central Tendency. What is Trimmed Mean ? Discuss its utility. Calculate 20% trimmed mean for a set of ten values : 15, 25, 20, 10, 12, 22, 21, 16, 14, 10.

[3718]-7

Contd.

(e) (f)

Write a note on Boxplot. The following is the distribution of sales in thousand Rs. of shops on a street in a city : Sales in thousand Rs. No. of Shops 0-10 14 10-20 20-30 27 30-40 40 and above 15

If the mode and median of sales are Rs. 24,000 and Rs. 25,000 respectively, find missing frequencies. Q.3) Attempt any four of the following : (a) (b) [4x4=16]

What are Relative Measures of Dispersion ? Explain how are they superior to the Absolute Measures of Dispersion ? Given that Arithmetic Mean = 160, Mode = 157, Standard Deviation = 50. Find : (i) (ii) (iii) (iv) Karl Pearsons Coefficient of Skewness Median Coefficient of Variation Comment upon type of Skewness

(c)

Define rth order raw and central moments for grouped data. How are central moments useful in calculation of measure of Skewness and Kurtosis ? Particulars regarding the income of two localities are given below : Locality X No. of Persons Mean Income Variance of Income 600 175 100 3 Locality Y 500 186 80 P.T.O.

(d)

[3718]-7

(i) (ii) (e)

In which locality is the variation in income more ? Justify your answer. Find combined standard deviation of the locality X and locality Y put together.

Define Skewness. Draw different sketches to indicate different types of Skewness. Which measure of skewness is suitable for frequency distribution with Open End Class. The Standard Deviation of a distribution is 2. What should be the value of 4th Central Moment in order that the distribution is : (i) (ii) mesokurtic platykurtic [2x8=16]

(f)

Q.4) Attempt any two of the following : (a) (i)

What is Scatter Diagram ? Discuss how it is useful in deciding correlation between two variables in a bivariate data. Compute coefficient of correlation between X and Y for the following data. Interpret your result. X Y 10 21 13 27 16 33 19 39 22 45

(ii)

(b)

(i) (ii)

Write stepwise procedure to obtain equation of line of regression of X on Y for a bivariate data. In regression analysis the equations of two lines of regression are 8X 10Y + 66 = 0 and 40X 18Y = 214. Find means of X and Y. Also find coefficient of correlation between X and Y.

[3718]-7

Contd.

(c)

(i) (ii)

Discuss Spearmans Rank Correlation for cases with ties and without ties. Calculate Rank Correlation Coefficient between X and Y, for the following data. Also interpret the result. Marks in 90 30 82 45 32 65 40 88 73 66 Maths Marks in Physics 85 42 75 68 45 63 60 90 62 58

(d)

Consider the following data : X 4 5 6 7 8 Y 8 12.5 18 24.5 32

Fit a curve of the type Y = aXb using least square principle. Also estimate Y when X = 9. [3718]-7 5 P.T.O.

Q.5) Attempt any two of the following : (a) (i)

[2x8=16]

What is Time Series ? Explain how Time Series Analysis can be considered as a special case of Bivariate Regression Analysis ? Compute R1.23 and r13.2 for the following data : r12 = 0.7, r13 = 0.5, r23 = 0.5.

(ii)

(b)

(i) (ii)

Describe procedure to estimate seasonal variations in a time series using ratio to trend method. Estimate trend values using method of five yearly moving average for the following data : 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999

Year No. of Students (c)

33

31

35

39

40

42

41

43

45

49

A pharmaceutical company employs quality control technique to control concentration of a certain ingredient in their product. Ten samples each of size 3 were taken, which are summerised below : Sample No.
X

10

10.2 10.5 10.4 10.3 9.75 10.2 10.2 10.4 10.3 9.75 0.45 0.69 0.53 0.15 0.55 0.24 0.11 0.71 0.9 0.55

Can you say that the process is under statistical quality control using X and R chart ? (For n = 3, A2 = 1.023, D3 = 0, D4 = 2.575)

[3718]-7

Contd.

(d)

(i)

Describe procedure to locate mode for a grouped frequency distribution using a suitable graph. Let X1, X2 and X3 be the heights in centimeter of son, his mother and his father measured from their respective means. Find least square equation of plane of regression of X1 on X2 and X3 using the following results : 1 = 2.4, 2 = 2.7, 3 = 2.7, r12 = 0.28, r13 = 0.49, r23 = 0.51

(ii)

7/7-]8173[

You might also like