Upload Button Icon Add office photos

Filter interviews by

Yalamanchili Engineering IT Executive Interview Questions and Answers

Updated 20 Apr 2024

Yalamanchili Engineering IT Executive Interview Experiences

1 interview found

IT Executive Interview Questions & Answers

user image Jyosthna

posted on 20 Apr 2024

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Personal background
Round 2 - One-on-one 

(1 Question)

  • Q1. Personal details and some of cyber security awareness question

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have another opportunity then don't join here .if you lost all hopes in your carrier then only join here

Interview questions from similar companies

I was interviewed in Jun 2017.

Interview Questionnaire 

1 Question

  • Q1. Questions related to core java, advanced java, programs,

Interview Preparation Tips

Round: Technical + HR Interview
Experience: Previous work experience scenarios based questions

I applied via Job lever and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Easy leetcode code 2 questions , HTML5 css javascript simple screen design

Round 2 - One-on-one 

(1 Question)

  • Q1. Oop, Simple coding javascript, react basic, sql basic

Interview Preparation Tips

Interview preparation tips for other job seekers - Take it easy and go with confidence which matters most

I applied via Job Fair and was interviewed before Feb 2021. There were 5 interview rounds.

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 

What is aptitude test?

Round 3 - Group Discussion 

Online study and off-line which one is better?

Round 4 - Case Study 

Someone not interested in assignments.

Round 5 - One-on-one 

(2 Questions)

  • Q1. Why you choice to join with us
  • Ans. Because write now Indias largest and most trusted education system is BYJU'S. thats why not one me everyone want to join his/her children in BYJU'S.
  • Answered Anonymously
  • Q2. What is more important to you education or money?
  • Ans. Obviously is education because educated person make money so easily and how to hold the mobey they know very well
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand what they needs to us

I applied via LinkedIn and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic questions of the tech stack that I applied for.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the technologies you apply and just be confident because they want hire someone who is confident know at least basics of the tech stack.

Interview Preparation Tips

Round: Test
Experience: more of experience gaining and learning new tricks of codding a program.
Tips: must focus on bugging and debugging the program.
Duration: 60 mins minutes

Skills: Coding Skills,
College Name: Invertis university
Motivation: bosch is a multinational company stating its rank worldwide.so anyone would to work with outstanding company.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about your internship, B.Tech project(BTP), CV
  • Q2. Implement LRU cache.
  • Ans. 

    Implement LRU cache

    • LRU stands for Least Recently Used

    • It is a cache eviction policy that removes the least recently used item

    • It can be implemented using a doubly linked list and a hash map

    • Newly accessed items are moved to the front of the list

    • When the cache is full, the item at the end of the list is removed

  • Answered by AI
  • Q3. What is virtual memory? Will we need virtual memory even if we have infinite amount of RAM?
  • Ans. 

    Virtual memory is a memory management technique that allows a computer to use more memory than it physically has.

    • Virtual memory uses a combination of RAM and hard disk space to store data.

    • It allows programs to use more memory than is physically available.

    • If a program tries to access memory that is not currently in RAM, it will be swapped in from the hard disk.

    • Even if we had infinite RAM, virtual memory would still be n...

  • Answered by AI
  • Q4. Given an array, Find out maximum length of subarray where max of subarray <= 2*min of subarray
  • Ans. 

    Find maximum length of subarray where max <= 2*min.

    • Iterate through array and keep track of max and min values.

    • Update max length when condition is met.

    • Time complexity: O(n)

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: No CPI cut off and It was open for all departments.

Round: Test
Experience: In muliple choice question Mostly questions were base on maths, probability, c programs, algorithms, Systems. If you are prepared then Questions were not that much tough. Keep strong concepts of Operating systems. For subjective part, Some problems were from maths proofs, some were from probability, some were from algo. We had to write algorithms. etc
Duration: 180 minutes

Round: Problem Statement
Experience: Questions were doable.

Round: Interview
Experience: Everyone was cool, They made me feel comfortable and then started asking questions.
Tips: If you have good rank in online coding competition, do mention it in CV.Most of the students think that GS asks only probability-puzzles. They did not asked me any question on probability or puzzle. Everything they asked was based on Algorithms problems and Operating system. I think it depends on team for which they are hiring. Most important point is don’t lose hope because you have low CPI or you are not good at something. Keep Operating systems fundamental concepts strong.

