Upload Button Icon Add office photos

Filter interviews by

Ayushi Computers Private Project Manager-IT/Software Interview Questions and Answers for Experienced

Updated 8 Jun 2022

Ayushi Computers Private Project Manager-IT/Software Interview Experiences for Experienced

1 interview found

Round 1 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Skills of IT fields and projects done Information
Round 3 - One-on-one 

(1 Question)

  • Q1. Overall knowledge and operation working

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for better management question

Interview questions from similar companies

Interview Questionnaire 

5 Questions

  • Q1. A brief about myself specially on professional front.
  • Q2. How do you handle pressure situation?
  • Q3. How is your communication plan?
  • Q4. What steps do you follow for a critical and large project?
  • Q5. What financial management tool do you use to manage project finance?
  • Ans. 

    We use a combination of Excel spreadsheets and project management software to manage project finance.

    • We use Excel spreadsheets to track expenses and budget

    • We use project management software to monitor project progress and financial status

    • We regularly update our financial reports and share them with stakeholders

    • We ensure that all expenses are properly documented and accounted for

    • We work closely with the finance team to ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

2 hrs probablity questions

Round 2 - Technical 

(2 Questions)

  • Q1. Find max element from array
  • Q2. Binary seeach algo
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

They give a standard application to develop in mvvm or clean architecture, don't forget to write unit tests

Round 2 - One-on-one 

(5 Questions)

  • Q1. Mostly discuss on the implementation of the project you've done in round one
  • Q2. Flutter is addon
  • Ans. 

    Flutter is a UI toolkit for building natively compiled applications for mobile, web, and desktop from a single codebase.

    • Flutter is an open-source framework developed by Google.

    • It uses the Dart programming language.

    • Flutter allows for hot reload, which enables developers to see changes instantly.

    • It provides a rich set of pre-built widgets for building user interfaces.

    • Flutter can be used to create apps for iOS, Android, w

  • Answered by AI
  • Q3. Explain about compose way of thinking.
  • Ans. 

    Compose way of thinking involves breaking down complex problems into smaller, manageable parts and then combining them to create a solution.

    • Break down a problem into smaller components

    • Solve each component individually

    • Combine the solutions to create a complete solution

    • Example: Using functions to break down a complex task into smaller functions and then combining them to achieve the desired outcome

  • Answered by AI
  • Q4. Difference between presenter and viewmodel
  • Q5. Explain about lifecycle of view
  • Ans. 

    Lifecycle of view refers to the stages a view goes through from creation to destruction in an application.

    • Creation: View is initialized and loaded into memory.

    • Layout: View is positioned and sized on the screen.

    • Display: View is rendered and displayed to the user.

    • Interaction: User interacts with the view through input events.

    • Destruction: View is removed from memory when no longer needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience, and practical questions and friendly talk.

Skills evaluated in this interview

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 

It was an easy test. Multiple choice questions bases on java

Round 3 - Technical 

(1 Question)

  • Q1. Asked oops concepts, collection, basic multithreading questions.
Round 4 - Technical 

(1 Question)

  • Q1. Asked some questions related to projects.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Dec 2023.

Round 1 - Technical 

(1 Question)

  • Q1. What is regression testing? what is retesting? Difference between the severity and priority some of the basic SQL queries
  • Ans. 

    Regression testing is the process of retesting modified software to ensure that the existing functionalities are not affected.

    • Regression testing is performed after making changes to the software to ensure that the existing functionalities still work as expected.

    • It helps in identifying any new bugs or issues introduced due to the changes made.

    • Regression testing can be done manually or using automated testing tools.

    • It is...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops, basic ,SQL ,ado
Round 2 - Coding Test 

Curd operation with SQL connectivity

I was interviewed in May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 145 minutes
Round difficulty - Hard

