Upload Button Icon Add office photos

Filter interviews by

Imaginnovate Interview Questions, Process, and Tips

Updated 2 Apr 2024

Top Imaginnovate Interview Questions and Answers

View all 20 questions

Imaginnovate Interview Experiences

Popular Designations

6 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

JavaScript coding test

Round 2 - Technical 

(1 Question)

  • Q1. Js aray and object related problem solving task
Round 3 - Behavioral 

(1 Question)

  • Q1. Some technical as well as how you can manage a team

Senior Software Engineer 1 Interview Questions asked at other Companies

Q1. Architecture Design for an e2e system that takes input from user to the response shown to the user
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

They will give a code to solve

Round 2 - HR 

(1 Question)

  • Q1. What you want to join in this company

Interview Preparation Tips

Interview preparation tips for other job seekers - Best company for freshers

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2023. There were 2 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 - Technical 

(20 Questions)

  • Q1. First they ask self introduction
  • Q2. Explain about the college projects which I had done
  • Q3. My branch is ece, they ask did you done a project related to computer science
  • Q4. How can we start the program in c language?
  • Ans. 

    To start a program in C language, we need to write a main function and compile the code.

    • Write the main function with the code to be executed

    • Compile the code using a C compiler

    • Execute the compiled program

    • Optionally, pass command line arguments to the program

  • Answered by AI
  • Q5. Does any libraries are required to perform c programming and what are they?
  • Ans. 

    Yes, some libraries are required for C programming such as stdio.h, math.h, string.h, etc.

    • stdio.h library is used for input/output operations

    • math.h library is used for mathematical operations

    • string.h library is used for string manipulation operations

  • Answered by AI
  • Q6. What is printf() and scanf()?
  • Ans. 

    printf() and scanf() are functions in the C programming language used for input and output operations.

    • printf() is used to print formatted output to the console.

    • scanf() is used to read formatted input from the console.

    • Both functions are part of the standard input/output library in C.

    • printf() uses format specifiers to control the output format.

    • scanf() uses format specifiers to match and extract input values.

  • Answered by AI
  • Q7. What is meant by access modifiers?
  • Ans. 

    Access modifiers determine the visibility and accessibility of classes, methods, and variables in object-oriented programming.

    • Access modifiers are keywords used in programming languages like Java, C++, and C#.

    • They control the visibility and accessibility of classes, methods, and variables.

    • Common access modifiers include public, private, protected, and default (package-private).

    • Public access allows unrestricted access f...

  • Answered by AI
  • Q8. Write a code for the prime number?
  • Ans. 

    A prime number is a number greater than 1 that is divisible only by 1 and itself.

    • Start with a number greater than 1

    • Check if the number is divisible by any number from 2 to its square root

    • If it is divisible by any number, it is not prime

    • If it is not divisible by any number, it is prime

  • Answered by AI
  • Q9. Difference between call by value and call by reference?
  • Ans. 

    Call by value passes a copy of the value, while call by reference passes a reference to the original value.

    • Call by value creates a new copy of the value, so changes made inside the function do not affect the original value.

    • Call by reference passes a reference to the original value, so changes made inside the function affect the original value.

    • In call by value, the function works with a local copy of the variable.

    • In cal...

  • Answered by AI
  • Q10. What is meant by structure?
  • Ans. 

    Structure refers to the arrangement or organization of elements in a system or program.

    • Structure defines the layout and relationships between different components.

    • In software development, structure can refer to the organization of code, such as using classes, functions, and modules.

    • Structures can also be data types that group related data together, like structs in C or classes in object-oriented programming.

    • Structures ...

  • Answered by AI
  • Q11. Range of the float data type?
  • Ans. 

    The float data type represents a single-precision 32-bit floating-point number.

    • Range: approximately ±1.4e-45 to ±3.4e+38

    • Precision: 6-7 decimal digits

    • Smallest positive value: 1.17549435e-38

    • Largest positive value: 3.40282347e+38

  • Answered by AI
  • Q12. What are the data types in c language?
  • Ans. 

    C language has basic data types like int, char, float, double, void, and derived data types like arrays, pointers, and structures.

    • Basic data types include int, char, float, double, and void

    • Derived data types include arrays, pointers, and structures

    • Arrays can be of any basic data type

    • Pointers are used to store memory addresses

    • Structures are used to group related data of different data types

  • Answered by AI
  • Q13. Explain the oops concepts
  • Ans. 

    Object-oriented programming concepts that help in organizing and structuring code.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.

    • Polymorphism: Ability of objects to take on many forms, allowing methods to be overridden.

    • Abstraction: Hiding complex implementation details and providing simplified interfaces.

    • Encaps...

  • Answered by AI
  • Q14. What is meant by data structures and what are they? Explain.
  • Ans. 

    Data structures are a way of organizing and storing data in a computer so that it can be accessed and manipulated efficiently.

    • Data structures are used to store and organize data in a computer.

    • They provide a way to efficiently access and manipulate the stored data.

    • Examples of data structures include arrays, linked lists, stacks, queues, trees, and graphs.

  • Answered by AI
  • Q15. How we link the external files of css and js to the html?
  • Ans. 

    External CSS and JS files can be linked to HTML using the and