General Tips: We should balance in Placement and Compititive online coding. Keep in mind Placements and Compititive online coding are some what different things. Keep on improving our mistakes on daily basis. I would strongly suggest you to do introspection daily it will help you to find out your weaknesses and strong points, where we are going wrong etc. There are two thing on which we shoud focus.1. Preparation (I have told everything requered for preparation).2. Get output of all hard work. How to keep our mind on 100% output while the actual exam(placement).For this, I used to go for physical exercise daily in the morning and medidate for 20-30 minutes. Along with exercise i used to do Sudarshan Kriya(Art of Living). Meditation has lot of power :).
Skill Tips: Keep your OS fundamentals strong. To improve codgin skills practice as many problems as you can. Regularly participate in online coding competitions it really helps to solve or approach any new problem. Many time instead of correct answer the approach to solve the problems is very important. How you think, How you approach the problem is checked in interview.
Skills: Coding Skills, Operating Systems , Problem solving skills
College Name: IIT Guwahati
Motivation: The name GS itself enogh for motivation.

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions on DSA and OS.

  • Q1. 

    LRU Cache Design Problem Statement

    Design and implement a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    • get(key) - Retrieve the value associated with the...
  • Ans. 

    Design and implement a Least Recently Used (LRU) cache data structure that supports get and put operations with a specified capacity.

    • Implement a doubly linked list to keep track of the order of keys based on their usage.

    • Use a hashmap to store key-value pairs for quick access and updates.

    • When a key is accessed or updated, move it to the front of the linked list to mark it as the most recently used.

    • When the cache reaches...

  • Answered by AI
  • Q2. 

    Maximum of All Subarrays of Size K

    Given an array of non-negative integers and an integer K representing the length of a subarray, your task is to determine the maximum elements for each subarray of size ...

  • Ans. 

    Find the maximum elements for each subarray of size K in a given array.

    • Iterate through the array and maintain a deque to store the indices of elements in decreasing order.

    • Pop elements from the deque that are out of the current window.

    • Keep track of the maximum element in each subarray of size K.

    • Return the maximum elements for each subarray.

  • Answered by AI
  • Q3. What is virtual memory?
  • Ans. 

    Virtual memory is a memory management technique that allows a computer to compensate for physical memory shortages by temporarily transferring data from RAM to disk storage.

    • Virtual memory allows programs to use more memory than is physically available on the system.

    • It helps in multitasking by allowing multiple programs to run simultaneously without running out of memory.

    • Virtual memory uses a combination of RAM and disk...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAGoldman Sachs interview preparation:Topics to prepare for the interview - Coding Skills, Operating Systems , Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Consultant Interview Questions & Answers

ZS user image Deepak Chembath

posted on 24 Dec 2015

I applied via Walk-in

Interview Questionnaire 

2 Questions

  • Q1. The interview started with the case. The case was primarily around understanding and making inferences from exhibits
  • Q2. I was required to make a presentation with recommendations based on case that was given.

Interview Preparation Tips

Round: Case Study Interview
Experience: So the case started with an exhibit that showed compensation figures for salesmen by geography for a Logistics company (My core domain pre-ISB) and He asked me to draw inferences. First of all he asked me if I see any issue by just looking at the data. I gave a warning that I’m going to make some statements which ideally need to be by further supporting data. I noticed that the compensation was good in states like Massachusetts and New York but not so good in states like Pennsylvania. So he asked me to give probable reasons. I said things like targets vs. geography misalignment, motivation issues, training issues and few other issues that I don’t think I can ever recollect. So he asked me what other data I want. I asked for targets vs. geography data. He showed me some data and I noticed that it was pretty much same everywhere. I said that I can make a broad inference that sales targets were not set properly. To confirm I asked for employee satisfaction data. He didn’t have it. He then gave me a non-standardized balance sheet which had all the information messed up or as ratios etc and asked me to calculate the Net Profit. I very quickly calculated the answer and spurted out a number. The moment I told it I realized that I had messed up the numbers. I announced this myself and asked that I be allowed to do it again. He just smiled and I redid it. At this point I thought that I'm out of the process but I sure did come up with the right answer☺.
Frankly I didn’t get any feeling like I cracked the case etc. But I went with an attitude that ZS would not find me the consulting types (Based on a previously unsuccessful consulting interview). So I was totally chill and nonchalant about the whole thing.
I was trying to do everything fast because somehow I wanted to get done with this. That is not the right way to go about things.
Tips: They were not silly enough to reject me just because I made a calculation error. So the idea is to chill and be aware of what’s going on.

