Upload Button Icon Add office photos

Inlogic Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Inlogic Technologies Interview Questions and Answers

Updated 5 Mar 2025
Popular Designations

6 Interview questions

A Junior .NET Developer was asked 4mo ago
Q. What is the difference between substr() and charindex()?
Ans. 

substr() extracts a substring from a string based on start and length, while charindex() finds the position of a character or substring within a string.

  • substr() is used in SQL Server to extract a portion of a string based on the starting position and length.

  • charindex() is used in SQL Server to find the position of a specific character or substring within a string.

  • Example: SELECT SUBSTRING('Hello World', 1, 5) will...

View all Junior .NET Developer interview questions
A Junior .NET Developer was asked 4mo ago
Q. What is your understanding of normalization in SQL?
Ans. 

Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity.

  • Normalization is a technique used to eliminate redundant data and ensure data integrity.

  • It involves breaking down a table into smaller tables and defining relationships between them.

  • There are different normal forms such as 1NF, 2NF, 3NF, and BCNF.

  • For example, in a database of students and courses, i...

View all Junior .NET Developer interview questions
A Junior .NET Developer was asked 4mo ago
Q. What are the key concepts of Object-Oriented Programming (OOP)?
Ans. 

Key concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit (class). Example: Class with private fields and public methods.

  • Inheritance: Creating new classes based on existing classes, inheriting their attributes and behaviors. Example: Subclass extending a superclass.

  • Polymorphism: Objects of different cla...

View all Junior .NET Developer interview questions
A Junior .NET Developer was asked 4mo ago
Q. What is the SQL query to retrieve the maximum salary from a database?
Ans. 

SQL query to retrieve the maximum salary from a database

  • Use the SELECT statement with the MAX function to retrieve the maximum salary

  • Specify the column name for the salary field in the table

  • Example: SELECT MAX(salary) FROM employees

View all Junior .NET Developer interview questions
A Junior .NET Developer was asked 4mo ago
Q. What is the difference between procedures and functions?
Ans. 

Procedures do not return a value, while functions return a value.

  • Procedures are used to perform an action, while functions are used to calculate and return a value.

  • Functions have a return type specified, while procedures do not.

  • Example: Procedure to display a message on the screen vs Function to calculate the sum of two numbers.

View all Junior .NET Developer interview questions
A Junior .NET Developer was asked 4mo ago
Q. What are the available access modifiers in programming?
Ans. 

Access modifiers control the visibility and accessibility of classes, methods, and variables in programming.

  • Public - accessible from anywhere

  • Private - accessible only within the same class

  • Protected - accessible within the same class and its subclasses

  • Internal - accessible within the same assembly

  • Protected Internal - accessible within the same assembly or subclasses

View all Junior .NET Developer interview questions

Inlogic Technologies Interview Experiences

8 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - I didn't give interview 

(2 Questions)

  • Q1. I have not gave interview
  • Q2. I have not give interview

Interview Preparation Tips

Interview preparation tips for other job seekers - I am writing to share my concerns regarding the walk-in drive conducted by your organization on 30th November 2024.

The event attracted an overwhelming response, with around 700 candidates arriving to participate. However, it was unfortunate to see that only 350 candidates were accommodated, and the rest were turned away. This decision, while understandable from a logistical perspective, resulted in significant time and financial losses for those who were not considered.

For many candidates, traveling to attend such drives involves considerable effort and expense, and being turned away without a chance to interview is disheartening. It also creates a negative impression about the planning and management of the recruitment process.

I kindly suggest that in the future, such events be planned with a clearer structure, such as:

Pre-registration: Ensure only a specific number of candidates are invited based on your capacity.
Clear Communication: Share transparent guidelines about selection criteria and the number of candidates to be accommodated.
Virtual Screening: Conduct an initial online screening to manage candidate numbers and reduce unnecessary travel.
This approach would not only save candidates' resources but also reflect positively on your company’s reputation.

I trust this feedback will be taken constructively, and I hope to see a more organized approach in your future recruitment drives.

Thank you for your understanding.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Dec 2024.

Round 1 - Aptitude Test 

Twenty technical multiple-choice questions: ten from general object-oriented programming, five from SQL, and five directly related to C#.

Round 2 - One-on-one 

(7 Questions)

  • Q1. Can you provide a self-introduction?
  • Ans. 

    I am a passionate Junior .NET Developer with experience in C#, ASP.NET, and SQL Server.

    • Experienced in C#, ASP.NET, and SQL Server

    • Passionate about software development

    • Quick learner and team player

  • Answered by AI
  • Q2. What are the key concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    Key concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class). Example: Class with private fields and public methods.

    • Inheritance: Creating new classes based on existing classes, inheriting their attributes and behaviors. Example: Subclass extending a superclass.

    • Polymorphism: Objects of different classes ...

  • Answered by AI
  • Q3. What are the available access modifiers in programming?
  • Ans. 

    Access modifiers control the visibility and accessibility of classes, methods, and variables in programming.

    • Public - accessible from anywhere

    • Private - accessible only within the same class

    • Protected - accessible within the same class and its subclasses

    • Internal - accessible within the same assembly

    • Protected Internal - accessible within the same assembly or subclasses

  • Answered by AI
  • Q4. What is your understanding of normalization in SQL?
  • Ans. 

    Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is a technique used to eliminate redundant data and ensure data integrity.

    • It involves breaking down a table into smaller tables and defining relationships between them.

    • There are different normal forms such as 1NF, 2NF, 3NF, and BCNF.

    • For example, in a database of students and courses, instea...

  • Answered by AI
  • Q5. Difference between substr() and charindex()?
  • Ans. 

    substr() extracts a substring from a string based on start and length, while charindex() finds the position of a character or substring within a string.

    • substr() is used in SQL Server to extract a portion of a string based on the starting position and length.

    • charindex() is used in SQL Server to find the position of a specific character or substring within a string.

    • Example: SELECT SUBSTRING('Hello World', 1, 5) will retu...

  • Answered by AI
  • Q6. What is the difference between procedures and functions?
  • Ans. 

    Procedures do not return a value, while functions return a value.

    • Procedures are used to perform an action, while functions are used to calculate and return a value.

    • Functions have a return type specified, while procedures do not.

    • Example: Procedure to display a message on the screen vs Function to calculate the sum of two numbers.

  • Answered by AI
  • Q7. What is the SQL query to retrieve the maximum salary from a database?
  • Ans. 

    SQL query to retrieve the maximum salary from a database

    • Use the SELECT statement with the MAX function to retrieve the maximum salary

    • Specify the column name for the salary field in the table

    • Example: SELECT MAX(salary) FROM employees

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Completely resume based questions. They will raise questions from web technology only if you mention it in your resume or else they won't get deeper in technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Though I'm from java background without any knowledge in HTML, CSS and C# they considered me till 3rd round because of my confidence and fluency. It was a walkin. Waiting for my 3rd round results(on hold). All the three rounds completed in a single day and the results were shared immediately. Friendly interviewers.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good all good all good

Round 2 - One-on-one 

(2 Questions)

  • Q1. Just A technical Question , System test
  • Q2. System test and face to face
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - Coding Test 

It was very good exam

Round 2 - Technical 

(2 Questions)

  • Q1. Good and quite easy
  • Q2. Oops SQL project
Round 3 - Technical 

(2 Questions)

  • Q1. All technical questions asked
  • Q2. API cloud ERP
Round 4 - HR 

(1 Question)

  • Q1. Not conducted by HR

Software Developer Interview Questions & Answers

user image parthiban palanival

posted on 19 Oct 2024

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

(2 Questions)

  • Q1. Very poor,false promises questions
  • Q2. Senior Management irritating asks

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to screw your career,join here..it's a gutter
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

C#, AngularJS, SQL Server, Frontend Developer.

Round 2 - Group Discussion 

Frontend developer, C#, SQL Server, C#.

DOT NET Developer Interview Questions & Answers

user image basireddy umadevi

posted on 30 Dec 2024

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 Dec 2024. There was 1 interview round.

Round 1 - Aptitude Test 

.NET, AngularJS, and SQL Server.

Interview Preparation Tips

Interview preparation tips for other job seekers - Identify your career goals and the type of job you desire.

I applied via Company Website and was interviewed in Nov 2022. There were 3 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 

(1 Question)

  • Q1. Core java and selenium based questions
Round 3 - One-on-one 

(1 Question)

  • Q1. One to one technical

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare corejava and selenium and basic manual testing concepts required

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Inlogic Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

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.

Inlogic Technologies Interview FAQs

How many rounds are there in Inlogic Technologies interview?
Inlogic Technologies interview process usually has 2-3 rounds. The most common rounds in the Inlogic Technologies interview process are One-on-one Round, Aptitude Test and Technical.
How to prepare for Inlogic Technologies 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 Inlogic Technologies. The most common topics and skills that interviewers at Inlogic Technologies expect are Angular, C#, SQL, Javascript and .Net.
What are the top questions asked in Inlogic Technologies interview?

Some of the top questions asked at the Inlogic Technologies interview -

  1. What is the SQL query to retrieve the maximum salary from a databa...read more
  2. What is your understanding of normalization in S...read more
  3. What are the key concepts of Object-Oriented Programming (OO...read more
How long is the Inlogic Technologies interview process?

The duration of Inlogic Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 10 interview experiences

Difficulty level

Easy 83%
Moderate 17%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
3.0
 • 36 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all

Inlogic Technologies Reviews and Ratings

based on 43 reviews

3.6/5

Rating in categories

3.7

Skill development

3.6

Work-life balance

3.5

Salary

3.7

Job security

3.4

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 43 Reviews and Ratings
Software Developer
51 salaries
unlock blur

₹3 L/yr - ₹9.8 L/yr

Software Engineer
44 salaries
unlock blur

₹4.1 L/yr - ₹9 L/yr

Software Tester
35 salaries
unlock blur

₹3.3 L/yr - ₹8 L/yr

Associate Software Developer
27 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Plsql Developer
21 salaries
unlock blur

₹4.5 L/yr - ₹8 L/yr

Explore more salaries
Compare Inlogic Technologies with

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

4.1
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.8
Compare
write
Share an Interview