The assessment consisted of four components, a code debugging section (20 minutes), a coding test (70 minutes), a workstyles assessment (20 minutes), and a reasoning ability section (35 minutes). The coding environment is very user-friendly and easy to use.

  • Q1. Rotate matrix to the right

    You have been given a matrix ‘MAT’ of size 'N' * 'M' (where 'N' and 'M' denote the number of rows and columns respectively) and a positive integer...

  • Ans. Row-wise rotation

    This approach is based on the fact that when we rotate an array to the right by ‘K’ times, it shifts ‘K’ elements from the end to the beginning of the array while the remaining elements shift towards the end. The effective rotations in ‘MAT’ can be from 0 to 'M' - 1, as we get the same matrix ‘MAT’ after every 'M' rotations. So, we will set ‘K’ to ‘K’ % ‘M’.

     

    Now, we traverse ‘MAT’ row-wise. We wil...

  • Answered by CodingNinjas
  • Q2. Palindrome Partitioning

    You are given a string 'S'. Your task is to partition 'S' such that every substring of the partition is a palindrome. You need to return all possible palindrome part...

  • Ans. Backtracking with Dynamic Programming
    • We are iterating each time to check whether a given substring is palindrome or not and there we are iterating the same substring of string again and again. So there are overlapping subproblems.
    • So we use dynamic programming. To overcome the overlapping subproblems we can initially create the DP table which stores if substring[i….j] is palindrome or not. We maintain a boolean dp[N][N]...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

The online round was held on the Amazon Chime platform. The interviewer was very friendly and eager to know what I was thinking for every problem which he asked and always tried to make me speak up my thoughts and approach for solving the specific problem and understand my point too.

  • Q1. Form the Biggest Number

    Given an array “A” of positive integers. Your task is to make the largest number possible formed by concatenating each of the array elements exactly once.

    Example:
    Let's say t...
  • Ans. Brute Force approach

    The idea is to try out all the possible answers one by one and find out the largest one among all of them.

     

    To implement this approach, we will generate all the permutations of the first 'N' positive integers and concatenate all the array elements in the order of the permutation.

     

    For e.g. N=3 and array A = [ 3, 34, 7 ].

     

    Let's generate all the possible answers using the permutations. Le...

  • Answered by CodingNinjas
  • Q2. Rat In A Maze

    You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered by CodingNinjas
Round 3 - Face to Face 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

The online round was held on the Amazon Chime platform. The interviewer was very friendly and eager to know what I was thinking for every problem which he asked and always tried to make me speak up my thoughts and approach for solving the specific problem and understand my point too.

  • Q1.  Infix to Postfix

    You are given a string EXP which is a valid infix expression. Convert the given infix expression to postfix expression.

    Infix expression is of the form a op b. Where operator is is bet...

  • Ans. Stack

    We will scan the expression from left to write and if we encounter an operand we will append it to our answer. If we encounter an operator we will pop all the operators with equal or higher precedence and append them to our answer. And push the current operator. In the end, we will empty the stack.

    Order of precedence = [ ‘^’, ‘*’ and ‘/’, ‘+’ and ‘-’, ‘(’, ‘)’]

    Order of precedence [ link ]

    The algorithm will be-

    1. ANS ...
  • Answered by CodingNinjas
  • Q2. Level Order Traversal

    You have been given a Binary Tree of integers. You are supposed to return the level order traversal of the given tree.

    For example:
    For the given binary tree
    

    The level order tra...

  • Ans. Breadth First Search

    In the level order traversal, we will be using queue data structure which has the property FIRST IN FIRST OUT that’s why which nodes come first in current level the children of that node will also come first for the next level. So, we visit all the nodes one by one of the current level and push into the queue so that when we will be complete with the current level, then we can start exploring nodes ...

  • Answered by CodingNinjas
