Skip to main content

Stellent Info Solutions Pvt Ltd Hiring US IT RECRUITER

Company        Stellent Info Solutions Pvt Ltd

Website          www.stellentsolutions.com

Eligibility        MBA (HR & Marketing)


Experience     1-2 Years

Location         Hyderabad

Stellent Info Solutions Pvt Ltd

Job Role: US IT RECRUITER With 1-2 Years Exp

Job Summary :

Handling end to end recruitment process.

Good experience in working across all IT technologies.

Understanding the client requirements.

Sound Knowledge on complete US geography.

Good knowledge of W2, Corp -Corp, 1099 , US tax terms

Sourcing, screening and short listing candidates profile from database, portals, and references.

Working on Monster, Dice, Jobserve, Corp-Corp, Indeed.com, careerbuilder, LinkedIn, and Google

Arranging interview schedules for the shortlisted candidates.

Screening the resumes based on technical skills, and communication skills and short-listing if it matches the requirement.

Coordinating the interviews between client and candidates effectively to make the event successful.

Creating & maintaining effective & efficient database for resourcing.

Responsible for full cycle of recruitment including direct sourcing activities, interviewing and negotiating the compensation packages.

Confident in interactions with individuals of all levels and backgrounds.

Comfortable in interacting to people & be a good listener.

Sound understanding of work environment and deliverables.

Discussion about rate, candidate, weekly target achievement, high priority requirement and future requirement.

Strong in to Salary / Daily Rates Negotiation.

Solid negotiation and closing techniques.

Strong Experience / Understanding of US Visa process.

Proactively build relationships with existing and potential clients to gain a greater understanding of current/future business needs.

Manage multiple client relations and engagements.

Should be expertise in filling the requirements either by placing the bench candidates or through vendors.

Contact Us:

Ms. Sandhya

Forward Your Resume: resumes@stellentsolutions.com

Contact Number: 64503737

Comments


  1. We are the Best USA B1 B2 Visa Consulants providing the Best service to all our Cusomters. We analysize the applicants profile and let them know how to apply for the USA B1 B2 Visiting/Tourist/Business visa.b1 b2 visa consultants in hyderabad

    ReplyDelete

Post a Comment

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