Upload Button Icon Add office photos

Filter interviews by

Nascent Info Technologies Associate Software Engineer Interview Questions and Answers

Updated 22 Sep 2023

Nascent Info Technologies Associate Software Engineer Interview Experiences

1 interview found

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 tips
Round 2 - Coding Test 

String ,array, maths

Round 3 - Technical 

(2 Questions)

  • Q1. Reverse the number
  • Q2. Find the complexity according to given snapit
  • Ans. 

    The complexity of a given snapit needs to be determined.

    • Identify the operations being performed in the snapit

    • Count the number of iterations or recursive calls

    • Analyze the time and space complexity based on the identified operations

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were 45 questions in total: 20 questions on aptitude and 25 questions on basic C, C++, and Java.

Round 2 - One-on-one 

(1 Question)

  • Q1. TWO person was taking interview , one is HR AND TECHNICAL PERSON , THEY ASK ME TELL ME ABOUT YOUR SELF, WHAT ARE THE QUALITY OF TEAM LEADER, ARE YOU COMFORTABLE IF WE HIRE YOU AS A TESTER AND TECHNICAL ...

I applied via campus placement at IMS Engineering College, Ghaziabad and was interviewed before Oct 2021. There were 4 interview rounds.

Round 1 - Coding Test 

It was an online test where you to solve two basic programming problems.

Round 2 - Group Discussion 

It was a GD where 21 other candidates were present alongside me. The interviewer asked basic questions which we had to answer after raising our hands. It was on fcfs basis. The questions were mostly about basics OOPs concepts, arrays, linkedlist, tree, sorting, searching and time-space complexities. The difficulty of GD round is nominal. All you have to response first and clearly.

Round 3 - Technical 

(1 Question)

  • Q1. OOPs Concepts and Java
  • Ans. The technical round was held in Office face to face. I was given 3 coding problems of which I was able to solve 2 problems. After that I was asked to write a program for linkedlist. After that the interviewer asked me some basic questions about OOPs and basic code structure in Java(because I was coding in Java). Make sure you have knowledge of everything which is included in any basic program including keywords, import
  • Answered Anonymously
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself? What are your expectations? Any doubts regarding the job?
  • Q2. It more of a discussion about what happens next. If you giving the HR round that means you're selected for the job

Interview Preparation Tips

Topics to prepare for Big Oh Notation Associate Software Engineer interview:
  • OOPS
  • Data Structures
  • Any one programming language
Interview preparation tips for other job seekers - Just keep calm and stick to basics. Keep doing basic programming problems and you'll crack it.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - Aptitude Test 

The aptitude test evaluates problem-solving, coding skills, and logical reasoning, offering a fair challenge to showcase technical expertise.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflicts in a team project?
  • Ans. 

    I address conflicts in team projects by promoting open communication, active listening, and seeking compromise.

    • Encourage open communication among team members to address conflicts early on

    • Practice active listening to understand all perspectives and concerns

    • Seek compromise and find common ground to resolve conflicts effectively

  • Answered by AI
  • Q2. What is the difference between an interface and an abstract class?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while an abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and cannot have any implementation, while abstract class can have both abstract and implemented methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Research the company, practice technical skills, communicate, showcase problem-solving abilities, stay confident, and demonstrate enthusiasm for the role
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between an abstract class and an interface in object-oriented programming?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have method implementations, while interface cannot.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Interfaces are used to define contracts for classes to implement, while abstract classes are used to provide a common base for subclasses.

    • Example: Abstr...

  • Answered by AI
  • Q2. Abstract classes can have implemented methods; interfaces can only have declarations (before JAVA 8).

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay updated with the latest tools and technologies in your field to remain competitive.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Give 10 questions from node js backend

Round 2 - One-on-one 

