Epic Systems Interview Question for Software Engineer / Developers






Comment hidden because of low score. Click to expand.
0
of 0 vote

Is this Question Complete? Is there any thing more to it?
Come on guys. Reply..

- sheik.kashif June 05, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Any clue to this question?

- akanksha.cse July 03, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Lets assume the salaries as x,y,z for three categories respectively.

Then 1<N<(50000*100)(x+2y+3z).

- Akshat October 11, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

class Program
{
static void Main(string[] args)
{
Console.WriteLine("Select the category of employee");
string category = Console.ReadLine();
char cat = Convert.ToChar(category);
Console.WriteLine("Input the base salary of employee");
string salary = Console.ReadLine();
int sal = Convert.ToInt16(salary);

int n =1;

Console.WriteLine("Input the increment");
string increment = Console.ReadLine();
int incr = Convert.ToInt16(increment);

if ((cat == 'A') && (incr >= n))
{
sal = sal + ((sal * incr) / 100);
if (sal > 50000)
Console.WriteLine("Total update salary is more than 50,000");
else
Console.WriteLine("Total Updated Salary is " + sal);
}

if ((cat == 'B') && (incr >= (2 * n)))
{
sal = sal + ((sal * incr) / 100);
if (sal > 50000)
Console.WriteLine("Total update salary is more than 50,000");
else
Console.WriteLine("Total Updated Salary is " + sal);
}

if ((cat == 'C') && (incr >= (3 * n)))
{
sal = sal + ((sal * incr) / 100);
if (sal > 50000)
Console.WriteLine("Total update salary is more than 50,000");
else
Console.WriteLine("Total Updated Salary is " + sal);
}



}
}

- Anonymous October 14, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

i also thought thesame but i think there must be something tricky

- Anonymous December 05, 2010 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

wrong! If the increment is less than 1% you should increment it by 1%

- abc March 13, 2011 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

The total updated salary should not exceed $50,000.
does it mean incrA+incrB+incrC<50000??

- Judy May 10, 2011 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More