Upload Button Icon Add office photos

Filter interviews by

Saiprathibha Group of Company Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Verbal-correction of sentences, 2 passages,antonyms,synonyms logical reasoning - all models are in r.s agarwal
Total Questions: 75

Round: Technical Interview
Experience: Regular hr questions like tell about ur self,hobbies,strengths,any team activities, about paper presented and questions on that, questions on leadership qualities, asked to talk about 'conservation of energy' for few minutes, asked abouts functions or events organised.

College Name: NIT WARANGAL

Scientist Interview Questions & Answers

TCS user image Anonymous

posted on 14 Jan 2015

Interview Preparation Tips

Round: Interview
Experience: Duration of interview - 40 minutesInterview panel: 6 scientist from DRDO and one professor from my departmentOnly technical questions were asked except my name (:P)
Question types can be divided into following categories:
1. Process
2. Theory behind the process (mechanism)
3. Practical application4. Alteration in parameters and their effect on process
Tips: if you are answering correctly then they will take you even deeper until you yield (cross questioning) :O but dont worry, speak only if you know the correct answer. be confident and honest (they will help you).

General Tips: Shortlisting on the basis of CGPA
College Name: IIT Roorkee

Interview Questionnaire 

5 Questions

  • Q1. Based on a situation
  • Q2. Write a .small C code
  • Ans. 

    A C code that prints out the elements of an array of strings.

    • Declare an array of strings

    • Use a loop to iterate through the array

    • Print out each element

  • Answered by AI
  • Q3. Simple puzzles about colored balls probability
  • Q4. What Is the probability of it raining today in Chennai?
  • Ans. 

    The probability of rain in Chennai today depends on various factors such as season, weather conditions, and location.

    • The probability can be estimated by analyzing the current weather patterns and historical data.

    • Factors such as humidity, temperature, and wind speed can affect the probability of rain.

    • Local weather forecasts and satellite imagery can also provide insights into the likelihood of rain.

    • The probability of ra...

  • Answered by AI
  • Q5. Find the probability that India will win the next Cricket World Cup
  • Ans. 

    It is impossible to accurately predict the probability of India winning the next Cricket World Cup.

    • Sports events are unpredictable and depend on various factors such as team performance, weather conditions, injuries, etc.

    • Past performance of the team and individual players can be considered, but it does not guarantee future success.

    • Other teams participating in the tournament also play a significant role in determining t...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Fifty people appeared for the test out of which sixteen were shortlisted.

Round: Case Study Interview
Experience: How would you promote a newly launched product? What marketing strategies would you use? They asked very simple case studies.

Round: Technical Interview
Experience: Test was based on data analysis, mainly maths. The interview was to see how much 'C' and probability you know.
Tips: Customized preparation is must along with good CGPA.

Skill Tips: Work details about your internship helps!
Skills: General knowledge, Technical knowledge
College Name: IIT Madras

Skills evaluated in this interview

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 Questionnaire 

6 Questions

  • Q1. It was followed by HR interview
  • Q2. Tell mi abt urself
  • Ans. 

    I am a software engineer with experience in developing web applications and expertise in programming languages such as Java and Python.

    • Proficient in Java and Python programming languages

    • Experience in developing web applications using frameworks such as Spring and Django

    • Familiarity with database technologies such as MySQL and MongoDB

    • Strong problem-solving and analytical skills

    • Ability to work in a team and collaborate ef

  • Answered by AI
  • Q3. Wat r ur strengths weaknesses
  • Q4. Wer do u see urself in next 5 years
  • Ans. 

    In the next 5 years, I see myself as a senior software engineer leading a team of developers.

    • I plan to continue learning and expanding my skillset

    • I hope to take on more leadership roles and mentor junior developers

    • I aim to contribute to the development of innovative software solutions

    • I plan to stay up-to-date with the latest technologies and industry trends

  • Answered by AI
  • Q5. Why should we hire u
  • Q6. How many years can u commit to us

Interview Preparation Tips

Round: Test
Experience: Be confident but dont be over confident
Tips: solve as many papers u can to crack dis test
Duration: 60 minutes
Total Questions: 50

Round: Group Discussion
Experience: Be clear about ur thots.
Tips: Try to speak more & relevant to the topic.
Duration: 15 minutes

Round: Technical Interview
Experience: being honest will help u clear this round
Tips: Be UP to DATE..

General Tips: Develop coding skills& logics also understand the basic math formulaes
College Name: TERNA ENGINEERING COLLEGE
Motivation: If u can Dream IT , U can Definetly Achieve IT.. :)
Funny Moments: :D

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 

18 Questions

  • Q1. How would your friends describe you?
  • Q2. Are you a low/medium or high risk taker? Substantiate your stand
  • Q3. Are you are loner?
  • Ans. 

    No, I am not a loner.

    • I enjoy working in a team and collaborating with others.

    • I believe that teamwork leads to better results.

    • I am comfortable working with people from diverse backgrounds.

    • I actively seek out opportunities to network and build relationships.

    • I am a good listener and value the opinions of others.

  • Answered by AI
  • Q4. Are you an imaginative person?
  • Q5. What are your strengths and weaknesses?
  • Q6. What is your family background and what have you learned from it?
  • Q7. What profile are you looking for?
  • Q8. Why are you fit for investment banking and not corporate finance?
  • Q9. Why do I want to get into ICIC and what do I know about it-
  • Q10. Why ICICI?
  • Q11. What do you know about the company?
  • Q12. What interesting projects are there on your CV? Explain one of them?
  • Q13. Discussed in and out on valuation specific questions related to a project like what projections for Sales, growth Rate, S&A, how to calculate cost of capital?
  • Q14. What approach did you take?
  • Q15. What lines of businesses did you value and how?
  • Q16. What are other competitors doing and how are they growing?
  • Q17. If you are the CEO of the same company what measures will you take to make the company grow to the next level?
  • Q18. What is the difference between bank and private investor?

Interview Preparation Tips

General Tips: Company was very impressed and wanted to make an offer but with a different profile in the interview itself but I was consistent on what I wanted and through strong negotiation finally convinced them that I am fit for Investment banking or global markets and hence that worked
Skills: Economics, Banking
College Name: NA

Interview Questions & Answers

IBM user image Anonymous

posted on 21 Jan 2015

Interview Preparation Tips

Round: Test
Experience: It’ll be tough. For CS and ECE people, it will be a smooth ride if you know algorithms and data structures.

Round: Interview
Experience: I was asked to solve puzzles. Mainly sorting algorithms; heap and bubble. To sum up, a lot of programming knowledge and algorithm analysis will be required.
Tips: Don’t fumble, it’s very important to be confident. If there’s something you don’t know, don’t hesitate to accept it.

College Name: IIT KHARAGPUR

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.8k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.4k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
Genpact Interview Questions
3.9
 • 2.9k Interviews
View all

Saiprathibha Group of Company Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Compare Saiprathibha Group of Company 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