(6 Questions)

  • Q1. Ask about angular and node js
  • Q2. What is package.json
  • Ans. 

    package.json is a file used in Node.js projects to manage dependencies, scripts, and metadata.

    • It is a JSON file that contains information about the project, such as name, version, dependencies, and scripts.

    • It is used to manage project dependencies by listing them in the 'dependencies' and 'devDependencies' fields.

    • It allows developers to define scripts for tasks like building, testing, and running the project.

    • Example: {...

  • Answered by AI
  • Q3. What is components in angular,how share data to component
  • Ans. 

    Components in Angular are building blocks of an application. Data can be shared between components using input properties and output events.

    • Components in Angular are reusable, self-contained units of code that define a part of the user interface.

    • Data can be shared to a component using input properties, where data is passed from the parent component to the child component.

    • Data can also be shared from a child component t...

  • Answered by AI
  • Q4. What is === and == ,and wher use === is real time projects
  • Ans. 

    === is strict equality operator, while == is loose equality operator. === is commonly used in real-time projects for accurate comparisons.

    • === is a strict equality operator that checks both value and type of operands

    • == is a loose equality operator that only checks the value of operands

    • === is commonly used in real-time projects to ensure accurate comparisons and prevent unexpected type coercion issues

  • Answered by AI
  • Q5. Write arrow function syntax
  • Ans. 

    Arrow function syntax in JavaScript

    • Arrow functions are concise syntax for writing function expressions in JavaScript

    • They have a shorter syntax compared to traditional function expressions

    • They do not have their own 'this', 'arguments', 'super', or 'new.target' keywords

  • Answered by AI
  • Q6. What is difference between arrow function and anonymous function
  • Ans. 

    Arrow functions are concise syntax for writing function expressions, while anonymous functions do not have a name.

    • Arrow functions have a shorter syntax compared to anonymous functions.

    • Arrow functions do not have their own 'this' keyword, while anonymous functions do.

    • Arrow functions do not have 'arguments' object, while anonymous functions do.

    • Arrow functions are not hoisted, while anonymous functions are hoisted.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare about ur role

Skills evaluated in this interview

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 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. What is git, how GitHub work without git
  • Ans. 

    Git is a version control system used for tracking changes in code. GitHub is a platform for hosting code repositories and collaborating with others.

    • Git is a distributed version control system that allows multiple developers to work on the same codebase without conflicts.

    • GitHub is a web-based platform that provides hosting for Git repositories, along with additional features like issue tracking, pull requests, and proje...

  • Answered by AI
  • Q2. What is salting, hashing, rainbow table
  • Ans. 

    Salting, hashing, and rainbow tables are techniques used in cryptography to secure passwords.

    • Salting involves adding a random string of characters to a password before hashing to prevent attacks like rainbow tables.

    • Hashing is the process of converting a password into a fixed-length string of characters using a cryptographic hash function.

    • Rainbow tables are precomputed tables used to crack hashed passwords by matching a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - the interview is pretty easy they ask about basics of web and web security later advance topics which you mentioned in resume

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

In this round there are two codingquestion firs was pythagora triplet,and second was sort array 0's 1's,2's.and to solve this program time limit was 1 hour.

Round 2 - Technical 

(3 Questions)

  • Q1. OOPs Related Basic question
  • Q2. Exception Handling
  • Q3. Multithreading related basic question

Nascent Info Technologies Interview FAQs

How many rounds are there in Nascent Info Technologies Associate Software Engineer interview?
Nascent Info Technologies interview process usually has 3 rounds. The most common rounds in the Nascent Info Technologies interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Nascent Info Technologies Associate Software Engineer interview?

Some of the top questions asked at the Nascent Info Technologies Associate Software Engineer interview -

  1. Find the complexity according to given sna...read more
  2. Reverse the num...read more

Tell us how to improve this page.

Nascent Info Technologies Associate Software Engineer Salary
based on 11 salaries
₹2.2 L/yr - ₹4.1 L/yr
43% less than the average Associate Software Engineer Salary in India
View more details

Nascent Info Technologies Associate Software Engineer Reviews and Ratings

based on 2 reviews

3.7/5

Rating in categories

4.4

Skill development

4.4

Work-Life balance

3.4

Salary & Benefits

3.7

Job Security

3.4

Company culture

3.4

Promotions/Appraisal

3.7

Work Satisfaction

Explore 2 Reviews and Ratings
Business Analyst
17 salaries
unlock blur

₹6 L/yr - ₹7.3 L/yr

Software Engineer
16 salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹4.2 L/yr - ₹10 L/yr

Associate Software Engineer
11 salaries
unlock blur

₹2.2 L/yr - ₹4.1 L/yr

Quality Analyst
8 salaries
unlock blur

₹4 L/yr - ₹5.2 L/yr

Explore more salaries
Compare Nascent Info Technologies 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