GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Placement Papers  >  Cadance  >  Interview Procedure
 Interview Procedure  |  Question 1 of 1    Print  
Cadance Interview Procedure and Company Details

Interview Procedure

The information on the interview is pretty sketchy but it may consist of both technical grilling and HR interview.

The written test consists of the following sections:

1. Software Section -- Consists of 10 questions of MCQ type. (10 min)
2. Hardware Section -- Consists of 10 questions of MCQ type. (10 min)
3. Aptitude Section -- Consists of 55 questions of MCQ type. Aptitude Questions were analytical and were to be done in 55 min.




  
Total Answers and Comments: 1 Last Update: May 04, 2007   
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
May 04, 2007 09:00:13   #1  
Anamika        

RE: Cadance Interview Procedure and Company Details

some the interview Questions asked in cadence

Ques 1. how many trailing zeros will be there in factorial 100;
Ans: 21.

Ques 2: How to implement a linked list using stack?
Ans: I think the solution is possible by using two stacks i.e. one temporary stack.
Lets say we have two stack and tempStack as and we can perform the stack operation on these using
the following functions
please dont consider is a running code; I just try to give the logic

Element pop(stackNumber);
bool push(stackNumber Element);// expecting push will return false on stack overflow
bool overflow(stackNumber);
bool empty(stackNumber);

now the lets see how can we perform the operations needed for linked list.

// function to search a element in the list

bool find(Element elem) {
bool found false;
Element tempElem

//traverse the stack
while (! empty(stack)) {

tempElem pop(stack);

push(tempStack tempElem);

if(tempElem elem) {
found true;
break;
}

}

while (!empty(tempStack) {
tempElem pop(tempStack);
push(stack tempElem);
}
return found;
}

// function to insert element in the list after a given element

bool insertAfter(Element elem Element targetElem) {

Element tempElem

while (!empty(stack)) {

tempElem pop(stack);

push(tempStack tempElem);

if(tempElem taggetElem) {
break;
}
}

if(!push(stack elem)) {
retrun false; // for stack over flow
}

while (!empty(tempStack) {

tempElem pop(tempStack);

if(!push(stack elem)) {
retrun false;// for stack over flow
}

}
return true; // success
}

//function to delete an element from a list return false if stack is empty

bool deleteElem(Element elem) {

bool found false;
Element tempElem

while (!empty(stack)) {
tempElem pop(stack);

//if element to delete is found then dont push it to temp stack
if(tempElem elem) {
found true;
break;
}

push(stack2 tempElem);
}

while (!empty(tempStack) {
tempElem pop(tempStack);
push(stack elem))
}

retrun found; //false if the elemet does not exist

}



 
Is this answer useful? Yes | No

 Related Questions

Interview ProcedureThe information on the interview is pretty sketchy but it may consist of both technical grilling and HR interview.The written test consists of the following sections:1. Software Section 
Latest Answer : some the interview Questions asked in cadenceQues 1. how many trailing zeros will be there in factorial 100;Ans: 21.Ques 2:  How to implement a linked list using stack?Ans: I think the solution is possible by using two stacks i.e. one temporary stack.Lets ...


 Sponsored Links

 
Related Articles

The Interview Snafu

How to turn someone else’s mistake to your advantage Your dream job is about to become reality. A recruiter gave you the heads up about the perfect position at Humungous Conglomerate, Inc. You went through five interviews as well as a battery of psychological tests mandated by their HR de
 

Winning a Job Interview with a Winning Resume

Does your resume unlock your potential, take your skills to the highest level and win you the interview and the job you want now? The job market today is highly competitive and even if you think you have what it takes to get an interview you won’t get over the line without a polished, prof
 

XML Remote Calling Procedure

XML Remote Calling Procedure XML RPC or the XML Remote Calling Procedure is a set of compilations and implementations which allow certain programs to run on complex platforms or operating systems and allows them to make Remote Procedure calls on the Internet The Remote Procedure Calling Protocol use
 

Importance of Proper English during Job Interview

Importance of Proper English during Job Interview Your job interview is crucially important and it will determine whether or not you will get the job Depending on the type of job you re going for it is very important for you to use proper English In most cases jobs which offer higher salaries will h
 

Procedure for getting Scholarships

Procedure for getting Scholarships If you have done a bit of research you are probably well aware of the fact that there is a great deal of money available for scholarships Having said that it is sad to see that so many students graduate from college with lots of students loans when they could have
 

HR Interview - HR Interview Mistakes You Will Want To Avoid

HR Interview Mistakes You Will Want To Avoid The job interview can be a stressful process This is especially true for those who are going after a competitive position Your nonverbal communication combined with the answers you give during the interview will determine if you are hired mosgoogle While
 

HR Interview - Behavioral HR Interviews

Behavioral HR Interviews As the name implies a behavioral interview is an interview that is held by a human resources department to determine if an applicant has the behaviors that are appropriate for a job The company must know how an applicant will behave in a certain situations mosgoogle The logi
 

HR Interview - How To Prepare For Your HR Interview

How To Prepare For Your HR Interview Before you begin thinking about how you are going to dress for the interview it is important to do your research first You should learn everything you can about the company you wish to work for When you have detailed information about your employer you will conve
 

HR Interview - Telephone Interview Etiquette

Telephone Interview Etiquette When you conduct a telephone interview for a job it is important to show the proper etiquette Not only is it important it is critical is you wish to be hired by the company There are a number of things you will want to do and other things should never be done mosgoogle
 

HR Interview - How To Succeed At HR Interviews

How To Succeed At HR Interviews There are a number of things you will need to do in order to make sure you pass the interview process Your appearance is something that you will want to pay close attention to Even if you feel that your appearance shouldn t be a factor in whether or not you re highere
 

About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape