Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by NovelVox Softwares India Pvt. Ltd. Team. If you also belong to the team, you can get access from here

NovelVox Softwares India Pvt. Ltd. Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NovelVox Softwares India Pvt. Ltd. Associate Software Engineer Interview Questions and Answers

Updated 14 Nov 2021

NovelVox Softwares India Pvt. Ltd. Associate Software Engineer Interview Experiences

1 interview found

I applied via campus placement at Manav Rachana International University, Faridabad and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. OOPS Concepts with real world examples .
  • Ans. 

    OOPS concepts are fundamental to software engineering. They help in creating modular, reusable, and maintainable code.

    • Encapsulation - hiding implementation details of an object. Example: A car's engine is encapsulated and can only be accessed through the car's interface.

    • Inheritance - creating a new class from an existing class. Example: A sports car class can inherit properties from a car class.

    • Polymorphism - the abili...

  • Answered by AI
  • Q2. 2. Difference between String str = "String"; v/s String str = new String("String");
  • Ans. 

    Difference between String literal and String object creation.

    • String str = "String" creates a string literal in the string pool.

    • String str = new String("String") creates a new string object in the heap.

    • String literal is more efficient than creating a new object.

    • String object creation is useful when you want to modify the string.

  • Answered by AI
  • Q3. 3. Write a function for calculating perimeter and area of rectangle .
  • Ans. 

    Function to calculate perimeter and area of a rectangle.

    • Define a function that takes length and width as parameters

    • Calculate perimeter by adding twice the length and twice the width

    • Calculate area by multiplying length and width

    • Return both perimeter and area as an object

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy first you will be given an easy assessment followed by a technical and hr round .

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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Diff btw vite and webpack
  • Q2. What is currying in js
Round 2 - Technical 

(2 Questions)

  • Q1. What is currying in javascript?
  • Q2. Diff btw webpack and vite

Interview Preparation Tips

Interview preparation tips for other job seekers - Just cover the basics of javascript. Learn about polyfills.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between function and method
  • Ans. 

    A function is a piece of code that is called by name, while a method is a function that is associated with an object.

    • Functions are standalone blocks of code, while methods are functions that are part of a class or object.

    • Functions can be called independently, while methods are called on an object.

    • Functions do not have access to data stored in an object, while methods can access and modify object data.

  • Answered by AI
  • Q2. A program related to strings
  • Q3. A program related to prime numbers
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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about projects you have worked upon
  • Q2. PEP-8 standards
Round 2 - Technical 

(2 Questions)

  • Q1. Architecture of project on which you were working
  • Q2. Pandas and Numpy
Round 3 - HR 

(2 Questions)

  • Q1. Tell me your Current CTC
  • Q2. Tell me your Expected CTC
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the D/W Rest and GraphQL APIS?
  • Q2. REST uses fixes endpoint;..............etc.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell Me about yourself
  • Q2. What is C# and coding.
Round 2 - HR 

(1 Question)

  • Q1. What is your CCTC?

Interview Preparation Tips

Interview preparation tips for other job seekers - Consider this company your last choice.

NovelVox Softwares India Pvt. Ltd. Interview FAQs

What are the top questions asked in NovelVox Softwares India Pvt. Ltd. Associate Software Engineer interview?

Some of the top questions asked at the NovelVox Softwares India Pvt. Ltd. Associate Software Engineer interview -

  1. 2. Difference between String str = "String"; v/s String str = new String("Strin...read more
  2. 3. Write a function for calculating perimeter and area of rectangl...read more
  3. 1. OOPS Concepts with real world example...read more

Tell us how to improve this page.

At par with the average Associate Software Engineer Salary in India
View more details

NovelVox Softwares India Pvt. Ltd. Associate Software Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

4.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
41 salaries
unlock blur

₹4.9 L/yr - ₹13 L/yr

Associate Software Developer
41 salaries
unlock blur

₹4.5 L/yr - ₹6.5 L/yr

Senior Software Developer
14 salaries
unlock blur

₹9 L/yr - ₹19.2 L/yr

Associate Software Engineer
7 salaries
unlock blur

₹5.5 L/yr - ₹6 L/yr

HR Manager
6 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Explore more salaries
Compare NovelVox Softwares India Pvt. Ltd. with

Ameyo

3.4
Compare

Servion Global Solutions

3.5
Compare

Conneqt Business Solutions

3.7
Compare

Teleperformance

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