Upload Button Icon Add office photos

Filter interviews by

Cs Prahallad And Co., Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Just a min on T20 cricket
  • Q3. Improving quality of education in India
  • Ans. 

    Improving quality of education in India

    • Investing in teacher training and development

    • Increasing access to technology and digital resources

    • Encouraging parental involvement in education

    • Promoting vocational education and skill development

    • Addressing the issue of inadequate infrastructure and resources

  • Answered by AI
  • Q4. Question on B. Tech project

Interview Preparation Tips

Round: Test
Experience: Reasoning / Analytical : there were many questions on venn diagram.. relationships.. cube problem... etc etc... VERBAL: questions on correction of sentences... jumbled sentences.. series... etc etc....
Total Questions: 60

College Name: NIT WARANGAL

Interview Preparation Tips

Round: Resume Shortlist
Experience: The resume was as per the norms of our institute’s placement office. One should mention only relevant points in the resume because if they ask you something from the resume and you are unable to answer then they will reject you bluntly.

Round: Test
Experience: In the written test the questions asked were mainly aptitude based. The company had sent us some sample question papers before the written test. The questions in the test appeared from those sample papers only. Most of the questions were tricky – questions were framed in a very lengthy manner and the answers or the data required to solve the question was hidden in the last few lines. Many students wasted their time analysing such questions completely. Out of the 80 odd students who appeared for the test only 11 qualified for the next round.

Round: Technical Interview
Experience: In the technical interview he asked me whether I knew programming, I replied in the negative. He asked me to suggest an algorithm to a problem. The problem was based on swapping of numbers. At first I gave a very bland reply. The interviewer wasn’t convinced by my reply and gave me another opportunity to explain me the process. This time I managed to answer appropriately. The interviewer then enquired about my internship and my projects.

Round: HR Interview
Experience: The HR interview was taken by some top company official. He asked me to narrate any challenging incident in my life that I had to struggle through to emerge out of it. One important thing to note here is that your CGPA would speak for you – if you have a good CGPA half the battle is won.

College Name: IIT ROORKEE
Motivation: TCS recruits a large number of students from various colleges across the country. Knowing this fact beforehand I was not much interested in joining the company. I appeared for its process as a last resort. The company had organized a pre-placement talk. I attended the talk and before appearing for the first round I went through the brochure that was given out during the pre-placement talk.

You do not require any specific information regarding the company to ace the interviews or any questionnaire.

Interview Questionnaire 

1 Question

  • Q1. Basic HR questions, your understanding of your projects, biggest achievement so far??

Interview Preparation Tips

Round: Resume Shortlist
Tips: Get to know your resume very well, have a story for each of your resume point

Round: Test
Experience: Written test. Basic Quant and one short essay to test your English.

Round: Interview
Experience: They were looking for people with good math skills and team player.

Round: Interview
Experience: Prepare for all the basic HR questions beforehand, write them down. for core get your basic fundamentals perfect.
Tips: I started preparing for placements from Nov starting but starting early will be better.

General Tips: Prepare for all the basic HR questions beforehand, write them down. 
For core, get your basic fundamentals perfect.
Skills: Basic fundamentals
College Name: IIT-Madras

Interview Preparation Tips

Round: Interview
Experience: The round was of 1 hour

Round: Group Discussion
Experience: 10 people per group

General Tips: This company, as I understand, is looking for future managers. No technical preparation is required as didn’t ask a single question related to academics. You just need to convince them that you are ready to do whatever they want you to do in the company be it coding or data entry and depending on your luck and soft skills you will get through.
Skill Tips: Cut off is 8.
College Name: IIT KHARAGPUR

Interview Questions & Answers

Deloitte user image Anonymous

posted on 20 Jan 2015

Interview Questionnaire 

2 Questions

  • Q1. Why IT consultancy?
  • Q2. What would be the advantages of chemical background?

Interview Preparation Tips

Round: Test
Experience: CAT type questions were asked in English and DI.
Tips: Accuracy will matter and preparations for CAT will help.
Duration: 30 minutes
Total Questions: 40

Round: Technical Interview
Experience: Questions were based on Data Abstraction. Internship was the main topic around which the rest of the interview went on.
Tips: Coding skills should be good.

Round: HR Interview
Tips: Work on communication skills.

College Name: IIT KANPUR

