Skip to main content

IBM India Openings For Freshers

Company Name : IBM India Pvt. Ltd.

Website : www.ibm.com

Qualification : Bachelor's Degree

Experience :  0 to 2 years


Location : Bangalore

Job description:

- University with 0-24 months of experience .

- 0 to 24 months of desired experience required.

- Should be completable in high level programming language , DB , good verbal & written communication.

- Must have good communication skills

How To Apply:

https://jobs3.netmedia1.com/cp/find.ibm.jobs/IN/Fresher_Univeristy_Hire_-_ISL/SWG-0530937/job/

Comments

Popular Posts

How to find out Max Salary from each department

You can find maximum salary for each department by grouping all records by DeptId and then using MAX() function to calculate maximum salary in each group or each department. SQL Query: SELECT DeptID, MAX(Salary) FROM Employee  GROUP BY DeptID. This questions become more interesting if Interviewer will ask you to print department name instead of department id, in that case you need to join Employee table with Department using foreign key DeptID, make sure you do LEFT or RIGHT OUTER JOIN to include departments without any employee as well.  Here is the query