30 November 2011

ipsr recruitment drive for Trikode Solutions

A recruitment drive for Trikode Solutions,Trivandrum was held at ipsr,Trivandrum branch on November 29th 2011.About 40 candidates took part in the event.

The openings were for PHP Programmers and Business Consultants.An aptitude test was followed by a technical interview and an HR interview.

.




WIPRO drive at KVVS college adoor

                                


Wipro Wase and Wista programme at KVVS college adoor

Date: 24th November 2011



WIPRO drive at BVM college cherpunkal




WIPRP Wase Wista programme placement drive at BVM college cherpunkal on 22nd November 2011


28 November 2011

Job opportunity for Business Consultants

Company:  Trikode  Solutions,Trivandrum

Date: Tuesday,   29th November 2011

Time:10:00AM

Venue: ipsr solutions ltd,Near Gandhari Amman Kovil,Thampanoor,
Thiruvananthapuram

Click here for more details

Phone: 9446922478

opportunity for PHP Programmers

Company: Trikode  Solutions, Trivandrum

Date of interview: Tuesday,29th November 2011

Time:10:00AM

Venue: ipsr solutions ltd,Near Gandhari Amman Kovil,Thampanoor,
Thiruvananthapuram

click here for more details

25 November 2011

ipsr placement orientation programme

Venue:  IPSR Kottayam
Date:   29/11/2011
Time : 10.00 am-1.00 pm

Topics covered
                      
How to find vacancies
How to get prepared for grasping opportunities.
How to get placed .
Employability Skills etc

Fees: Rs.1000/-

FREE for ipsr students and members of  ipsr premium jobs group.

for details contact  0481-2301085


opportunity for Windows Server Administrator

company: Hashroot Technologies

For details click here

Opportunity for Sr. Linux System Administrator

company :  Hashroot Technologies

click for details

22 November 2011

weekly digest of ipsr placements 14th November-21st November 2011

12 Job vacancies have been posted last week in our web site, www.ipsr.org/placements , www.ipsrjobs.com  and 5 Jobs Groups. A collection of few jobs posted are given below.

Recruitment Drives:

Wipro Technologies (Software )Recruitment Drive for B.Sc/BCA/M.sc 2012, 2011 Batches at Kottayam

Wipro Technologies (Software)  Recruitment Drive for B.Sc/BCA/M.sc 2012, 2011 Batches at Adoor

Poornam Info vision Recruitment Drive for B.E/B.Tech (System engineer ) and  Degree/PG Candidates (CRE)

Trikode Solutions Recruitment Drive for PHP Candidates , MBAs, Degree candidates for various positions

Click for more details

Fresher jobs:
Elza graphics requires PHP Developers

Mind Labs Requires Web Developers (PHP)
 
Ansell Medical Transcription Requires System Administrators

Click for more details

Experienced Jobs:

Emysys Technologies requires iPhone Developers

Click for more details


Management/ Office jobs:

A reputed MNC in Kochi Requires HR Coordinators

Red Splash Media Solutions Requires Marketing Executives

Click for more details

RHCE / Linux / Networking Jobs:

A reputed Company Requires Technical Support Executives

Ansell Medical Transcription Requires System Administrators

Click for more details

Results of drives

Click here for more details

Keep visiting www.ipsr.org/placements    and  register your resumes at  www.ipsrjobs.com



16 November 2011

WIPRO technologies WASE and WISTA details

A golden opportunity for B.Sc/ BCA /M.Sc, 2012, 2011 Batch students to work in  WIPRO

For details of  syllabus, question  pattern for WASE
click here

For all details of WISTA  click here

For details of the latest WASE and WISTA drive in Kerala  Click here


Join our career center facebook group

11 November 2011

Opportunity for System admin ( windows)

System administrators  ( windows)  required in Ansell Medical Transcription

For details click here

Special Orientation Programme For Wipro (Software) Recruitment Drive

IPSR is organizing a One day Placement Orientation Programme for Wipro drive Eligible candidates and IPSR Premium Group students . The aim of the programme is to equip students to face the Wipro Recruitment drive and to enhance their chances of getting placed
Date: Saturday 12th November 2011
Venue: IPSR Solutions Ltd, Merchant Association Building, ML Road, Near KSRTC Bus Stand, Kottayam.

Time: 10:00 AM -1:00PM


Programme Schedule

The details of WASE & WiSTA Programme,

Aptitude Training

Interview tips

CV Preparation

Doubt Clearing

Advance Registration for Wipro Drive etc...

Free online model tests with solved answers is available for Wipro recruitment Drive

For Details , Call 0481 2561410

10 November 2011

Placement Orientation Programme ASP.NET


A placement orientation programme  was Conducted on  21-10-2011 at IPSR kottayam branch by Mr.Majesh S , Senior Technical  Consultant. IPSR.  About  13  IPSR students participated in the  one day programme which included a one hour machine test in the afternoon.

Subjects of the programme were ASP.NET and SQL SERVER

The topics covered  in SQL were

 1.      Introduction to SQL SERVER 2000 , SQL SERVER 2005 , SQL  SERVER 2008

2.      SQL Queries

3.      Aggregate Functions

4.      Stored Procedures


Topic covered in  ASP.NET were

 1.      .NET Framework 4.0

