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:

Thursday, November 24, 2011

30 suicides in Bangalore this week


Numbers don’t lie. In the past one week alone, Bangalore has witnessed over 30 cases of suicide.
Going by the statistics available till October, in the past few weeks, there is a spurt in the number of suicide cases, that have now become a daily affair in the city.
What drives people to take the extreme step? According to the police, marital dispute tops the list of reasons. Next come various kinds of pressures to which youth succumb.
Till October this year, there have been 1,407 cases registered in Bangalore. Of this, 872 victims were male and 535, female. This year has already registered a 5% increase in the number of suicides, with more than a month for the year to end. Year-wise, there has been a steady increase in suicide rate and this year, the police fear, the count is poised to hit the roof.
Reasons
“Around 60% of the suicide cases reported this year were related to marital disputes — that are common both in arranged and love marriages,” said additional commissioner of police (law and order) Suneel Kumar T.
Marital issues, ill-treatment by husband and in-laws arethe primary causes. Other major causes include dismal performance in examinations. “By scoring marks less than expected, students think they belied the expectations of their parents and take the extreme step. Educational institutions and parents, too, put a lot of pressure on students — a trend that should change,” Kumar added.
According to the National Crimes Record Bureau (NCRB), Karnataka ranks fifth among Indian states, in terms of number of suicide cases. It accounted for 9.4% of the total number of suicide cases reported in India in 2010. “Earlier, suicides used to be popular among illiterates… but now, the trend has caught up with youth and middle-aged men who are also well-educated,” Kumar noted.
“In the 30 suicides reported this week in Bangalore, marital disputes, including dowry harassment, were the main causes.
Around five victims were teenage students, with love and pressure being the reasons,” he said, adding that: “Work pressure is another top cause.”

Opening for Dotnet Faculty/Trainer

Warm Greetings From Cegonsoft!!!!!!!!!!!
We have opening for below position for our Branches. 
Location : Bangalore

Position : Trainer / FACULTY (Java/J2EE)
Skill Sets: Dotnet, Asp.net,C#,WPF,WCF
Designation:  Technical Consultant 

Experience : 0 to 5 yrs 

Salary - Best in industry 
We are looking at candidates who can join immediately. BCA / MCA / B.TECH-IT / NETWORKING PASS OUTS interested in becoming a Trainer.

Job Description :
Should conduct class as per the batch plan and maintaining log sheet, attendance sheet of students
Guiding and assisting students in lab
 Involve in cooperating with marketing team for internal counseling 
Recommend textbooks and other instructional materials to the students
Coordinate, plan, organize, and instruct courses to the Students
Should handle batches according to the approved course syllabus. 
Conducting periodic test, seminars to the students
Assist Placement Coordinator for activity class and for student placement.
Assisting marketing team by conducting demo class as per the requirement.
Should involve in preparing Question paper and evaluation.
Should update your skills as per the company s requirement.
Should attend corporate meeting / training.
Assisting students on academic projects / course final projects. 
Should serve as an academic advisor to the students.
Knowledge of Power Point & Ms-Word.
Presentable with student management skills.

Domain knowledge on any field and IT Literate.


We are looking at dynamic candidates with good communication and have interest in becoming a Trainer 

Interested candidates kindly mail your profile/ CV immediately. sarithab@cegonsoft.net

Kindly ignore if you are not interested or if you have already received the mail. 

Regards,

Saritha.B
HR Recruiter
Cegonsoft Pvt Ltd

Difference between string and string builder