Interview Preparation Tips

Round: Walk in
Experience: Initial shortlist was Walk-In.

Round: Technical Interview
Experience: Duration: 50 mins.
Resume based.

General Tips:  Have a good number of projects and know each and every aspect of the projects mentioned
 Have the ability to relate course content to the project development
Skill Tips: They were looking for Product Designers.
College Name: IIT-Madras

Interview Questions & Answers

Capgemini user image Harika nambula

posted on 2 Apr 2015

Interview Preparation Tips

Round: Resume Shortlist
Experience: This is the first step of being eligible for the company.It depends upon the eligibility criteria given by the company.
Tips: Most companies ask for 60% right from 10th to the present degree..make sure you have 60% uptil present degree

Round: Test
Experience: This is the first feel good experience in the entire selection process,getting thtough the aptitude and getting shortlisted is the first step which takes us to the other rounds.
Tips: Here managing the time is really important thing..being smart is what all matters...Every  section should be given equal importance as there would be sectional cutoff.
Total Questions: 90 mins

Round: Group Discussion
Experience: The topic is infact related to us in common..we all know about smart phones advantages and disadvantages..i spoke both pros and cons with confidence nd without deviating from topic.
Tips: Utilise the time when u get to speak.Dont be over confident or show attitude towards others or fight with your group people..if anyone is deviating from the topic you hav rights to say in a polite manner.
Duration: 30 mins minutes

Round: HR Interview
Experience: My interview is combined technical and HR interview which is infact really cool..1 question is related to technical..other logical..next is about my personal life..it went on like this..my interview is nearly for an hour because i am the 1st candidate to attend interview for capgemini after the group discussion
Tips: Be cool..relaxed..make up your mind..have a pleasant smile on your face..dont be tensed..if you dont know anything..just reply sorry sir/maam..be confident..your every move is noticed by them..be polite.

General Tips: This is easy to achieve when you have good communication skills,time management and analytical ability..just prepare yourself with these and be confident
Skill Tips: Prepare yourself with lots of logical questions and make sure you have good communication skills
Skills: Logiacal ability , Communication
College Name: Sathyabama university
Motivation: The company's preplacement talk made me feel really good and the motives of the company are awesome..the way they organise activities and  treat employees made me to apply for capgemini
Funny Moments: In the group discussion round the judge asked us to give marks for ourselves for what we have spoke..i hv given 9 marks and those are the final marks given for us..

SDE-2 Interview Questions & Answers

Amazon user image Anonymous

posted on 2 Apr 2015

Interview Questionnaire 

