|   Home   |    About Us   |    Online Exam   |    Contact   |    Register   |    Interview Tips    |   

iSOFT

Career Details

Eligibility:

Engineering Degree with 50%

Selection Process:

Written
GD
Interview

Entry Package:

2.7

Organization Details

Industry:

IT/Software, Hardware

Web-Site:

http://www.isoftplc.com/

Company Profile :

iSOFT is one of the world’s leading suppliers of advanced software applications for the healthcare sector.

We are committed to the development and delivery of applications that address the administrative and clinical information management requirements of healthcare organisations around the world.

Through significant investment in research and development and continuous process improvement, we have built up the capacity necessary to play a significant role in the use of information technology to enhance the quality of healthcare services.

We are committed to improving the delivery of healthcare and the quality of life for all. In pursuit of that goal, we work with patients, clinicians, other healthcare professionals, administrators and governments on products designed to help bring about improvements in patient outcomes, management processes and cost control.

iSOFT has extensive international experience and reach, with a strong presence in Europe and the Asia Pacific region. Our products are used by more than 8,000 organisations in 27 countries for managing patient information and driving improvements in healthcare services.

iSOFT products are recognised as the best on the market and are designed for a wide range of healthcare activities, including patient administration, clinical information and medical practice management and laboratory, radiology and pharmacy management. Our next-generation offering, LORENZO, is an integrated healthcare information management suite, currently undergoing on site development at hospitals in Germany.

LORENZO places iSOFT at the forefront of the revolution taking place in healthcare. Our vision is to put the individual at the centre of healthcare provision. LORENZO is a comprehensive solution that addresses the needs of patients and all other participants in the healthcare supply chain, enabling them to access critical information whenever and wherever they need it.

The roots of iSOFT are in a healthcare information systems business created within KPMG in 1994. iSOFT was formed in 1998 as a management buy-out from KPMG, and was listed on the London Stock Exchange in 2000. The company has since grown through various acquisitions including Eclipsys Limited in 2001, Torex in 2003 and Spain’s Novasoft Sanidad in 2005.

iSOFT‘s largest presence is in the UK and Ireland, and its current UK market share is around 40%, following the award of contracts under the National Health Service’s National Programme for IT (NPfIT). However, the acquisition of Torex has also enabled the company to establish a firm foothold in mainland Europe, particularly in Germany and the Netherlands.

There are iSOFT offices in 12 countries – the UK, Ireland, Germany, the Netherlands, Malta, Spain, Australia, New Zealand, Canada, China, India and Singapore.

The company has partnerships with global IT vendors such as Computer Sciences Corporation (CSC) and Microsoft. iSOFT’s world-wide strategic alliance with Microsoft has improved the flexibility and scalability of LORENZO, and has helped us to package it for delivery by third-party organisations operating at regional or national level.

We have a workforce of more than 2,700, and current annual revenues are around £180 million. We continue to focus on developing and improving innovative applications, and have over 1,200 specialists engaged in development work and solution design in Chennai and Hyderabad in India. iSOFT is continuing to build a first-class international team of specialists.

iSOFT’s supporting service portfolio complements its advanced technology products by concentrating on installation, system configuration, training, on- and off-site managed services and customer support.

1) In written it consists of
1.aptitute 25 Q's very easy
2.verbal 5 fill in the blanks,5synonyms,5 antonyms..
very easy for fill in the blanks ans is 1.d 2.d 3.d 4.a 5.d
3. Next c it contains 30 Q's plz follow the attachment be'coz all the Q's R repeated
2)G.D
For me topic is "Is s/w professionals r paying more ? It's a fact or not? "

3)Interview

Thats all be through the Q's .......
There cutoff is 50 out of 70..

By
D.Deepan
--------------------------------------------------------------------------------
c ques:

1.a=5,b=3,c=a,b
d=(a,b)
printf(c,d)
ans:c=5,d=3

2.e(int n)
{
if(n>0)
{
...(not clear)
printf("%d",n);
e(--n);
}
return
}
ans:0,1,2,0

3.which has no problem with pointers

int *f1()
{
int n;
return (n)
}

int *f2()
{
int *p;
*p=3;
return p;
}

int *f3()
{
int *p;
p=malloc();
return p;
}

ans:no error

4.header file ->contains declarations.

5.sizeof operator is executed during compile time..

6.*p+=1
*p++
are these two same?
not same.

7.func(int i)
{
static int count;
count=count+i;
}
ans:1+2+3...(counts values does not go after funtion call

8.is('a'<'b') true

10.short int=16 bits

11.4 stmt. ans.int float i;

12.int num[3];
num[3]=2;

ans:first stmt deals with size
second deals with element

13.j=4
for(int i=0;i<5;i++)
{
j++;
++j;
}
output of j.
ans:14

9.char s1[20]="hello world";
s1[5]="\0";
printf("%d",strlen(s1));
printf("%%.%...(not clear)",s1);
}
ans:bad format specifier

14.brace { used in c for what ans:convention

15.parameters in c passed by ans:value.

16.when an array is passed it is by ans:pointer.

17.scanf can read ans:any data type

18.which cant be passed to subroutine.ans:preprocessor directive.

19.to get string of words..ans:gets()

20.external variables can be accesed ans:in functions which use them.

Analytical:

1.cat->satc
dear->seard

sing->sings

3.1999 july 21st friday
1947 july 21st ?
ans:two days before.

4.2,12,30,56,