2.      Object Oriented Programming Concept

3.      THREE TIER ARCHITECTURE

4.      AJAX

5.      LINQ

6.   WEB PARTS

7. 
SHARE POINT
8.      MVC ARCHITECTURE


click here for interview questions in ASP.NET

08 November 2011

Interview questions .Net : Language INtegrated Query (LINQ)

Q.How LINQ is beneficial than Stored Procedures?

Answer: There are couple of advantage of LINQ over stored procedures.

1. Debugging - It is really very hard to debug the Stored procedure but as LINQ is part of .NET, you can use visual studio's debugger to debug the queries.

2. Deployment - With stored procedures, we need to provide an additional script for stored procedures but with LINQ everything gets complied into single DLL hence deployment becomes easy.

3. Type Safety - LINQ is type safe, so queries errors are type checked at compile time. It is really good to encounter an error when compiling rather than runtime exception!



Q.Why Select clause comes after from clause in LINQ?

Answer: The reason is, LINQ is used with C# or other programming languages, which requires all the variables to be declared first. From clause of LINQ query just defines the range or conditions to select records. So that’s why from clause must appear before Select in LINQ.

Q.What is the benefit of using LINQ on Dataset?


Answer: The main aim of using LINQ to Dataset is to run strongly typed queries on Dataset.

Suppose we want to combine the results from two Datasets, or we want to take a distinct value from the Dataset, then it is advisable to use LINQ.

Normally you can use the SQL queries to run on the database to populate the Dataset, but you are not able to use SQL query on a Dataset to retrieve a particular values. To get this you need to use ADO.NET functionalities. But, in case of LINQ, it provides more dignified way of querying the Dataset and provides some new features as compared to ADO.NET.


Contributed by:  Pinky Bhadran



Q) How can we find Sequence of Items in two different array (same Type) in the same order using linq query?

int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };
int[] numbersCopy = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 };
Console.WriteLine(numbers.SequenceEqual(numbersCopy));


Output Result: True

Reference:
http://www.indiabix.com/technical/dotnet/language-integrated-query-linq/
http://www.careerride.com/linq-sequence-of-items.aspx

contributed by: Nithya S. Nair


Q.What are the three main components of LINQ or Language INtegrated Query?
Answer:
1. Standard Query Operators
2. Language Extensions
3. LINQ Providers

Reference:
http://venkataspinterview.blogspot.com/2010/06/linq-interview-questions-part-2.html
http://linqfaqs.blogspot.com/2011/08/what-are-three-main-components-of-linq.html

Q.How are Standard Query Operators implemented in LINQ?

Answer: Standard Query Operators are implemented as extension methods in .NET Framework. These Standard Query Operators can be used to work with any collection of objects that implements the IEnumerable interface. A class that inherits from the IEnumerable interface must provide an enumerator for iterating over a collection of a specific type. All arrays implement IEnumerable. Also, most of the generic collection classes implement IEnumerable interface.

Reference:
http://linqsqo.codeplex.com/
http://bartdesmet.net/blogs/bart/archive/2006/07/04/4115.aspx

Q.How are Standard Query Operators useful in LINQ?
Answer: Standard Query Operators in LINQ can be used for working with collections for any of the following and more.
1. Get total count of elements in a collection.
2. Order the results of a collection.
3. Grouping.
4. Computing average.
5. Joining two collections based on matching keys.
6. Filter the results

Reference:
http://odetocode.com/Articles/739.aspx
http://www.4guysfromrolla.com/articles/040109-1.aspx

Q. List the important language extensions made in C# to make LINQ a reality?
Answer:
1. Implicitly Typed Variables
2. Anonymous Types
3. Object Initializers
4. Lambda Expressions

contributed by: Saravana Kumar

Click here to got to index of .net interview questions

01 November 2011

Weekly Digest of ipsr placements -24th October- 31st October 2011

12 Job vacancies have been posted last week in our web site, www.ipsr.org/placements , www.ipsrjobs.com  and 5 Jobs Groups.
A collection of few jobs posted are given below.

Recruitment Drives:

Wipro Technologies Recruitment Drive for B.Sc/BCA/M.sc 2012,2011 Batches

Admod Technologies Recruitment Drive for Linux (RHCE/CCNA) Candidates

2 Recruitment Drives for Degree/PG Candidates - MARINE BIZ and ReMax

First Source, Kochi Recruitment Drive for degree/Diploma Candidates


click for more details

Fresher jobs:

GALTech Enterprises, Cochin Requires PHP Programmers

Recruitment Drive For Degree/PG Candidates

Dieutek Developments Requires Java & Dot Net Trainers

click for more details

Experienced Jobs:

CMS Info systems Requires Technical Trainer

Strands Energy, Info park, Koratty Requires Software Engineers

Admod Technologies Requires Programmer

click for more details


Management/ Office jobs:

Alankit, Kottayam (kanghikuzhy) Requires B.Com Graduates as Trainee - Tax consultant

ICFAI University Requires Events Executive 

An MNC Wanted B Com candidates for Delhi

click for more details

Results of drives

Poornam Info vision Recruitment drive and Admod Technologies Recruitment Drive held at Kottayam

click here for results

Also join our Facebook group