Round: Case Study Interview
Experience: They actually used a timer and ensured that I get just exactly 45 minutes☺. I used the SWOT, 4P’s, 3C’s and some fundae I learnt in the Advertising and Consumer Behavior courses and peppered in some prior knowledge I had on cable TV services in the US.
I was given a white sheet and markers. I drew up a SWOT on one side and then put up a set of recommendations on the other in crisp points. Then I explained how I analyzed the case in a structured fashion. There were lots of questions once I presented but I always went back to the structure used and so it went well.
Tips: After a not so stellar first round I went to the quad and slept. So I was really fresh for this interview. I think a fresh mind really helps. So as far as possible try to get enough rest between interviews.

Skills: Case Solving Ability, Case Analysis
College Name: Indian School Of Business (ISB)

Consultant Interview Questions & Answers

ZS user image Garima Mandiratta

posted on 10 Dec 2015

I applied via Referral

Interview Questionnaire 

2 Questions

  • Q1. First was the structured case round which was a pharma related case where a company was launching a new drug in the market; The problem had various facets of sales and marketing and basically was a New Pro...
  • Q2. Second round was an unstructured case round followed by a presentation: The case was related to a chain of movie theatres (cineplexes) that wanted to expand or increase its revenue. You are asked to think ...

Interview Preparation Tips

Round: Case Study Interview
Experience: The focus is more on structured approach and your analytical skills (i.e. the way you interpret the given data). PI was the last round and taken by the Principal/senior person. It is an equally important round and aims to check whether you are the right fit for the role or not. So, questions will be asked to check your situation handling skills and leadership capabilities. .


Tips: Round 1: Be hands on. Do the calculations as for market sizing they are looking for a number. For other questions also, listing down your ideas would be a good idea. The questions are not very hard. They want you to think clearly and logically, with some data analysis.
Practicing a few market sizing/new product launch/market entry/ pricing cases was helpful. Knowing those frameworks comes a little handy.

Round 2: Allocate some time to read all the material and the remaining to make the presentation. (It was not like the usual cases we get in class. But a real world scenario with the different reports, survey results and so on.) Create a clear structure for your presentation. During the presentation, defend your point with good logic. I made an incorrect recommendation as I had missed some piece of information, but then corrected myself there. So, I feel its better to course correct rather than sticking to the wrong point.

Skills: Ability To Handle Situations, Analytical Skills, LOGICAL THINKING ABILITIES, team leader, Team Player
College Name: Indian School Of Business (ISB)

Yalamanchili Engineering Interview FAQs

How many rounds are there in Yalamanchili Engineering IT Executive interview?
Yalamanchili Engineering interview process usually has 2 rounds. The most common rounds in the Yalamanchili Engineering interview process are HR and One-on-one Round.

Tell us how to improve this page.

Yalamanchili Engineering IT Executive Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Asian Paints Interview Questions
4.0
 • 644 Interviews
Vodafone Idea Interview Questions
4.1
 • 553 Interviews
EPAM Systems Interview Questions
3.7
 • 534 Interviews
ZS Interview Questions
3.4
 • 449 Interviews
Tata Projects Interview Questions
4.2
 • 426 Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
Synechron Interview Questions
3.5
 • 362 Interviews
Hero MotoCorp Interview Questions
4.1
 • 334 Interviews
View all
Software Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Administrator
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Finance Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Finance Executive Trainee
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IT Security Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Yalamanchili Engineering with

BYJU'S

3.1
Compare

Vodafone Idea

4.1
Compare

Tata Projects

4.2
Compare

Indiamart Intermesh

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