Monday, December 27, 2010
I'm Back!
I have decided to keep maintaining this blog.
I will post things that are useful for computer science and engineering students.
Cheers!
Advance Happy New Year!!!!!!!!!!!!!!!!!!!!!!!
Wednesday, April 7, 2010
English Lab Internal For First Batch (1-30)
Wednesday, February 17, 2010
MM - 200 Online Bits from PRSolutions
No download is needed to view!
Monday, February 15, 2010
M1 - 200 Online Bits from PRSolutions
No download is needed to view!
Friday, February 12, 2010
English - 200 Online Bits from PRSolutions
English - The Gold Frame - Essay
The Gold Frame
R.K. Lakshman is one of the renowned cartoonists of
One day a customer comes to his shop with a sepia-brown photograph of an old man and requests Datta to get it framed elegantly, Datta, with his habitual indifference ignored him and the photograph and engaged in his routine work. The customer reiterated his demand and different types of frames and the customer was baffled by the variety. Then Datta helped him by suggesting that a cut mount looked more elegant. The customer with a great devotion towards the old man describes him as God in his home. Expressing that he would not care for the money where the great soul is concerned, the customer was convinced for a cut mount with oval shape frame having a profusion of gold leaves and winding carpers. The customer placed an order and left. When Datta looked at the photograph it was just another elderly man of those days. It was a standard portrait of a grand father, a philanthropist; or a social worker. RK. Lakshman vividly describes the attitude of an average man and how he respects the elders by fixing them into framed photographs.
With a boxful of unclaimed photo frames Datta developed the philosophical attitude and never cared the complete the ordered work unless the customer turned up at least once. One fine day the fervent customer enquired about the photo’s framing and then Datta decided to be serious in completing the work completing the work. Immediately next day he made it his first job keeping aside all the others. He looked for the pencil stub and as usual it was missing. Vexed with his search he stood up and shook the folds of his dhoti so violently that he upset the white enamel paint tin. Its thick content mistakenly got spilled on the sacred photograph of the old man.
Datta stood motionless and shocked. He lost all faculty seeing the disaster before him. He started sweating profusely. His spectacles clouded with sweat and helpfully screened his Vision. This made him slowly recover his senses. He set about rescuing the picture in such desperate hurry that he made a worst mess of it. He rubbed the picture so hard with a rag that he peeled off half the old man’s face in the photograph. Nearly all his turban was gone.
Datta looked helplessly at the venerable elder whom he mutilated beyond recovery. He sat with both hands clutching his head. The customer had a fanatic devotion to the photograph and Datta’s Imagination went wild. It suggested nightmarish consequence to his dear self and to the fragile Inflammable shop. Exhausted, he accepted the situation with resignation. Mean while Looking at the plethora of Gods and their transcendental smile, an idea flashed in Datta’s mind. He searched all the unclaimed photographs. Luckily there was one with which Datta felt he could take a fair risk. The print had yellow tint but he calculated that the total effect when put in a dazzling gold frame would cover it safe.
Next day he perfectly framed the photograph and waited for the customer. He rehearsed his answer many times and the days filled with suspense and anxiety. The customer turned up promptly a couple of days later. With Dramatic exuberance he asked for the frame. Datta finally revealed the glittering frame and held his breath. The customer’s face glittered by its grandeur but soon the benevolent expression vanished. He shouted indignantly and demanded not regarding the photograph of the old man but of the shape off frame which is square instead of oval cut mount.
This Datta never expected, R.K. Lakshman delicately sketched the irony of the situation and the reader is left with great fun.
Friday, January 29, 2010
2nd Mid Timetable Released
English - 15th February 2010 Monday
Mathematics 1 - 16th February 2010 Tuesday
C and Data Structures - 17th February 2010 Wednessday
Mathematical Methods - 18th February 2010 Thursday
Electronic Devices and Circuits - 19th February 2010 Friday
Basic Electrical Engineering - 20th February 2010 Saturday
Applied Physics - 22nd February 2010 Monday
Prepare Well!
Tuesday, January 26, 2010
Friday, January 22, 2010
Person | Pronoun | Number | Verb Forms | Have Forms | Futurity | Borrowing Anomalous Pair | Objective Form | Possessive Pronouns | Reflexive Pronouns | ||||
Present | Past | Present | Past | Present | Past | Present | Past | ||||||
I | I | Singular | Am | Was | Have | Had | Shall | Should | Do | Did | Me | My | Myself |
We | Plural | Are | Were | Have | Had | Shall | Should | Do | Did | Us | Our | Ourselves | |
II | You | Singular | Are | Were | Have | Had | Will | Would | Do | Did | You | Your | Yourself |
You | Plural | Are | Were | Have | Had | Will | Would | Do | Did | You | Yours | Yourselves | |
III | He | Singular | Is | Was | Has | Had | Will | Would | Does | Did | Him | His | Himself |
She | Her | Her | Herself | ||||||||||
It | It | Its | Itself | ||||||||||
They | Plural | Are | Were | Have | Had | Will | Would | Do | Did | Them | Their | Themselves |
Wednesday, January 20, 2010
Tuesday, January 19, 2010
Syllabus for the CP Lab Record
Week l.
a) Write a C program to find the sum of individual digits of a positive integer.
b) A Fibonacci Sequence is defined as follows: the first and second terms in the sequence are 0 and 1.
Subsequent terms are found by adding the preceding two terms in the sequence. Write a C program to
generate the first n terms of the sequence.
c) Write a C program to generate all the prime numbers between 1 and n, where n is a value supplied by
the user.
Week 2.
a) Write a C program to calculate the following Sum:
Sum=1-x2/2! +x4/4!-x6/6!+x8/8!-x10/10!
b) Write a C program toe find the roots of a quadratic equation.
Week 3
a) Write C programs that use both recursive and non-recursive functions
i) To find the factorial of a given integer.
ii) To find the GCD (greatest common divisor) of two given integers.
iii) To solve Towers of Hanoi problem.
Week 4
a) The total distance travelled by vehicle in ‘t’ seconds is given by distance = ut+1/2at2 where ‘u’ and ‘a’
are the initial velocity (m/sec.) and acceleration (m/sec2). Write C program to find the distance travelled at
regular intervals of time given the values of ‘u’ and ‘a’. The program should provide the flexibility to the
user to select his own time intervals and repeat the calculations for different values of ‘u’ and ‘a’.
b) Write a C program, which takes two integer operands and one operator form the user, performs the
operation and then prints the result. (Consider the operators +,-,*, /, % and use Switch Statement)
Week 5
a) Write a C program to find both the larges and smallest number in a list of integers.
b) Write a C program that uses functions to perform the following:
i) Addition of Two Matrices
ii) Multiplication of Two Matrices
Week 6
a) Write a C program that uses functions to perform the following operations:
i) To insert a sub-string in to given main string from a given position.
ii) To delete n Characters from a given position in a given string.
b) Write a C program to determine if the given string is a palindrome or not
Week 7
a) Write a C program that displays the position or index in the string S where the string T begins, or – 1 if
S doesn’t contain T.
b) Write a C program to count the lines, words and characters in a given text.
Week 8
a) Write a C program to generate Pascal’s triangle.
b) Write a C program to construct a pyramid of numbers.
2007-2008 Page 19 of 95
Week 9
Write a C program to read in two numbers, x and n, and then compute the sum of this geometric
progression:
1+x+x2+x3+………….+xn
For example: if n is 3 and x is 5, then the program computes 1+5+25+125.
Print x, n, the sum
Perform error checking. For example, the formula does not make sense for negative exponents – if n is
less than 0. Have your program print an error message if n<0, then go back and read in the next pair of
numbers of without computing the sum. Are any values of x also illegal ? If so, test for them too.
Week 10
a) 2’s complement of a number is obtained by scanning it from right to left and complementing all the bits
after the first appearance of a 1. Thus 2’s complement of 11100 is 00100. Write a C program to find the
2’s complement of a binary number.
b) Write a C program to convert a Roman numeral to its decimal equivalent.
Week 11
Write a C program that uses functions to perform the following operations:
i) Reading a complex number
ii) Writing a complex number
iii) Addition of two complex numbers
iv) Multiplication of two complex numbers
(Note: represent complex number using a structure.)
Week 12
a) Write a C program which copies one file to another.
b) Write a C program to reverse the first n characters in a file.
(Note: The file name and n are specified on the command line.)
Week 13
Write a C program that uses functions to perform the following operations on singly linked list.:
i) Creation ii) Insertion iii) Deletion iv) Traversal
Week 14
Write a C program that uses functions to perform the following operations on doubly linked list.:
i) Creation ii) Insertion iii) Deletion iv) Traversal in both ways
Week 15
Write C programs that implement stack (its operations) using
i) Arrays ii) Pointers
Week 16
Write C programs that implement Queue (its operations) using
i) Arrays ii) Pointers
Week 17
Write a C program that uses Stack operations to perform the following:
i) Converting infix expression into postfix expression
ii) Evaluating the postfix expression
Week 18
Write a C program that uses functions to perform the following:
i) Creating a Binary Tree of integers
ii) Traversing the above binary tree in preorder, inorder and postorder.
Week 19
Write C programs that use both recursive and non recursive functions to perform the following searching
operations for a Key value in a given list of integers :
i) Linear search ii) Binary search
Week 20
Write C programs that implement the following sorting methods to sort a given list of integers in ascending
order:
i) Bubble sort ii) Quick sort
2007-2008 Page 20 of 95
Week 21
Write C programs that implement the following sorting methods to sort a given list of integers in ascending
order:
i) Insertion sort ii) Merge sort
Week 22
Write C programs to implement the Lagrange interpolation and Newton- Gregory forward interpolation.
Week 23
Write C programs to implement the linear regression and polynomial regression algorithms.
Week 24
Write C programs to implement Trapezoidal and Simpson methods.
Saturday, January 16, 2010
Samsung Omnia Pro B7320
http://ezinearticles.com/?The-Unbelievable-Features-of-Samsung-B7320-Omnia-Pro&id=3128717/a>
http://www.cellphone-reviews.co.uk/2009/06/samsung-omnia-pro-b7320-review.html
http://wccftech.com/2009/11/08/samsung-omnia-pro-b7320-review/
Friday, January 15, 2010
Watch the Solar Eclipse of Jan 2010
Tuesday, January 12, 2010
Sign Up for VITBCSE09 SMS Updates
Sign up for VITBCSE09's SMS updates at the above link.
Monday, January 11, 2010
Pongal Holidays from 12 through 17;College on Monday 18
Anyway Enjoy the Holidays! Too much study is not nice either, especially during the holidays.......................... Just make sure that you don't run into incomplete work later on as there won't be much time. Cheers!
Sunday, January 10, 2010
Welcome to this new BLOG!
Happy New Year To All!