Round 4 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The online round was held on the Amazon Chime platform. The interviewer was very friendly and eager to know what I was thinking for every problem which he asked and always tried to make me speak up my thoughts and approach for solving the specific problem and understand my point too.

  • Q1. Fenwick Tree

    You are given an array/list 'ARR' of ‘N’ integers, and ‘Q’ queries. Each query can be of two types:

    Given 2 integers ‘L’,’R’ ( L>=0 and R<N ) find the sum of all the elements ...

  • Ans. Brute Force Approach
    • The key idea of the approach is to process the queries as asked. i.e If range sum is asked we do a range sum using a loop and update the values in the array if it is an update query.
    • Update will be a constant time operation but range sum can take time of order of ‘N’ .

     

    We can take the following approach:

     

    • For queries of type 1, we take a loop and iterate from ‘L’ to ‘R’ to find the sum and p...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 7 CGPAAmazon interview preparation:Topics to prepare for the interview - Data Structures, OOPs, Competitive programming, System Design, Core subjects, AlgorithmsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Leetcode medium level questions properly
Tip 2 : Low-level and high-level system design is very important
Tip 3 : Always make notes of core subjects like DBMS, OS, CN beforehand to be able to revise before interviews

Application resume tips for other job seekers

Tip 1 : Write the technology about which you know in detail and can discuss pros and cons of using it.
Tip 2 : Prepare your resume well and add 2 good projects for project discussion with good readme file on github.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

IBM user image shahanaza. umachagi

posted on 16 May 2021

Interview Questionnaire 

