My Linux Stuff - Complete Blog For Linux Articles

My Linux Stuff - Complete Blog For Linux Articles

A Website For Complete Linux OS,Step by Step linux Installtion, Linux Tips and Tricks and Linux Stuff and so on... Connect and sharing here....

TOP 50 ENGINEERING COLLEGES IN INDIA 2014

TOP 50 ENGINEERING COLLEGES IN INDIA 2014

This below survey was taken many form many colleges in India. These Top 50 Engineering Colleges in India have Good Infrastructure, Good Environment, Educations , Staff, Placement , Research Activities and other Facilities are good.

Top 10 Government Engineering Colleges in India

Top 10 Government Engineering Colleges in India

These Government Engineering Colleges in India are really good for all kind of stuff like Education , research , Placement and New Innovation Ideas etc... But Getting seat in these colleges are heavy competition in students .....

Top 10 Colleges In India 2014

Top 10 Colleges In India 2014

Indian Institute Of Technology Delhi,Indian Institute Of Technology Bombay,Indian Institute Of Technology Kanpur,Indian Institute Of Technology Madras,Indian Institute Of Technology Kharagpur,Indian Institute Of Technology Roorkee,University Of Delhi,Indian Institute Of Technology Guwahati,University Of Calcutta,University Of Mumbai, National Institute Of Technology,Trichy.

2014 LATEST SURVEY TOP RANKING ENGINEERING COLLEGES IN INDIA

2014 LATEST SURVEY TOP RANKING ENGINEERING COLLEGES IN INDIA

This below survey was taken many form many colleges in India. These Top 100 Engineering Colleges in India have Good Infrastructure, Good Environment, Educations , Staff, Placement , Research Activities and other Facilities are good. If you want to do Engineering as your dream and try out these colleges

Subscribe Now!

Enter your email address:

Monday, May 23, 2011

Baby TRUST

When you throw a baby in the air, she laughs because she knows you will catch her…
THAT’S TRUST


OUR HOPE

Every night we go to bed, without any assurance of being alive the next Morning but still we set the alarms in our watch to wake up…

                                                    THAT’S HOPE


From Gandhi-ism to Software-ism!- Indian Scenario – Very Funny

Gandhism:
You have two cows. But you drink goat’s milk.
Indiraism:
You have two bulls. You adamantly consider them as cows.
Lalooism:
You have two cows. You buy Rs. 900 Crore worth of cattlefeed for them.
Rajnikantism:
You have two cows. You throw them into air and catch their milk in your mouth.
Rajivism:
You have two cows. You paint them both to get colourful milk.
———————-

Softwarism:

Client has 2 cows and u need to milk them

1 . First prepare a document when to milk them (Project kick off)
2 . Prepare a document how long you have to milk them (Project plan)
3 . Then prepare how to milk them (Design)
4 . Then prepare what other accessories are needed to milk them (Framework)
5 . Then prepare a 2 dummy cows (sort of toy cows) and show to client the way in which u will milk them (UI Mockups & POC)
6 . If client is not satisfied then redo from step 2
7 . You actually start milking them and find that there are few problem with accessories. (Change framework)
8 . Redo step 4
9 . At last milk them and send it to onsite. (Coding over)
10. Make sure that cow milks properly ( Testing)
11. Onsite reports that it is not milking there.
12. You break your head and find that onsite is trying to milk from bulls
13. At last onsite milk them and send to client (Testing)
14. Client is happy???
By this time both the COWs aged and cant milk. (The software got old and get ready for next release repeat from step 1) !!!



The Funny Family Names

Boy: My father’s name is laughing and my mother’s name is smiling.
Girl: Really? You must be kidding!!
Boy: no, no, thats my brother. I am joking
Girl: Haa haa haa

The Funny Family Names



Can we put multiple catch blocks in a single try statement

How to use multiple catch blocks in a single try statement

Yes. Multiple catch blocks may be put in a try block. See code example below, to see multiple catch blocks being used in C#. 

class ClassA
{
public static void Main()
{
int y = 0;
try
{
val = 100/y;
Console.WriteLine("Line not executed");
}
catch(DivideByZeroException ex)
{
Console.WriteLine("DivideByZeroException" );
}
catch(Exception ex)
{
Console.WritLine("Some Exception" );
}
finally
{
Console.WriteLine("This Finally Line gets executed always");
}
Console.WriteLine("Result is {0}",val);
}
}



Can we put multiple catch blocks in a single try statement

Related Posts Plugin for WordPress, Blogger...