Upload Button Icon Add office photos

NSE.IT

Compare button icon Compare button icon Compare

Filter interviews by

NSE.IT CP Engineer Interview Questions and Answers

Updated 6 Dec 2021

NSE.IT CP Engineer Interview Experiences

1 interview found

CP Engineer Interview Questions & Answers

user image Anonymous

posted on 6 Dec 2021

I applied via Company Website and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About Comp Hardware

Interview Preparation Tips

Interview preparation tips for other job seekers - dont accept the job if they only hire you for project

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. About your self
  • Q2. Jwt token
  • Q3. Cors and its working
  • Q4. Session storage
Round 2 - Behavioral 

(3 Questions)

  • Q1. Tell me About yourself.
  • Q2. Challenges faced
  • Q3. How many years you will stay here
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to switch
  • Q2. Salary negotiations
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(3 Questions)

  • Q1. Data structure [Array]
  • Q2. Core JAVA questions[ exception handling , OOPS , Collections Framework ]
  • Q3. JDBC and SQL questions
Round 2 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Tell me one scenerio under which you did development
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were simple aptitude questions and core java MCQS

Round 2 - Technical 

(3 Questions)

  • Q1. What's OOPs concept
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding th...

  • Answered by AI
  • Q2. Explain Inheritance
  • Ans. 

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

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

    • Example: Class 'Car' can inherit from class 'Vehicle' and inh...

  • Answered by AI
  • Q3. Basic Java output questions
Round 3 - HR 

(1 Question)

  • Q1. Interviewer asked me to introduce and then he asked about my education and family details and then he told me about company.

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers it's easy to crack interview if they they are smart. Just revise core java and basic aptitude questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How to print numbers 1-100 using two go routines sequentially
  • Ans. 

    Use two go routines to print numbers 1-100 sequentially

    • Create two go routines, one for printing odd numbers and one for printing even numbers

    • Use channels to synchronize the two go routines and ensure sequential printing

    • Start the odd number go routine first, then start the even number go routine

  • Answered by AI
  • Q2. How to write generator functions using go language
  • Ans. 

    Generator functions in Go language allow for efficient iteration over a sequence of values.

    • Use the 'yield' keyword to return values one at a time from the generator function.

    • Generator functions are defined with a 'func' keyword followed by the function name and 'chan' keyword.

    • Example: func myGenerator() chan int { }

    • Use a 'for' loop to iterate over the values returned by the generator function.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Why do we use sync.Cond and sync.once
  • Ans. 

    sync.Cond is used for signaling between goroutines and sync.Once is used for running initialization code only once.

    • sync.Cond is used for goroutines to wait for or signal each other when a certain condition is met

    • sync.Once is used to ensure a function is only executed once, typically used for initialization tasks

    • Example: Using sync.Cond to coordinate multiple goroutines accessing a shared resource

    • Example: Using sync.Onc...

  • Answered by AI
  • Q2. Understanding about reflect package
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(3 Questions)

  • Q1. What are closures
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the scope has closed.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • They are commonly used in event handlers, callbacks, and asynchronous programming.

    • Closures help in maintaining state in functional programming.

  • Answered by AI
  • Q2. What is virtual DOM
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM used for efficient updates in web development.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM manipulations.

    • When changes are made to the virtual DOM, a comparison is done with the actual DOM to determine the minimal updates needed.

    • This approach reduces the number of costly DOM operations, resulting in faster rende

  • Answered by AI
  • Q3. What are the data types in JS
  • Ans. 

    Data types in JavaScript include number, string, boolean, object, function, undefined, and null.

    • Number - represents numeric data, e.g. 10, 3.14

    • String - represents textual data, e.g. 'hello', '123'

    • Boolean - represents true or false values, e.g. true, false

    • Object - represents complex data structures, e.g. { key: 'value' }

    • Function - represents executable code, e.g. function() { }

    • Undefined - represents a variable that has ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write react code for counter
  • Ans. 

    React code for a simple counter

    • Create a functional component for the counter

    • Use useState hook to manage the count state

    • Render the count value and buttons to increment and decrement the count

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - it was good

Skills evaluated in this interview

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 were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Can you introduce yourself? What are your strengths and weaknesses?
  • Ans. 

    I am a software engineer with strong problem-solving skills and a passion for learning new technologies.

    • Strengths: Strong problem-solving skills, quick learner, proficient in multiple programming languages (e.g. Java, Python), excellent communication skills

    • Weaknesses: Sometimes I can be overly critical of my own work, can get too focused on details and lose sight of the bigger picture, working on improving time managem

  • Answered by AI
  • Q2. Do you have any relevant experience?
  • Ans. 

    Yes, I have 5 years of experience working as a software engineer in a tech company.

    • 5 years of experience as a software engineer

    • Worked in a tech company

    • Developed web applications using Java and JavaScript

    • Experience with Agile development methodologies

    • Strong problem-solving skills

  • Answered by AI
Round 2 - Group Discussion 

Exchange your work experiences with one another.

Interview Preparation Tips

Interview preparation tips for other job seekers - You need relevant experience and strong communication skills to attract the interviewer’s attention.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Technical skills related questions
  • Q2. Hands on / live coding
Round 2 - Technical 

(1 Question)

  • Q1. Deep knowledge checking for mentioned skill
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

I cant share the details

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated Software Test Engineer with 5 years of experience in manual and automated testing.

    • Experienced in creating test plans, test cases, and executing tests

    • Proficient in using testing tools such as Selenium and Jira

    • Strong problem-solving skills and attention to detail

    • Collaborative team player with excellent communication skills

  • Answered by AI
  • Q2. Explain frame work
  • Ans. 

    A framework is a set of guidelines, libraries, and tools that help in developing and testing software applications.

    • Provides structure and guidelines for developing software

    • Includes libraries and tools to simplify development tasks

    • Promotes code reusability and maintainability

    • Examples: Selenium WebDriver for web automation testing, TestNG for test execution and reporting

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

How to remove duplicates from an array

Round 2 - Technical 

(2 Questions)

  • Q1. Some basic questions on java
  • Q2. One coding question on Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not use mobile phone for interview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Cyient Interview Questions
3.6
 • 284 Interviews
View all
Associate System Analyst
826 salaries
unlock blur

₹2.5 L/yr - ₹12 L/yr

IT Supervisor
220 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

System Analyst
191 salaries
unlock blur

₹5 L/yr - ₹17.5 L/yr

Associate Test Analyst
189 salaries
unlock blur

₹2.5 L/yr - ₹9.1 L/yr

Associate
164 salaries
unlock blur

₹1 L/yr - ₹7.8 L/yr

Explore more salaries
Compare NSE.IT with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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