14 Questions

  • Q1. C programming vhdl mat ect
  • Q2. What is c? How it's function work
  • Ans. 

    C is a programming language used for system programming, embedded systems, and game development.

    • C was developed by Dennis Ritchie at Bell Labs in 1972.

    • It is a compiled language, meaning that the code is translated into machine-readable instructions before execution.

    • C is known for its efficiency and low-level control over hardware, making it a popular choice for operating systems and device drivers.

    • C functions are defin...

  • Answered by AI
  • Q3. C data type and some eg
  • Q4. Y use header file gv one eg
  • Ans. 

    Header files are used to declare functions, variables, and constants that are used in multiple source files.

    • Header files allow for modular programming and code reuse.

    • They help to avoid code duplication and reduce errors.

    • Examples of header files include stdio.h, math.h, and string.h.

    • Header files are included using the #include preprocessor directive.

  • Answered by AI
  • Q5. What is microprocessor and how its work
  • Ans. 

    A microprocessor is a small computer chip that performs arithmetic and logic operations.

    • Microprocessors are the heart of modern computers and electronic devices.

    • They are made up of millions of transistors that switch on and off to perform calculations.

    • Microprocessors fetch instructions from memory, decode them, and execute them.

    • Examples of microprocessors include Intel's Pentium and AMD's Ryzen processors.

    • Microprocesso...

  • Answered by AI
  • Q6. What is micro control and how its work
  • Ans. 

    Micro control is a type of control system that uses microprocessors to control various devices and processes.

    • Micro control systems are used in various applications such as home automation, industrial automation, and robotics.

    • They are designed to be compact and efficient, with low power consumption and high processing power.

    • Micro control systems can be programmed using various programming languages such as C, C++, and a...

  • Answered by AI
  • Q7. Embedded systems and how its work
  • Ans. 

    Embedded systems are computer systems designed to perform specific tasks within a larger system.

    • Embedded systems are often used in devices such as medical equipment, automobiles, and home appliances.

    • They typically have limited processing power and memory compared to general-purpose computers.

    • They are designed to be reliable and efficient, often running on low-power processors.

    • Programming languages commonly used for emb...

  • Answered by AI
  • Q8. Embedded systems applications
  • Q9. What is network and how many type are ther?
  • Ans. 

    A network is a group of interconnected devices that communicate with each other. There are three types of networks: LAN, WAN, and MAN.

    • A LAN (Local Area Network) is a network that covers a small area, like a home or office.

    • A WAN (Wide Area Network) is a network that covers a large area, like a city or country.

    • A MAN (Metropolitan Area Network) is a network that covers a larger area than a LAN but smaller than a WAN, like...

  • Answered by AI
  • Q10. Lan,wan,men work
  • Q11. What is modulation
  • Ans. 

    Modulation is the process of varying a signal's characteristics to transmit information.

    • Modulation is used in various communication systems to transmit information over a distance.

    • It involves varying one or more of the signal's properties such as amplitude, frequency, or phase.

    • Examples of modulation techniques include amplitude modulation (AM), frequency modulation (FM), and phase modulation (PM).

  • Answered by AI
  • Q12. What is amplitude
  • Ans. 

    Amplitude is the measure of the height of a wave from its resting position.

    • Amplitude is the maximum displacement of a wave from its equilibrium position.

    • It is measured in units of length, such as meters or feet.

    • In sound waves, amplitude determines the loudness of the sound.

    • In light waves, amplitude determines the brightness of the light.

    • Amplitude can be positive or negative, depending on the direction of the displaceme

  • Answered by AI
  • Q13. What is use
  • Ans. 

    Use is the purpose or function of something.

    • Use defines the intended purpose of a product or service.

    • It helps users understand how to utilize the product effectively.

    • Use can also refer to the act of employing something for a specific task.

    • For example, the use of a hammer is to drive nails into wood.

  • Answered by AI
  • Q14. What is amplification
  • Ans. 

    Amplification is the process of increasing the magnitude of a signal.

    • Amplification is commonly used in audio systems to increase the volume of sound.

    • It can also refer to the process of increasing the power of an electrical signal.

    • Amplification can be achieved through the use of amplifiers or other electronic devices.

    • In genetics, amplification refers to the process of making multiple copies of a specific DNA sequence.

    • Am...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Difference between inner join and outer join
  • Ans. 

    Inner join returns only matching rows from both tables while outer join returns all rows from one table and matching rows from the other.

    • Inner join is used to combine data from two tables based on a common column.

    • Outer join is used to combine data from two tables where one table may not have matching rows in the other.

    • There are three types of outer join: left outer join, right outer join, and full outer join.

    • Left outer...

  • Answered by AI
  • Q2. What is abstract class
  • Ans. 

    An abstract class is a class that cannot be instantiated and is used as a base class for other classes.

    • An abstract class can have abstract and non-abstract methods.

    • Abstract methods have no implementation and must be implemented by the derived class.

    • An abstract class can have constructors and fields.

    • An abstract class can be used to define a common interface for a group of related classes.

    • Example: Animal is an abstract c...

  • Answered by AI
  • Q3. What is normalization and difference between 3NF and BCNF
  • Ans. 

    Normalization is a process of organizing data in a database to reduce redundancy and dependency.

    • Normalization is used to eliminate data redundancy and dependency.

    • 3NF (Third Normal Form) eliminates transitive dependencies while BCNF (Boyce-Codd Normal Form) eliminates partial dependencies.

    • 3NF is a subset of BCNF.

    • Normalization helps in improving data consistency and integrity.

    • Normalization can also improve database perfo

  • Answered by AI

Skills evaluated in this interview

Ayushi Computers Private Interview FAQs

How many rounds are there in Ayushi Computers Private Project Manager-IT/Software interview for experienced candidates?
Ayushi Computers Private interview process for experienced candidates usually has 3 rounds. The most common rounds in the Ayushi Computers Private interview process for experienced candidates are One-on-one Round, Group Discussion and Technical.
What are the top questions asked in Ayushi Computers Private Project Manager-IT/Software interview for experienced candidates?

Some of the top questions asked at the Ayushi Computers Private Project Manager-IT/Software interview for experienced candidates -

  1. Skills of IT fields and projects done Informat...read more
  2. Overall knowledge and operation work...read more

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.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k 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.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

Ayushi Computers Private Project Manager-IT/Software Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

4.0

Salary & Benefits

3.0

Job Security

3.0

Company culture

3.0

Promotions/Appraisal

2.0

Work Satisfaction

Explore 1 Review and Rating
Computer Operator
4 salaries
unlock blur

₹1 L/yr - ₹1.1 L/yr

Project Manager
3 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Depot Supervisor
3 salaries
unlock blur

₹1.5 L/yr - ₹2.5 L/yr

Explore more salaries
Compare Ayushi Computers Private with

TCS

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

Infosys

3.7
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