10 Questions

  • Q1. Find sum of all numbers that are formed from root to leaf path (code) expected time complexity O(n)
  • Ans. 

    Find sum of all numbers formed from root to leaf path in a binary tree

    • Traverse the binary tree using DFS

    • At each leaf node, add the number formed from root to leaf path to a sum variable

    • Return the sum variable

    • Time complexity: O(n)

    • Example: For a binary tree with root value 1, left child 2 and right child 3, the sum would be 12 + 13 = 25

  • Answered by AI
  • Q2. Given a string you need to print all possible strings that can be made by placing spaces (zero or one) in between them. For example : ABC -> A BC, AB C, ABC, A B C
  • Ans. 

    Given a string, print all possible strings that can be made by placing spaces (zero or one) in between them.

    • Use recursion to generate all possible combinations of spaces

    • For each recursive call, either add a space or don't add a space between the current character and the next character

    • Base case is when there are no more characters left to add spaces between

    • Time complexity is O(2^n) where n is the length of the string

  • Answered by AI
  • Q3. Preorder traversal without using recursion
  • Ans. 

    Preorder traversal without recursion

    • Use a stack to keep track of nodes

    • Push right child first and then left child onto stack

    • Pop top of stack and print value

    • Repeat until stack is empty

  • Answered by AI
  • Q4. There is a 12 km road and a contractor who is in-charge of repairing it. Contractor updates you about the work which is done in patches. Like “Road between 3.2 km to 7.9 km repaired ”, “Road between 1.21 k...
  • Ans. 

    Find longest continuous patch on a 12 km road with updates in patches

    • Maintain a variable to keep track of current patch length

    • Update the variable whenever a new patch is added

    • Maintain a variable to keep track of longest patch so far

    • Compare current patch length with longest patch length and update if necessary

    • Use a sorted data structure like a binary search tree to store the patches for efficient search

    • Time complexity: ...

  • Answered by AI
  • Q5. Several Questions were asked from my project
  • Q6. Find median of an unsorted array. (code
  • Ans. 

    Find median of an unsorted array.

    • Sort the array and find the middle element

    • Use quickselect algorithm to find the median in O(n) time

    • If the array is small, use brute force to find the median

  • Answered by AI
  • Q7. General discussion on heaps
  • Q8. A stream of characters is coming, at any moment you have to tell ‘k’ elements closest to a given number (code)
  • Ans. 

    Find 'k' elements closest to a given number from a stream of characters.

    • Use a priority queue to keep track of closest elements.

    • Update the queue as new characters come in.

    • Return the 'k' closest elements from the queue.

  • Answered by AI
  • Q9. Design data structure that supports insert(), remove(), find-max(), delete-max() operations. All operations should run in O(1) time. Lots of discussion was there, discussed many approaches.
  • Ans. 

    Design a data structure with O(1) insert, remove, find-max, and delete-max operations.

    • Use a doubly linked list to maintain the elements in sorted order.

    • Use a hash table to store the pointers to the nodes in the linked list.

    • Maintain a pointer to the maximum element in the hash table.

    • Update the pointers in the hash table when inserting or removing elements.

    • Update the maximum pointer when deleting or inserting the maximum

  • Answered by AI
  • Q10. Check whether given link list represents palindrome
  • Ans. 

    Check if a given linked list is a palindrome.

    • Traverse the linked list and store the values in an array.

    • Compare the first and last elements of the array, then move towards the center.

    • If all elements match, the linked list is a palindrome.

    • Alternatively, use two pointers to find the middle of the linked list and reverse the second half.

    • Compare the first half with the reversed second half to check for a palindrome.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Recently I attended Amazon Bangalore interview for SDE 2 position. All f2f and no phone/written screening as I had attended one before and cleared those. Total 4 rounds wer der. The first techh round dey asked mi questions listed above.
Tips: NA

Round: Technical Interview
Experience: ROUND 2 dey asked mi above questions
Tips: NA

Round: Technical Interview
Experience: Round 3 Above questions wer asked.

Round: Technical Interview
Experience: This was the last round. thy asked mi above questions

College Name: NA

Skills evaluated in this interview

Banking Interview Questions & Answers

ICICI Bank user image Anonymous

posted on 24 May 2015

Interview Questionnaire 

4 Questions

  • Q1. I was asked about valuation ratios difference between various ratios. Then he went on to ask about Accounting concepts. This was a stress interview. And they were expecting quick answers with very clear co...
  • Q2. PSU banks have lower profits as compared to private banks give 3 most important reasons according to you which might be the reason (this was a hypothetical case scenario)
  • Q3. Tell something about ur self which is not written in the CV
  • Q4. Tell about a passion (they were expecting an answer which contains a smooth flow of information and you should be aware of the statistics in that particular field)

Interview Preparation Tips

Round: HR Interview
Experience: Got selected because I was relating my experience with the job profile. And knew financials well.

General Tips: Interview question was mainly to gauge my knowledge about insurance sector. I had little idea about the sector but a little research prior to the interview helps. When you are over with the gd/ hr interview and you think there is a good chance of clearing it then make sure u get some knowledge about sector and the company .Read about the sector well and the company as well.
Skills: Economics, Banking
College Name: NA

Interview Questions & Answers

IBM user image Anonymous

posted on 4 Feb 2015

Interview Preparation Tips

Round: Test
Experience: Online written test, consisting of quantitative and verbal ability.

Round: Group Discussion
Experience: General topic group discussion.

Round: Interview
Experience: Two-on-one interview. I was asked about projects and internships. Nothing particularly challenging. (They were planning on mass recruitment. Selected 26 students out of the ~40 students shortlisted for GD).

Skill Tips: CGPA above 7 is required.
Skills: Quantitative skills, Verbal skills
College Name: IIT KHARAGPUR

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
View all

Cs Prahallad And Co., Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.9

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

4.9

Job Security

4.9

Company culture

4.9

Promotions/Appraisal

5.0

Work Satisfaction

Explore 2 Reviews and Ratings
Compare Cs Prahallad And Co., with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview