Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

B.Tech Supplementary Examinations - Computer Programming for Biotechnologists, Exams of Biotechnology

The question paper for the b.tech supplementary examinations in computer programming for biotechnologists. Five sets of questions, each set containing eight questions related to various topics in c programming such as cpu components, data types, arrays, structures, and operating systems. Students are required to answer any five questions from each set. The document also includes the maximum marks for each set and the duration of the exam.

Typology: Exams

2010/2011

Uploaded on 08/25/2011

jamialove
jamialove ๐Ÿ‡ฎ๐Ÿ‡ณ

4.6

(14)

30 documents

1 / 4

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Code No: R05012301 Set No. 1
I B.Tech Semester Supplimentary Examinations, June 2009
COMPUTER PROGRAMMING FOR BIOTECHNOLOGISTS
(Bio-Technology)
Time: 3 hours Max Marks: 80
Answer any FIVE Questions
All Questions carry equal marks
โ‹†โ‹†โ‹†โ‹†โ‹†
1. (a) Name the three major components of the CPU and briefly explain the respon-
sibilities of each.
(b) What are registers? Name the commonly used registers and briefly describe
the function of each. [8+8]
2. Give a neat sketch showing major components of Unix OS and explain functions
of each of them. [16]
3. (a) Name and describe the any four basic data types in C.
(b) Name and describe the four data type qualifiers. To which data types can
each qualifier be applied?
(c) What are constants? Explain any four basic types of constants. [6+4+6]
4. The annual examination is conducted for 50 students for three subjects. Write a
program to read the data and determine the following:
(a) Total marks obtained by each student.
(b) The highest marks in each subject and the Roll No. of the student who secured
it.
(c) The student who obtained the highest total marks. [8+8]
5. Write a C program that uses a function to sort an array of integers. [16]
6. (a) What is structure within structure? Give an example for it.
(b) Write a C program to illustrate the concept of structure within structure.
[6+10]
7. Write a recursive function that accepts a prefix expression consisting of binary
operators and single-digit integer operands and returns the value of expression.[16]
8. Write a SBML program to find the patterns in protein sequences. [16]
โ‹†โ‹†โ‹†โ‹†โ‹†
1 of 1
pf3
pf4

Partial preview of the text

Download B.Tech Supplementary Examinations - Computer Programming for Biotechnologists and more Exams Biotechnology in PDF only on Docsity!

I B.Tech Semester Supplimentary Examinations, June 2009 COMPUTER PROGRAMMING FOR BIOTECHNOLOGISTS (Bio-Technology) Time: 3 hours Max Marks: 80 Answer any FIVE Questions All Questions carry equal marks โ‹† โ‹† โ‹† โ‹† โ‹†

  1. (a) Name the three major components of the CPU and briefly explain the respon- sibilities of each. (b) What are registers? Name the commonly used registers and briefly describe the function of each. [8+8]
  2. Give a neat sketch showing major components of Unix OS and explain functions of each of them. [16]
  3. (a) Name and describe the any four basic data types in C. (b) Name and describe the four data type qualifiers. To which data types can each qualifier be applied? (c) What are constants? Explain any four basic types of constants. [6+4+6]
  4. The annual examination is conducted for 50 students for three subjects. Write a program to read the data and determine the following:

(a) Total marks obtained by each student. (b) The highest marks in each subject and the Roll No. of the student who secured it. (c) The student who obtained the highest total marks. [8+8]

  1. Write a C program that uses a function to sort an array of integers. [16]
  2. (a) What is structure within structure? Give an example for it. (b) Write a C program to illustrate the concept of structure within structure. [6+10]
  3. Write a recursive function that accepts a prefix expression consisting of binary operators and single-digit integer operands and returns the value of expression.[16]
  4. Write a SBML program to find the patterns in protein sequences. [16]

I B.Tech Semester Supplimentary Examinations, June 2009 COMPUTER PROGRAMMING FOR BIOTECHNOLOGISTS (Bio-Technology) Time: 3 hours Max Marks: 80 Answer any FIVE Questions All Questions carry equal marks โ‹† โ‹† โ‹† โ‹† โ‹†

  1. Discuss the functions of Joystick, track ball, touch screen. [16]
  2. Give a neat sketch showing major components of Unix OS and explain functions of each of them. [16]
  3. (a) What are the general characteristics of C? (b) Give and Explain the structure of a C program? (c) Write a C program to print the Pascalโ€™s triangle. [4+4+8]
  4. (a) How are initial values written in a one-dimensional array definition? Is the entire array be initialized? What value is automatically assigned to those array elements not explicitly initialized? (b) Write a program to calculate mean, variance and standard deviation of n numbers. S=

variance, where Variance = 1/n sum (xi โˆ’ m)^2 m= mean of n numbers. [4+6+6]

  1. Write a C program that uses a function to sort an array of integers. [16]
  2. (a) Distinguish between structure and constructs in C. (b) Write a program using structure to read and write employee details of an organization. The field of the structure are Field Name Data Type name string designation string salary float dept string

[4+12]

  1. Write a program to convert a postfix expression to a fully parenthesized infix ex- pression. For example, AB+ would be transformed in to (A+B) and AB+C- would be transformed into ((A+B)-C). [16]
  2. Write a SBML program to display protein structure. [16]

I B.Tech Semester Supplimentary Examinations, June 2009 COMPUTER PROGRAMMING FOR BIOTECHNOLOGISTS (Bio-Technology) Time: 3 hours Max Marks: 80 Answer any FIVE Questions All Questions carry equal marks โ‹† โ‹† โ‹† โ‹† โ‹†

  1. Give a broad classification scheme of computers. Explain each type in brief. [16]
  2. (a) Compare and contrast the differences between multiprogramming and multi- tasking. (b) Describe the functional capabilities of an operating system with respect to file management. [8+8]
  3. (a) What are the general characteristics of C? (b) Give and Explain the structure of a C program? (c) Write a C program to print the Pascalโ€™s triangle. [4+4+8]
  4. (a) In what way array is different from an ordinary variable? (b) What conditions must be satisfied by the entire elements of any given array? (c) What are subscripts? How are they written? What restrictions apply to the values that can be assigned to subscripts? (d) What advantage is there in defining an array size in terms of a symbolic constant rather than a fixed integer quantity? (e) Write a program to find the largest element in an array. [2+2+4+4+4]
  5. Explain in detail about pass by values and pass by reference. Explain with a sample program. [16]
  6. (a) What is a structure? How is it declared? How it is initialized? (b) Define a structure to represent a data. Use your structures that accept two different dates in the format mmdd of the same year. And do the following: Write a C program to display the month names of both dates. [6+10]
  7. Write a recursive function that accepts a prefix expression consisting of binary operators and single-digit integer operands and returns the value of expression.[16]
  8. Write a biojava program to find ORF. [16]