Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Inogic Tech (India) Team. If you also belong to the team, you can get access from here

Inogic Tech (India) Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Inogic Tech (India) QC Engineer Interview Questions and Answers

Updated 19 Sep 2022

Inogic Tech (India) QC Engineer Interview Experiences

1 interview found

QC Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Sep 2022

I applied via Naukri.com and was interviewed in Mar 2022. There were 5 interview rounds.

Round 1 - Aptitude Test 

Aptitude test contained technical as well as logical reasoning questions.

Round 2 - Assignment 

It was contained writing test cases on give scenario

Round 3 - One-on-one 

(1 Question)

  • Q1. It was technical one on one round. Asked questions related to testing methodologies and scenario based questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. 4th round was with company's MD Again asked testing relates questions and questions related to previous project
Round 5 - One-on-one 

(1 Question)

  • Q1. It was again technical round of interview with MD of company with face to face discussion. Again asked scenario based questions & last question was why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - The company purely into CRM domain.
They conduct almost month long training on Microsoft crm modules - so you can imagine the project simplicity isn't really simple to understand.
Each & every aspect of your project should be acknowledgable and able to present at any time that the minimum expectations from them.
As a result very few people stand still to sustain the position as project complexity is higher due to it is CRM.
Very fined company for fresher but for experienced people think twice as attrition rate bit high for experienced candidates.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between readonly and const in C#?
  • Ans. 

    readonly variables can be assigned a value either at the time of declaration or in the constructor, while const variables must be assigned a value at the time of declaration and cannot be changed.

    • readonly variables can be assigned a value at runtime, while const variables must be assigned a value at compile time

    • readonly variables can be assigned a value in the constructor, while const variables cannot

    • const variables ar...

  • Answered by AI
  • Q2. Const is compile-time constant, while readonly is runtime constant.
  • Ans. 

    const is compile-time constant, while readonly is runtime constant.

    • const values are determined at compile time and cannot be changed during runtime

    • readonly values can be assigned a value either at the declaration or in the constructor and can be changed at runtime

    • const is used for values that are known at compile time, like mathematical constants

    • readonly is used when the value needs to be initialized at runtime, like d

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Tailor your resume to match the job description and highlight relevant skills.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is D/W array and ArrayList in .Net?
  • Ans. 

    D/W array is a dynamic array in .Net that can grow or shrink in size. ArrayList is a collection class that can store objects of any type.

    • D/W array is a resizable array that automatically adjusts its size as elements are added or removed.

    • ArrayList is a collection class that can store objects of any type, allowing for flexibility in data storage.

    • Example: D/W array - string[] myArray = new string[5]; ArrayList - ArrayList

  • Answered by AI
  • Q2. Array : Fixed size, type -safe. ArrayList : Dynamic size, not type-safe.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency injection ?
  • Ans. 

    Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing and maintenance of code.

    • There are three types of dependency injection - constructor injection, setter injection, and interface injection.

    • Example: Instead of creating an instance of a class within an...

  • Answered by AI
  • Q2. Injecting Dependencies instead of creating them.
  • Ans. 

    Injecting dependencies allows for better flexibility, testability, and maintainability in code.

    • Injecting dependencies means passing objects that a class needs rather than creating them within the class.

    • This allows for easier testing by mocking dependencies and swapping them out for different implementations.

    • Dependency injection frameworks like Unity, Ninject, or Autofac can help manage dependencies.

    • Example: Instead of ...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is garbage collection in .NET?
  • Ans. 

    Garbage collection in .NET is an automatic memory management process that helps in reclaiming memory occupied by objects that are no longer in use.

    • Garbage collection is a process where the runtime environment automatically deallocates memory that is no longer needed by the program.

    • It helps in preventing memory leaks and improving the performance of the application.

    • Garbage collection in .NET uses generations to categori...

  • Answered by AI
  • Q2. Automatic memory management system.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between async and await?
  • Ans. 

    Async is used to define a method that can be run asynchronously, while await is used to pause the execution of an async method until a task is complete.

    • Async is used to define a method that can be run asynchronously.

    • Await is used to pause the execution of an async method until a task is complete.

    • Async methods can be called using the await keyword to run them asynchronously.

    • Async and await are used in C# to simplify asy

  • Answered by AI
  • Q2. Async defines, await pauses execution.
  • Ans. 

    async defines, await pauses execution in asynchronous programming in C#.

    • async keyword is used to define a method as asynchronous in C#.

    • await keyword is used to pause the execution of an asynchronous method until the awaited task completes.

    • Asynchronous programming allows non-blocking execution of code, improving performance and responsiveness.

    • Example: async Task<int> GetDataAsync() { await Task.Delay(1000); return

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is CLR in .NET?
  • Ans. 

    CLR stands for Common Language Runtime, it is the virtual machine component of the .NET framework.

    • CLR is responsible for managing the execution of .NET programs.

    • It provides services such as memory management, exception handling, and security.

    • CLR compiles the intermediate language code into native code during execution.

    • It allows for cross-language integration and interoperability within the .NET framework.

    • Examples of la...

  • Answered by AI
  • Q2. Common Language runtime.
  • Ans. 

    Common Language Runtime (CLR) is the virtual machine component of Microsoft's .NET framework, responsible for managing execution of .NET programs.

    • CLR provides various services such as memory management, exception handling, and security.

    • It compiles intermediate language code into machine code during execution.

    • CLR allows for interoperability between different languages in the .NET framework.

    • Example: C# and VB.NET code ca...

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

(1 Question)

  • Q1. What is a core ASP.NET?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How does Dependency Injection work in .NET core, why it is important?

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.

Inogic Tech (India) Interview FAQs

How many rounds are there in Inogic Tech (India) QC Engineer interview?
Inogic Tech (India) interview process usually has 5 rounds. The most common rounds in the Inogic Tech (India) interview process are One-on-one Round, Aptitude Test and Assignment.
How to prepare for Inogic Tech (India) QC Engineer 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 Inogic Tech (India). The most common topics and skills that interviewers at Inogic Tech (India) expect are Manual Testing, Sanity Testing, Smoke Testing, Functional Testing and Manual Functional Testing.
What are the top questions asked in Inogic Tech (India) QC Engineer interview?

Some of the top questions asked at the Inogic Tech (India) QC Engineer interview -

  1. It was technical one on one round. Asked questions related to testing methodolo...read more
  2. 4th round was with company's MD Again asked testing relates questions and quest...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.8
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 32 Interviews
View all
Inogic Tech (India) QC Engineer Salary
based on 6 salaries
₹4.1 L/yr - ₹8 L/yr
66% more than the average QC Engineer Salary in India
View more details

Inogic Tech (India) QC Engineer Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.1

Skill development

3.2

Work-life balance

3.1

Salary

3.1

Job security

4.1

Company culture

3.2

Promotions

3.1

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
28 salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Junior Software Engineer
14 salaries
unlock blur

₹2.6 L/yr - ₹4.3 L/yr

Software Developer
10 salaries
unlock blur

₹2.5 L/yr - ₹4.5 L/yr

Junior Software Developer
10 salaries
unlock blur

₹3 L/yr - ₹4.4 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹10.8 L/yr - ₹23.5 L/yr

Explore more salaries
Compare Inogic Tech (India) with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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