Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Novac Technology Solutions Team. If you also belong to the team, you can get access from here

Novac Technology Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Novac Technology Solutions Interview Questions and Answers for Freshers

Updated 8 Jun 2025
Popular Designations

6 Interview questions

A Software Engineer Trainee was asked 7mo ago
Q. You have a cricket team of 15 players. You need to select 11 players to play. Represent the 11 players who will play with a binary value of 1, and the remaining 4 players with a binary value of 0. Write cod...
Ans. 

Select 11 players from a cricket team of 15 based on binary values indicating their participation.

  • Use an array of size 15 to represent players, where 1 indicates a player will play and 0 indicates they won't.

  • Example array: [1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0]

  • Count the number of 1s in the array to ensure only 11 players are selected.

  • If there are more than 11 players with value 1, you can choose any 11 of t...

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 7mo ago
Q. Design a web page using HTML and CSS. The page should contain a header and footer. The body should contain three cards in a single row.
Ans. 

A simple webpage layout using HTML and CSS with a header, footer, and three cards in a row.

  • Use <header> and <footer> tags for the header and footer sections.

  • Create a <div> for the body content and use CSS Flexbox to align the cards.

  • Each card can be a <div> with a class, styled with padding, margin, and background color.

  • Example CSS: .card { flex: 1; margin: 10px; padding: 20px; background-co...

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 7mo ago
Q. In SQL Server, how can you combine data from two tables with identical columns without using JOIN clauses?
Ans. 

Combine two tables with identical columns in SQL Server without using traditional joins, leveraging UNION or subqueries instead.

  • Use UNION to combine results from both tables: SELECT * FROM Table1 UNION SELECT * FROM Table2;

  • UNION ALL can be used if you want to include duplicate rows: SELECT * FROM Table1 UNION ALL SELECT * FROM Table2;

  • Subqueries can also be utilized: SELECT * FROM (SELECT * FROM Table1) AS T1, (SEL...

View all Software Engineer Trainee interview questions
A Softwaretest Engineer was asked
Q. What is inheritance?
Ans. 

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

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

  • Promotes code reusability and reduces redundancy

  • Derived class can add its own attributes and methods or override existing ones

  • Example: Class 'Car' can inherit from class 'Vehicle' and gain attributes like 'color' and methods like...

View all Softwaretest Engineer interview questions
A fresher was asked
Q. How would you explain your computer knowledge and technical coding skills?
Ans. 

I have knowledge of computer systems and programming languages to troubleshoot technical issues.

  • Proficient in programming languages such as Java, Python, and C++

  • Familiar with operating systems such as Windows, Linux, and macOS

  • Able to diagnose and resolve technical issues related to hardware and software

  • Experience with debugging and testing code

  • Knowledge of database management systems and SQL

  • Ability to learn and ad...

View all fresher interview questions
A Technical Engineer was asked 1mo ago
Q. Ipv4 vs ipv6
Ans. 

IPv4 and IPv6 are two versions of Internet Protocol, with IPv6 designed to replace IPv4 due to address exhaustion.

  • IPv4 uses 32-bit addresses, allowing for about 4.3 billion unique addresses.

  • IPv6 uses 128-bit addresses, providing a virtually limitless number of addresses (approximately 340 undecillion).

  • IPv4 addresses are written in decimal format (e.g., 192.168.1.1), while IPv6 addresses are written in hexadecimal ...

View all Technical Engineer interview questions

Novac Technology Solutions Interview Experiences for Freshers

9 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Walk-in

Round 1 - Aptitude Test 

They gave 100 aptitude questions like distance,time,logical reasoning , puzzle, etc.. to solve within 1 hour but 40 marks is pass mark.

Round 2 - Technical 

(4 Questions)

  • Q1. I said that I know html, css and basics of C#. So, they gave first question as do the web page designing using html and css. In page, it contains header and footer. In between header and footer the body t...
  • Ans. 

    A simple webpage layout using HTML and CSS with a header, footer, and three cards in a row.

    • Use <header> and <footer> tags for the header and footer sections.

    • Create a <div> for the body content and use CSS Flexbox to align the cards.

    • Each card can be a <div> with a class, styled with padding, margin, and background color.

    • Example CSS: .card { flex: 1; margin: 10px; padding: 20px; background-color: ...

  • Answered by AI
  • Q2. Sum of digits inc#
  • Ans. 

    The question is asking for a program to calculate the sum of digits in a given number.

    • Create a function that takes in a number as input

    • Convert the number to a string to iterate through each digit

    • Sum up all the digits and return the total

  • Answered by AI
  • Q3. Scenario based basic program question. 15 team players in the cricket team . But you have to choose only 11 members to play. He told that 11 members have binary value 1 and another 4 members have binay va...
  • Ans. 

    Select 11 players from a cricket team of 15 based on binary values indicating their participation.

    • Use an array of size 15 to represent players, where 1 indicates a player will play and 0 indicates they won't.

    • Example array: [1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0]

    • Count the number of 1s in the array to ensure only 11 players are selected.

    • If there are more than 11 players with value 1, you can choose any 11 of them.

  • Answered by AI
  • Q4. In sql server, join two tables it contains same columns but don't use joins.
  • Ans. 

    Combine two tables with identical columns in SQL Server without using traditional joins, leveraging UNION or subqueries instead.

    • Use UNION to combine results from both tables: SELECT * FROM Table1 UNION SELECT * FROM Table2;

    • UNION ALL can be used if you want to include duplicate rows: SELECT * FROM Table1 UNION ALL SELECT * FROM Table2;

    • Subqueries can also be utilized: SELECT * FROM (SELECT * FROM Table1) AS T1, (SELECT *...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare what mentioned in resume
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What is ip
  • Ans. 

    IP stands for Internet Protocol, a set of rules governing data transmission over networks.

    • IP addresses are unique identifiers for devices on a network, e.g., 192.168.1.1.

    • There are two main versions: IPv4 (32-bit) and IPv6 (128-bit).

    • IPv4 can support about 4.3 billion addresses, while IPv6 can support a vastly larger number.

    • IP is essential for routing data packets between devices on the internet.

  • Answered by AI
  • Q2. Ipv4 vs ipv6
  • Ans. 

    IPv4 and IPv6 are two versions of Internet Protocol, with IPv6 designed to replace IPv4 due to address exhaustion.

    • IPv4 uses 32-bit addresses, allowing for about 4.3 billion unique addresses.

    • IPv6 uses 128-bit addresses, providing a virtually limitless number of addresses (approximately 340 undecillion).

    • IPv4 addresses are written in decimal format (e.g., 192.168.1.1), while IPv6 addresses are written in hexadecimal (e.g....

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I attended an interview for the role of Technical Engineer. After the assessment, one HR scheduled my technical round, but it was conducted by another HR. After the interview, I didn’t get any update, so I messaged both HRs. One said I was shortlisted, and the other said I wasn’t. Later, they scheduled a one-on-one round. After that, I got a call from HR saying I was selected and would receive the offer by Monday. But I didn’t get any update. When I followed up, the HR said she would update me soon. Two days later, she told me my profile was on hold. Because of this, I had already rejected another internship, trusting their words. In the end, I was left with nothing.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Time and distance,Trains,Height and distance, percentage and profit and loss

Round 2 - Coding Test 

Prime number,pattern,palindrome

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Say about your self & experience about previous company
  • Q2. Say about your self & experience about previous company good morning say about previous company
Round 3 - One-on-one 

(1 Question)

  • Q1. Good morning say to hr and give to hand to him
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is inheritance
  • Ans. 

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

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

    • Promotes code reusability and reduces redundancy

    • Derived class can add its own attributes and methods or override existing ones

    • Example: Class 'Car' can inherit from class 'Vehicle' and gain attributes like 'color' and methods like 'dri...

  • Answered by AI
  • Q2. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn basics

fresher Interview Questions & Answers

user image Milan Singam

posted on 5 Jun 2022

I applied via Campus Placement and was interviewed in May 2022. There were 6 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 - Aptitude Test 
Round 3 - Coding Test 

Basically 5 Coding Test. Answer me this Round.

Round 4 - Group Discussion 

Minimum 10 person one group and Any one Topic Lesson and Speech...

Round 5 - Technical 

(2 Questions)

  • Q1. Technically this round is very difficult. But, coding and Computer Knowledge Round.
  • Q2. You Know The Computer Knowledge and Coding Technical Issues. How to Explain?
  • Ans. 

    I have knowledge of computer systems and programming languages to troubleshoot technical issues.

    • Proficient in programming languages such as Java, Python, and C++

    • Familiar with operating systems such as Windows, Linux, and macOS

    • Able to diagnose and resolve technical issues related to hardware and software

    • Experience with debugging and testing code

    • Knowledge of database management systems and SQL

    • Ability to learn and adapt t...

  • Answered by AI
Round 6 - HR 

(2 Questions)

  • Q1. This Final Round, This Round Final My All Documents and My Family Background Check it. And last of Selected. This Round.
  • Q2. Your Full Documents and Your family Detail tell me?

Interview Preparation Tips

Interview preparation tips for other job seekers - Any Jod Describetion Full Read to Attend the Interview.

Skills evaluated in this interview

I applied via AmbitionBox and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Manual Testing learned
  • Q2. SDLC,defect life cycle, test scenarios

Interview Preparation Tips

Topics to prepare for Novac Technology Solutions Test Engineer interview:
  • Manual Testing
Interview preparation tips for other job seekers - I'm in fresher candidate, so find out any interviews

I applied via Referral and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

All sorts of quantitave aptitude as well as logical reasoning questions were asked

Round 2 - Technical 

(1 Question)

  • Q1. Rdbms questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't shy away from revealing them what you know and don't know

I applied via Walk-in and was interviewed in Aug 2021. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I would like to discuss my salary expectations further during the negotiation process.

    • Express willingness to discuss salary expectations further

    • Highlight the importance of negotiation

    • Avoid giving a specific salary figure

    • Emphasize the focus on overall compensation package

  • Answered by AI
  • Q2. Tell me about yourself.
  • Ans. 

    I am a highly motivated individual with a strong background in customer service and a passion for providing exceptional experiences.

    • Extensive experience in customer service roles

    • Strong communication and problem-solving skills

    • Proven ability to handle difficult situations with professionalism

    • Passionate about delivering outstanding customer experiences

    • Quick learner and adaptable to new environments

    • Team player with excelle...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls provide me a back office job.
BSC graduate level job

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Novac Technology Solutions?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - System test 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

Novac Technology Solutions Interview FAQs

How many rounds are there in Novac Technology Solutions interview for freshers?
Novac Technology Solutions interview process for freshers usually has 2-3 rounds. The most common rounds in the Novac Technology Solutions interview process for freshers are Aptitude Test, Technical and Resume Shortlist.
How to prepare for Novac Technology Solutions interview for freshers?
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 Novac Technology Solutions. The most common topics and skills that interviewers at Novac Technology Solutions expect are Data Entry, non voice, typing, Non Voice Process and Back Office.
What are the top questions asked in Novac Technology Solutions interview for freshers?

Some of the top questions asked at the Novac Technology Solutions interview for freshers -

  1. Scenario based basic program question. 15 team players in the cricket team . B...read more
  2. You Know The Computer Knowledge and Coding Technical Issues. How to Expla...read more
  3. I said that I know html, css and basics of C#. So, they gave first question as ...read more
What are the most common questions asked in Novac Technology Solutions HR round for freshers?

The most common HR questions asked in Novac Technology Solutions interview are for freshers -

  1. What are your salary expectatio...read more
  2. Tell me about yourse...read more
  3. What are your strengths and weakness...read more
How long is the Novac Technology Solutions interview process?

The duration of Novac Technology Solutions 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.8/5

based on 5 interview experiences

Difficulty level

Easy 75%
Moderate 25%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 198 Interviews
HighRadius Interview Questions
2.8
 • 197 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
ivy Interview Questions
3.6
 • 133 Interviews
Axtria Interview Questions
2.9
 • 126 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
DE Shaw Interview Questions
3.8
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 112 Interviews
View all

Novac Technology Solutions Reviews and Ratings

based on 661 reviews

3.8/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

3.1

Salary

4.2

Job security

3.6

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 661 Reviews and Ratings
Network Manager(11-17)- IT Infrastructure

Chennai

10-18 Yrs

Not Disclosed

Technical Delivery Manager(10-15years)

Chennai

12-18 Yrs

Not Disclosed

Technical Lead(6-10years) - Chennai

Chennai

6-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
619 salaries
unlock blur

₹2.2 L/yr - ₹7 L/yr

Senior Software Engineer
412 salaries
unlock blur

₹3.7 L/yr - ₹8 L/yr

Associate
211 salaries
unlock blur

₹1.2 L/yr - ₹3.2 L/yr

Associate Project Manager
156 salaries
unlock blur

₹5.2 L/yr - ₹11.6 L/yr

Test Engineer
141 salaries
unlock blur

₹2.2 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Novac Technology Solutions with

Thomson Reuters

4.1
Compare

HighRadius

2.8
Compare

Chetu

3.3
Compare

EbixCash Limited

3.9
Compare
write
Share an Interview