Skip to main content

INFOSYS HR INTERVIEW QUESTIONS BE/BTECH 2020-21

INTERVIEW QUESTIONS







This year Infosys has combined the technical and HR interview into a common interview. It is the only interview and hence plays the crucial phase of Infosys placements. Following are the list of common questions asked in the HR interview of Infosys.

  1. Introduce yourself and tell us something apart from the Resume.

  2. Tell me about your family.
  3. What is your parents’ occupation? What is their job location?

  4. Do you live in a hostel or at home? OR Where do you live?

  5. Why have you applied at Infosys?

  6. Why do you want to work at our company?

  7. How do you get to know about our company?

  8. Tell us about the company and its positioning as compared to its competitors?

  9. Why do you think you are fit for our organization?

  10. What makes you stand out against all the other candidates?

  11. What technical/functional areas interest you most? What would you be passionate about working on? Why?

  12. Where would you like to work: software developing or software testing?

  13. Tell me how was your online test?

  14. If you had to wait for more than 5 hours for the interview, how would you feel?

  15. Where do you see yourself in 5/8-10 years from now?

  16. What are your strengths and weaknesses?

  17. Do you have any blind spots?  What are you doing to overcome them? 

  18. Which personal attributes do you have?

  19. Tell us about your hobbies. Which one is your favorite & why? What does it teach you?

  20. Who is your role model? What have you incorporated in your life from him/her?

  21. How would you describe your college life?

  22. Discuss the most stressful situation you have faced in college life.

  23. Which is the most recent project you have worked on (from resume)?

  24. Tell me one real time situation where you have emerged as a Leader?

  25. What Four things would make a good leader?

  26. What is your ultimate goal in life?

  27. What was the hardest experience you ever experienced?

  28. Are you a team player? Or Independent worker?

  29. Do you have an offer from any other organization?

  30. Where do you rate yourself (out of 10) as an engineer?

  31. Do you have any question for us?

Comments

Popular posts from this blog

UML - Use Case Diagram for Vending Machine

Hello Everyone! Here is an example of an Use case Diagram of a Vending Machine System. Problem Statement - A vending machine accepts coins for variety of products. The user selects the drinks from products available through selection panel. If the drink is available the price of the product is displayed. The user then deposits the coins depending on the price of the product. Coin collector collects coin after stipulated time the controller will compare the deposited coin with price. If amount deposited is less than price then error message will be displayed and all deposited coin will be dispensed by the coin dispenser else the drink will be dispensed by the product dispenser. Check out other UML (Unified Modeling Language) Diagrams - Class Diagram   Object Diagram   Sequence Diagram Collaboration Diagram   Activity Diagram   State Diagram   Component Diagram   Deployment Diagram  

UML - Component Diagram for Intranet development of a college/school

Hello Everyone! Here is an example of an Component Diagram for Intranet development. Problem Statement - An intranet is a computer network for sharing information, collaboration tools, operational systems, and other computing services only within an organization. An Internet Service Provider (ISP) provides LAN services, Application services, Email services, Domain and Web hosting services to an organization. The LAN service is provided through Switch to the terminals using Ethernet and other cables. The firewall feature is provided for web applications through Application services. All the students and staff members are provided with an official email account through email services. The college has its own domain and web hosting package provided by the ISP. All these services maintain a database which is stored on server. The database server and all the services are controlled and handled by the Administrator of the college. Check out other UML (Unified Modeling Language)...

Connecting GitHub with Jenkins - Step by step Tutorial

Hello Everyone, In this tutorial, we will learn how to create a New Item (Project), connect Git and GitHub to Jenkins and run the files from the Git repository on Jenkins. Jenkins is an open-source automation tool written in Java with plugins built for Continuous Integration purposes. Jenkins is used to build and test your software projects continuously making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. Facing trouble with the installation of Jenkins? Click here to know more. NOTE: It is mandatory to install plugins for Git and GitHub before connecting your GitHub repository to Jenkins. If you're using Jenkins for the first time, you need to install the plugins. To know more about these plugins, check out Git and GitHub Plugins for Jenkins . This tutorial demonstrates executing python code which requires separate plugins. Know more about Python Plugi...