Upload Button Icon Add office photos

Filter interviews by

Valley Intern Interview Questions and Answers

Updated 8 Dec 2022

Valley Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image temidayo akinyemi

posted on 8 Dec 2022

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 3 - Technical 

(1 Question)

  • Q1. Knowledge of cyber security

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and relaxed. It'll help to pass both stages. Interviewers were helpful

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via campus placement at MAEER's MIT College of Engineering, Pune and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was successful, covering various topics such as ratios and proportions, percentages, blood relations, boat and stream problems, highest common factor (HCF) and least common multiple (LCM), volume and surface area, time and work, as well as questions related to profit and loss, and speed, distance, and time.

Round 2 - Coding Test 

In the coding test 1 question for coding and another 2 for debugging were asked.

Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages like Java, Python, and C++

  • Answered by AI
  • Q2. What do you mean by polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in OOP allows a child class to override a method from its parent class, exhibiting polymo

  • Answered by AI
  • Q3. A puzzle was asked. Probably do all the puzzles from geeks for geeks.

Interview Preparation Tips

Interview preparation tips for other job seekers - For interviews do the basic computer concepts. Do practice projects as project related questions might be asked. Oops concepts, sql, Dbms, OS, Cn.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly on numerical there will be 5 sets in round 1 aptitude and communication general English questions

Round 2 - Coding Test 

Coding questions are on arrays and lists

Round 3 - Technical 

(2 Questions)

  • Q1. What is agile?and explain it
  • Ans. 

    Agile is a project management methodology that emphasizes flexibility, collaboration, and continuous improvement.

    • Agile involves breaking down projects into smaller tasks called sprints

    • It prioritizes customer feedback and adapting to changes quickly

    • Common frameworks include Scrum, Kanban, and Lean

    • Daily stand-up meetings and retrospectives are common practices in Agile

  • Answered by AI
  • Q2. Mostly on software engineer questions

Intern Interview Questions & Answers

Hexaware Technologies user image Rubikak Dr.NGP Itech

posted on 9 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. Mission vision of the company
  • Q3. Agrement and relocation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. HR Round was Easy one

Interview Preparation Tips

Interview preparation tips for other job seekers - Question on the resume and oops fundamentals.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Graphic Era University, Dehradun and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 Questions of Medium leetcode difficulty.

Round 2 - Group Discussion 

The topic was given to 8-10 people and starting from a random person the GD starts.

Round 3 - Technical 

(2 Questions)

  • Q1. SQL query to get 3rd largest element.
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to get 3rd largest element.

    • Use ORDER BY clause to sort the elements in descending order.

    • Use LIMIT 2,1 to skip the first two largest elements and get the 3rd largest element.

  • Answered by AI
  • Q2. Programme to swap two objects (deep copy).
  • Ans. 

    Program to swap two objects (deep copy)

    • Create a temporary object to store one of the objects

    • Copy the values of the second object into the first object

    • Copy the values from the temporary object into the second object

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions

Interview Preparation Tips

Topics to prepare for Genpact Intern interview:
  • DBMS
  • SQL
  • Programming
  • OS
Interview preparation tips for other job seekers - Read basics of OS, DBMS (especially SQL) and little bit of Leetcode.

Skills evaluated in this interview

Intern Interview Questions & Answers

Wipro user image Anonymous

posted on 27 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response

I applied via Job Portal

Round 1 - Aptitude Test 

LR, DI, Analytics, Puzzles, Graph Problems

Round 2 - Coding Test 

Trees, Linked List, Array

Intern Interview Questions & Answers

Capgemini user image Rewa Parashar

posted on 30 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Easy aptitude test. Simple questions and easy to answer.

Round 3 - Technical 

(2 Questions)

  • Q1. Implementing the logic for Bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.

    • Start by comparing the first two elements of the array and swap them if necessary.

    • Continue comparing adjacent elements and swapping them until the array is sorted.

    • Repeat this process for each element in the array until no more swaps are needed.

  • Answered by AI
  • Q2. Software development lifecycle and its uses
  • Ans. 

    Software development lifecycle is a process used to design, develop, and test software applications.

    • It includes phases like planning, design, development, testing, deployment, and maintenance.

    • Each phase has specific goals and deliverables to ensure the quality and success of the software.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

    • SDLC helps in managing the project effectively, reducing risks, and deli

  • Answered by AI

Skills evaluated in this interview

Intern Interview Questions & Answers

IBM user image Anonymous

posted on 13 Feb 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via AmbitionBox and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Technical and hr
Round 2 - Coding Test 

Code to automate the application

Round 3 - One-on-one 

(1 Question)

  • Q1. Introduction and the basics
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is revenue recognition
  • Ans. 

    Revenue recognition is the process of recording revenue in a company's financial statements when it is earned.

    • Revenue recognition is important for accurately reflecting a company's financial performance.

    • It involves determining when revenue is earned and when it can be recognized on the income statement.

    • Revenue is typically recognized when goods are delivered or services are performed, regardless of when payment is rece...

  • Answered by AI

Valley Interview FAQs

How many rounds are there in Valley Intern interview?
Valley interview process usually has 3 rounds. The most common rounds in the Valley interview process are Resume Shortlist, HR and Technical.

Tell us how to improve this page.

Valley Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Intern Interview Questions from Similar Companies

TCS Intern Interview Questions
3.7
 • 35 Interviews
Infosys Intern Interview Questions
3.6
 • 22 Interviews
IBM Intern Interview Questions
4.0
 • 14 Interviews
Wipro Intern Interview Questions
3.7
 • 11 Interviews
HCLTech Intern Interview Questions
3.5
 • 7 Interviews
View all
Compare Valley with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview