Upload Button Icon Add office photos

Newgen Knowledge Works

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Newgen Knowledge Works Software Developer Interview Questions and Answers

Updated 30 Jun 2021

Newgen Knowledge Works Software Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core java + SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and upgrade your skills

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is Array sorting in php
  • Ans. 

    Array sorting in PHP is the process of arranging the elements of an array in a specific order.

    • PHP provides various sorting functions like sort(), rsort(), asort(), arsort(), ksort(), krsort(), etc.

    • sort() function sorts the array in ascending order based on the values.

    • rsort() function sorts the array in descending order based on the values.

    • asort() function sorts the array in ascending order based on the values while mai...

  • Answered by AI
  • Q2. Array merge in php
  • Ans. 

    Merging two arrays in PHP

    • Use array_merge() function to merge two or more arrays

    • The resulting array will have all the values from the input arrays

    • Keys are preserved unless they are numeric and there are duplicates

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 mins 30 question with easy problems

Round 2 - Group Discussion 

10 mins gd easy topic

Round 3 - Technical 

(1 Question)

  • Q1. Tehcnical based questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is closure
  • Ans. 

    A closure is a function that has access to its own scope, the scope in which it was defined, and the global scope.

    • A closure is created when a function is defined inside another function.

    • The inner function has access to the variables and parameters of the outer function, even after the outer function has finished executing.

    • Closures are useful for creating private variables and functions in JavaScript.

    • They can also be us...

  • Answered by AI
  • Q2. What is Encapsulation
  • Ans. 

    Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

    • Encapsulation bundles data and methods together into a single unit.

    • It helps in achieving data abstraction and data hiding.

    • By encapsulating data, we can control access to it and prevent unauthorized modifications.

    • Encapsulation promotes code reusability and maintainability.

    • Example: A class in objec...

  • Answered by AI
  • Q3. What is Inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows for code reuse and promotes the concept of hierarchy.

    • The class that is being inherited from is called the superclass or base class.

    • The class that inherits from the superclass is called the subclass or derived class.

    • The subclass can access the public and protected members of the s...

  • Answered by AI
  • Q4. What is Abstraction
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details.

    • Abstraction involves hiding unnecessary details and exposing only relevant information.

    • It allows developers to create models or representations that capture the essential aspects of a system.

    • Abstraction helps in managing complexity, improving code reusability, and enhancing maintainability.

    • For example, in object-oriented programm...

  • Answered by AI
  • Q5. What is Polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is a fundamental concept in object-oriented programming.

    • It enables code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

  • 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. C#,Mvc core,SQL server,vue js,
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Core java , spring boot , mysql , lunix

Interview Preparation Tips

Interview preparation tips for other job seekers - its good
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Coding test with 2 questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical interview round
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

There were 3 coding questions on Hacker Earth platform for 1 hour 15min and 1 question from array and 2 questions from strings.

Round 2 - One-on-one 

(1 Question)

  • Q1. This round was based on SQL, DBMS, DSA, OOPS SQL--> Designed the complete schema for one of my projects for COVID-19 vaccination. and SQL queries from that schema. DSA--> 1.) Find the pair in an array whos...
Round 3 - Technical 

(1 Question)

  • Q1. This was a technical managerial round. OOPS--> Example of overloading and overriding. Mostly DBMS and SQL-based questions like what is indexing and SQL queries and joins. DSA--> 1.) Write one sorting algo....
Round 4 - HR 

(1 Question)

  • Q1. Just a normal discussion regarding my tech stack and my internship experience only 15mins.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Best Time to sell and buy stock

Round 2 - One-on-one 

(2 Questions)

  • Q1. Promises, closures, hoisting in JS
  • Q2. Classes and Object Prototyping

Interview Questionnaire 

1 Question

  • Q1. What is meant by javascript closure? And why do we use it?
  • Ans. 

    A closure is a function that has access to its outer function's variables, even after the outer function has returned.

    • A closure is created when a function is defined inside another function.

    • It allows for private variables and functions in JavaScript.

    • Closures are used for data hiding, encapsulation, and creating modules.

    • Example: function outer() { var x = 10; function inner() { console.log(x); } return inner; } var clos

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Newgen Knowledge Works Interview FAQs

How to prepare for Newgen Knowledge Works Software Developer 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 Newgen Knowledge Works. The most common topics and skills that interviewers at Newgen Knowledge Works expect are C#, .NET, Application Development, Hibernate and Java.

Recently Viewed

INTERVIEWS

Kotak Mahindra Bank

No Interviews

INTERVIEWS

Zinnov Management Consulting

5.6k top interview questions

INTERVIEWS

Cognizant

5.6k top interview questions

INTERVIEWS

Techinfini Solutions

No Interviews

INTERVIEWS

JPM Group

No Interviews

INTERVIEWS

State Bank of India

No Interviews

INTERVIEWS

Zinnov Management Consulting

No Interviews

CAMPUS PLACEMENT

Sastra University

INTERVIEWS

Zinnov Management Consulting

No Interviews

INTERVIEWS

JPM Group

No Interviews

Tell us how to improve this page.

Newgen Knowledge Works Software Developer Salary
based on 22 salaries
₹2.8 L/yr - ₹9 L/yr
25% less than the average Software Developer Salary in India
View more details

Newgen Knowledge Works Software Developer Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

4.7

Skill development

4.7

Work-life balance

4.7

Salary

5.0

Job security

4.7

Company culture

4.7

Promotions

4.7

Work satisfaction

Explore 3 Reviews and Ratings
Project Manager
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Copy Editor
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Newgen Knowledge Works with

Integra Software Services

3.9
Compare

DiTech Process Solutions

2.6
Compare

Lumina Datamatics

3.2
Compare

Premedia Global

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