In Dot Net there will be many cases where in we need to operate on strings and first thing we remember is using system.String but there are certainly many points we need to remember and consider before we operate on strings.
1) Performance.
2)how many times we need to concatenate.
Lets take an example for concatenate five strings.
EX 1. Using System.String
System.String str =“My Name is dilip”;
str += “and i am”; str += “working on “;
str += “Post of “;
str += “difference between string and string builder”;
Response.Write(str);
and the expected output well you probably guessed it right
“My Name is dilipand i amworking on Post of difference between string and string builder”
Now what has happed? yes the important question now how many times we have appended the str variable those number of times string was created in memory location and abandoned when a new string is created and later waiting for garbage collection.
This leads to memory wastage and degradation of performance because string are immutable(that means any change to string causes a runtime to create a new string and abandon old one).
Think about the situation where in u need to work on 100 or more strings????
Dot Net has answer for it in the form of System.Text.StringBuilder class
EX2. Same Example using StringBuilder
StringBuilder sb = new StringBuilder();
sb.Append( “My Name is dilip”);
sb.Append( “and i am”);
sb.Append( “working on “);
sb.Append( “Post of “);
sb.Append( “difference between string and string builder”);
and the output is same as previous
“My Name is dilipand i amworking on Post of difference between string and string builder”
But this time there was only one string created in memory dynamically and modified as we append the new string, by this there is not much garbage collection and also helps improve performance. Append is taken only for example there are a lot of other functions which are just waiting for you to invoke.Happy coding.

Urgent Opening For Dot Net Trainers or Faculty


Experience required for the Job: 1 - 3 years
Job Location: Bengaluru/Bangalore

Dear Candidate,
Hello......................
Greetings from Systems Domain,

We wish to take this opportunity to introduce Systems Domain (P) Ltd a leading Training Institute. We have 9 Branches in Bangalore itself. URL: www.systemdomain.net

Currently we have an opening of Dot Net Trainers (Full Time) in the below mentioned technologies for one of the Branches of Systems Domain at Vijayanagar. Candidates who are looking forward to join with us, kindly Walk In to our office at below mentioned address along with the hard copy of the resume.

VIJAYANAGAR BRANCH

Technology: Dot Net

Qualification:Preferably M.Sc(CS), MCA with Excellent Technical knowledge in the preferred domain. Good Communication Skills.

Experience: 1 - 2 Years

Address:Systems Domain Pvt. Ltd.
54/54, 2nd Floor,
P.R Complex 17th Cross,
Next to Canara Bank,
MC Road, Vijaynagar,
Bangalore - 560 040


Contact Person: Geetha

Contact No: 9900329357

Email ID: sdvn@systemdomain.net

Kindly Call up at the given No. or walk in to the respective Office of the Address given above.

Thanks & Regards,
Anusha C.A,
No24, 2nd Floor, 5th Cross, 5th Block, koramangala, Bangalore-95
Phone: 080-40927521.

Food Corporation of India is recruiting 3500 Assistants


Food Corporation of India is recruiting 3500 Assistants All over India to apply log on ssconline.nic.in   last date is 25.11.11

APSRTC is Recruiting 654 junior Assistants

APSRTC is Recruiting 654 junior Assistants.. To apply log on to apsrtc.gov.in  ..last date is 28.11.2011  http://apsrtc.cgg.gov.in/

RBSEO recruiting 2012 passouts


RBSEO recruiting 2012 passouts.
Location: Chennai
Eligibility:
. B.E/B.Tech in CSE,IT and ECE.
. Final year students only (2012 passouts)
How to apply:
Send your CV to info@rbseo.co.uk with Subject Chennai Office Application

Verizon recruiting freshers and Exp


Verizon recruiting freshers.
Location: Hyderabad
Eligibility:
. B.E/B.Tech,M.Tech with 70%
How to apply:
For more details and apply click HERE

ICC T20 Ranking



Reliance ICC T20 Ranking
TEAMMATCHESQFY
MATCHES
POINTSRATING
1England11191435130
2Sri Lanka8171009126
3New Zealand9191056117
4South Africa816900113
5Australia11211223111
6India613635106
7Pakistan1224116497
8West Indies81671189
9Afghanistan3822475
10Zimbabwe71137654
Developed by David KendixLast Updated: Wed, Nov 9, 2011

Related Posts Plugin for WordPress, Blogger...