Answered by AI
  • Q16. Why do we use css to the html web pages?
  • Ans. 

    CSS is used to style and format HTML web pages, making them visually appealing and user-friendly.

    • CSS allows for separation of style and content, making it easier to maintain and update web pages.

    • It provides a wide range of styling options, such as changing colors, fonts, layouts, and animations.

    • CSS enables responsive design, allowing web pages to adapt to different screen sizes and devices.

    • It improves accessibility by ...

  • Answered by AI
  • Q17. Explain any design pattern
  • Ans. 

    The Observer design pattern defines a one-to-many dependency between objects, so that when one object changes state, all its dependents are notified and updated automatically.

    • The Observer pattern is used to establish communication between objects in a loosely coupled manner.

    • It allows multiple observers (dependents) to be notified when the state of a subject (observable) changes.

    • The subject maintains a list of observers...

  • Answered by AI
  • Q18. What is meant by algorithm?
  • Ans. 

    An algorithm is a step-by-step procedure or set of rules for solving a problem or accomplishing a task.

    • An algorithm is a well-defined computational procedure.

    • It consists of a sequence of instructions that are executed in a specific order.

    • Algorithms can be represented using pseudocode, flowcharts, or programming languages.

    • They are used in various fields like computer science, mathematics, and engineering.

    • Examples of alg...

  • Answered by AI
  • Q19. How much you are confident about Java programming?
  • Ans. 

    I am very confident in Java programming.

    • I have completed multiple projects using Java.

    • I have experience with various Java frameworks such as Spring and Hibernate.

    • I am familiar with Java design patterns and best practices.

    • I have also contributed to open source Java projects.

    • I am constantly learning and improving my Java skills.

  • Answered by AI
  • Q20. Are you willing to relocate?
  • Interview Preparation Tips

    Topics to prepare for Imaginnovate Software Developer Intern interview:
    • C language
    • Python
    • Java
    • Data Structures
    • HTML
    • CSS
    • Design Patterns
    • OOPS
    Interview preparation tips for other job seekers - The interview level was hard when compared to other Companies interviews, so be prepared with all basics and if you are really have knowledge on that skill then only mentioned it in resume otherwise don't mentioned them. They will ask most probably on your resume mentioned technologies.

    Skills evaluated in this interview

    Top Imaginnovate Software Developer Intern Interview Questions and Answers

    Q1. How we link the external files of css and js to the html?
    View answer (2)

    Software Developer Intern Interview Questions asked at other Companies

    Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
    View answer (8)

    Java Developer Interview Questions & Answers

    user image Shubham Agnihotri

    posted on 20 Dec 2022

    I applied via Approached by Company and was interviewed in Nov 2022. There were 2 interview rounds.

    Round 1 - Resume Shortlist 
    Pro Tip by AmbitionBox:
    Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
    View all tips
    Round 2 - One-on-one 

    (2 Questions)

    • Q1. Tell me about inheritance just
    • Ans. 

      Inheritance is a mechanism in OOP where a new class is derived from an existing class.

      • It allows the new class to inherit the properties and methods of the existing class.

      • The existing class is called the superclass or parent class, while the new class is called the subclass or child class.

      • The subclass can add new properties and methods or override the existing ones.

      • It promotes code reuse and makes the code more organize...

    • Answered by AI
    • Q2. All the oops concept details

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident and answer as many questions as you can and never feel discomfort

    Java Developer Interview Questions asked at other Companies

    Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
    View answer (4)

    Imaginnovate interview questions for popular designations

     Java Developer

     (3)

     Junior Software Developer

     (1)

     Senior Software Engineer 1

     (1)

     Software Developer Intern

     (1)

    I applied via Walk-in and was interviewed in Jun 2022. There were 3 interview rounds.

    Round 1 - Aptitude Test 

    I have gone throw the paper first I'll get tensed slowly slowly I have done all the problems

    Round 2 - Coding Test 

    I have gone throw all basic programs related to C, Java. They asked me to write 2 programs or flowcharts. 1. Palindrome 2 . Second highest element in the given array.

    Round 3 - HR 

    (1 Question)

    • Q1. Any experience? What technologies you have worked on? They explain the company policies, terms and conditions. They explain me about their company new technologies.

    Interview Preparation Tips

    Topics to prepare for Imaginnovate Junior Software Developer interview:
    • C,Java basics, aptitude and reasoning
    Interview preparation tips for other job seekers - Be confident.
    Never get tense.
    Listen carefully what they are asking based on that you have to give the proper explanation.
    Try to give some live examples.
    Don't talk in between the interviewer is talking.
    If you confident about the answer then say it otherwise try to speak a few words about that topic.
    Don't tell stories or blaa blaa!!!
    Good Communication skills.

    Junior Software Developer Interview Questions asked at other Companies

    Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
    View answer (2)

    Get interview-ready with Top Imaginnovate Interview Questions

    I applied via Referral and was interviewed in Jul 2021. There were 3 interview rounds.

    Interview Questionnaire 

    4 Questions

    • Q1. Oops concept ?
    • Q2. Uses of constructor in java?
    • Ans. 

      Constructors are used to initialize objects in Java.

      • Constructors are special methods that have the same name as the class.

      • They are used to allocate memory for an object and initialize its state.

      • Constructors can have parameters to initialize object properties.

      • They are called automatically when an object is created using the 'new' keyword.

      • Constructors can be overloaded to create objects with different initial states.

    • Answered by AI
    • Q3. What is interface?
    • Ans. 

      An interface in Java is a blueprint of a class that defines a set of methods without implementation.

      • An interface can have abstract methods, default methods, and static methods.

      • It is used to achieve abstraction and multiple inheritance in Java.

      • Classes implement interfaces using the 'implements' keyword.

      • Interfaces can be used to create loosely coupled systems and promote code reusability.

      • Example: 'Comparable' interface i...

    • Answered by AI
    • Q4. Difference between extend and implement?
    • Ans. 

      Extend is used to inherit properties and methods from a class, while implement is used to implement interfaces.

      • Extend is used to create a subclass that inherits properties and methods from a superclass.

      • Implement is used to define a class that implements the methods declared in an interface.

      • A class can extend only one superclass, but it can implement multiple interfaces.

      • Extend is used for inheritance, while implement is

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident.

    Skills evaluated in this interview

    Java Developer Interview Questions asked at other Companies

    Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
    View answer (4)

    Jobs at Imaginnovate

    View all

    Interview questions from similar companies

    Interview Preparation Tips

    Round: Resume Shortlist
    Experience: I was fulfilling their criteria of 60% through out the academics.

    Round: Test
    Experience: Aptitude was easy. It contained basics of Quants & Logic . Verbal or English part was bit difficult and length. There was a sectional time and sectional cut off.

    Round: Interview
    Experience: There was only one interview. Both Technical and HR questions were asked in the same interview. Prepare puzzles from the book Puzzles to puzzle you by Shakuntala Devi. This book helped me a lot. Technical questions were very basic but nearly from every subject.

    General Tips: BE CONFIDENT. Speak Confident in Interview even if you are not good with ur english.
    Skills: English language, Communication Skills, Reasoning Abilities
    College Name: Jawaharlal Nehru Engineering College Aurangabad

    Assistant Trainee Interview Questions & Answers

    TCS user image YATISH KUMAR KESHWANI

    posted on 9 Feb 2015

    Interview Questionnaire 

    22 Questions

    • Q1. What are the subjects you have command in?
    • Q2. Tell me about your final year project?
    • Q3. Tell me about the industrial training you had?
    • Q4. How does an induction motor works?
    • Q5. Why motor is rated in KW whereas Transformer and generator in KVA?
    • Ans. 

      Motors are rated in KW because they consume power, while transformers and generators are rated in KVA because they produce power.

      • Motors convert electrical energy into mechanical energy, so they consume power and are rated in KW.

      • Transformers and generators produce electrical energy, so they are rated in KVA based on their apparent power.

      • KVA takes into account both the real power (KW) and the reactive power (KVAR) produc...

    • Answered by AI
    • Q6. What is the type of motor used in ceiling fans?
    • Ans. 

      The type of motor used in ceiling fans is an induction motor.

      • Ceiling fans typically use single-phase induction motors.

      • These motors are designed to provide a constant speed and are efficient in converting electrical energy into mechanical energy.

      • The motor consists of a stator and a rotor, with the stator being the stationary part and the rotor being the rotating part.

      • The stator contains windings that create a rotating m...

    • Answered by AI
    • Q7. Hoe does a thermal power plant works?
    • Ans. 

      A thermal power plant generates electricity by converting heat energy into mechanical energy.

      • Thermal power plants use fossil fuels or nuclear energy to heat water and produce steam.

      • The steam drives a turbine, which is connected to a generator that produces electricity.

      • The heat source can be coal, natural gas, oil, or nuclear reactions.

      • The steam is condensed back into water and recycled in a closed-loop system.

      • Thermal p...

    • Answered by AI
    • Q8. Write a program to make a GP
    • Ans. 

      A program to generate a geometric progression (GP).

      • Take the first term, common ratio and number of terms as input.

      • Use a loop to calculate each term of the GP.

      • Print the generated GP as output.

    • Answered by AI
    • Q9. Write a program to print factorial using recursion
    • Ans. 

      A program to print factorial using recursion

      • Define a function to calculate factorial recursively

      • Base case: if the number is 0 or 1, return 1

      • Recursive case: multiply the number with factorial of (number - 1)

      • Print the factorial of a given number

    • Answered by AI
    • Q10. Write the logic to reverse a string without using string fnctions
    • Ans. 

      Logic to reverse a string without using string functions

      • Iterate through the string from the last character to the first

      • Create a new string and append each character to it in reverse order

    • Answered by AI
    • Q11. Tell me about yourself?
    • Q12. What are your hobbies?
    • Q13. Apart from your technical pat and studies what have you done in college?
    • Q14. What do you prefer, ethics or values?
    • Q15. Suppose you are working in office and somebody came and slapped you, what will you do?
    • Q16. Tell me about yourself for 5 minutes
    • Q17. What are your views about Mr. Narendra Modi as PM of India
    • Q18. Any extra curricular activities you have participated in school or college
    • Q19. What are your strengths?
    • Q20. What are your weaknesses?
    • Q21. Being an Electrical engineer why do you want to join an IT company
    • Q22. What do you know about TCS?

    Interview Preparation Tips

    Round: Test
    Experience: In email writing one question was given describing the situation and maximum word limit. It has the keywords given to be used. 1 question, 10 minutes.This section is generally used to check your verbal ability. Make sure to use all the keywords given and complete it within time, with no spelling mistakes of course. Missing a keyword or a spelling mistake could be your goodbye to qualified list.The second section had 30 questions of quantitative aptitude. Duration 70 mins. There are questions from various sections, such as Time and speed, Time and distance, Data interpretation,etc.There are 2-3 star marked questions which have more weight-age. There my also be a dummy question who doesn't have any matching answer. Make sure uh don't attempt these questions.26-27 questions is the cut-off for qualified list.But you have to do the email writing part correctly.
    Tips: Practice email writing online from various websites such as technicalbaba.com, indiageeks.comPractice quantitative aptitude as it is a must in any interview you will face. you can use R.S.Agarwal or CAT material.
    Duration: 90 minutes
    Total Questions: 30 + 1

    Round: Interview
    Experience: Greeting the interviewer is a must. Be confident and enthusiastic. Have your resume properly ready. Technical questions from your subject will be asked. Not a must that you should know any programming language like C, C++, JAVA.
    Tips: Prepare 3-4 subjects of your core branch. Never try to flatter the interviewer. Be confident and answer the questions appropriately. Dont say directly " I DON'T KNOW". Atleast try even if you dont know the answer.

    Round: Interview
    Experience: There are certain questions which doesnt have direct answers. You have to be diplomatic about them. You should be able to see all the possible situation when a question like that is asked.

    Round: Interview
    Experience: The HR head may manipulate you, try to stress you, etc. Be calm and confident.Think before you speak. Prepare your answers before hand for general questions. Write your introduction on a paper and prepare it well so that you speak it confidently...
    Tips: Be yourself. Be confident. Never argue with the interviewer.All the best

    General Tips: Be presentable in the interview. Wear a watch. Show respect to the interviewer. Prepare 3-4 technical subjects well. Read last 15 days newspaper. Be confident when you speak. Improve your English if you are weak in it.
    Skill Tips: ""
    Skills: Verbal ability, Attitude, Technical knowledge, General knowledge
    College Name: IMS ENGINEERING COLLEGE, GHAZIABAD
    Motivation: TCS is a semi government company with a decent package and high job security.

    Skills evaluated in this interview

    Interview Questionnaire 

    7 Questions

    • Q1. Say something about yourself?
    • Q2. Asked on college project
    • Q3. Which programming language do you know?
    • Ans. 

      I know multiple programming languages including Java, Python, and C++.

      • Proficient in Java with experience in developing web applications using Spring framework

      • Familiar with Python for data analysis and machine learning

      • Experience in C++ for developing high-performance applications

      • Also familiar with HTML, CSS, and JavaScript for front-end development

    • Answered by AI
    • Q4. What is class, encapsulation and other feature of OOP?
    • Ans. 

      Class is a blueprint for creating objects, encapsulation is the process of hiding data and methods within a class.

      • Class is a template or blueprint that defines the properties and behaviors of an object.

      • Encapsulation is the process of bundling data and methods together within a class, hiding the internal details from the outside world.

      • Other features of OOP include inheritance, polymorphism, and abstraction.

      • Inheritance a...

    • Answered by AI
    • Q5. Write a program to find the sum of the squares of each term of Fibonacci series
    • Ans. 

      Program to find the sum of squares of each term of Fibonacci series

      • Generate Fibonacci series using loop or recursion

      • Calculate square of each term

      • Add all squares to get the sum

    • Answered by AI
    • Q6. What can I do for you?
    • Q7. Why would you like to join Cognizant?
    • Ans. 

      I would like to join Cognizant because of its reputation as a leading global technology and consulting company.

      • Cognizant has a strong presence in the industry and is known for its innovative solutions.

      • I am impressed by Cognizant's commitment to digital transformation and its ability to deliver value to clients.

      • The company offers excellent career growth opportunities and a supportive work environment.

      • Cognizant's diverse...

    • Answered by AI

    Interview Preparation Tips

    Round: Test
    Experience: Questions were simple but demanded faster solving ability especially the Quantitative ability section.
    Tips: Solve every bit of R.S.Aggarwal for Aptitude problems. www.indiabix.com is a good site to solve questions from all the sections.
    Duration: 90 minutes

    Round: Interview
    Experience: Started with self description to explaining what projects I was involved in. Talked about my role in the project. Then answered questions from C++ programming language and then wrote the program that the interviewer gave me to do.
    Tips: Be Confident. Have the problem solving & "Yes I can Do" attitude. Go with a open mind. Listen to the interviewer carefully. Do not stammer. Keep yourself calm and cool. Be honest.

    Round: Interview
    Experience: Faced normal questions
    Tips: Be confident & keep smiling. Keep track of your body language. Be fluent in speaking English.

    General Tips: Be confident and a "can do" attitude will help you grab the job.
    Skill Tips: """"
    Skills: Communication Skill, Proficiency in English, Basic Computer Progamming Knowledge, Learning ability, Aptitude
    College Name: IIT Madras

    Skills evaluated in this interview

    Interview Preparation Tips

    Round: Resume Shortlist
    Experience: CGPA + resume + online test - based shortlisting

    Round: Test
    Experience: Online Test:Quant, DI, verbal, and coding45 minutes coding + 15 minutes verbal + 30 minutes quant
    Tips: Time constraint will be the major problem. CAT preparation would sufficeBrush up your coding skills- concentrate in either C or C++ or whichever language you're comfortable withE.g.: The coding question- Write a function to find if a number is palindromeBrush up through basic data structuresGraph theory and few sorting algorithms
    Duration: 90 minutes

    Round: Interview
    Experience: (2 interviews, 20 minutes each)Resume- basedCoding skills and the approach towards the problem will also be tested
    Tips: Be thorough with the work done in your internships and projects. Be ready to answer why you are interested in the company.Maintain your confidence level in the interviews. They also look for good communication skills, and even leadership, which is evident from the way you conduct yourself through the interview.Practice quant questions, prepare answers for all the basic HR questions.Coding, go through sorting algorithms, FOR, Graph theory.Digital IC design is very important courses. You should be through with this courses if you are interested in digital profile.

    College Name: IIT Madras

    Imaginnovate Interview FAQs

    How many rounds are there in Imaginnovate interview?
    Imaginnovate interview process usually has 2-3 rounds. The most common rounds in the Imaginnovate interview process are Coding Test, HR and Resume Shortlist.
    How to prepare for Imaginnovate interview?
    Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Imaginnovate. The most common topics and skills that interviewers at Imaginnovate expect are OOPS, Java, Angularjs, Spring Boot and Javascript.
    What are the top questions asked in Imaginnovate interview?

    Some of the top questions asked at the Imaginnovate interview -

    1. How we link the external files of css and js to the ht...read more
    2. Does any libraries are required to perform c programming and what are th...read more
    3. What is meant by data structures and what are they? Expla...read more

    Tell us how to improve this page.

    People are getting interviews through

    based on 6 Imaginnovate interviews
    WalkIn
    Referral
    Job Portal
    33%
    33%
    17%
    17% candidates got the interview through other sources.
    Moderate Confidence
    ?
    Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.2k Interviews
    Accenture Interview Questions
    3.9
     • 8k Interviews
    Infosys Interview Questions
    3.7
     • 7.5k Interviews
    Wipro Interview Questions
    3.7
     • 5.5k Interviews
    Tech Mahindra Interview Questions
    3.6
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.7k Interviews
    LTIMindtree Interview Questions
    3.9
     • 2.9k Interviews
    Mphasis Interview Questions
    3.4
     • 787 Interviews
    View all

    Imaginnovate Reviews and Ratings

    based on 26 reviews

    4.0/5

    Rating in categories

    4.0

    Skill development

    3.6

    Work-Life balance

    4.2

    Salary & Benefits

    3.7

    Job Security

    4.0

    Company culture

    3.9

    Promotions/Appraisal

    3.7

    Work Satisfaction

    Explore 26 Reviews and Ratings
    ReactJS / UI Lead

    Visakhapatnam

    8-12 Yrs

    Not Disclosed

    Mid Level Java Developer

    Visakhapatnam

    3-5 Yrs

    Not Disclosed

    Explore more jobs
    Software Engineer
    37 salaries
    unlock blur

    ₹2.2 L/yr - ₹11.9 L/yr

    Senior Software Engineer
    21 salaries
    unlock blur

    ₹6.3 L/yr - ₹16.2 L/yr

    Software Engineer2
    18 salaries
    unlock blur

    ₹5 L/yr - ₹8 L/yr

    Software Engineer Level 1
    10 salaries
    unlock blur

    ₹3.5 L/yr - ₹4 L/yr

    Software Engineer III
    9 salaries
    unlock blur

    ₹7.5 L/yr - ₹13 L/yr

    Explore more salaries
    Compare Imaginnovate with

    TCS

    3.7
    Compare

    Infosys

    3.7
    Compare

    Wipro

    3.7
    Compare

    HCLTech

    3.5
    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