AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
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
3.8

based on 661 Reviews

Play video Play video Video summary
  • About
  • Reviews
    661
  • Salaries
    4.8k
  • Interviews
    71
  • Jobs
    34
  • Benefits
    50
  • Photos
    5

Filter interviews by

Novac Technology Solutions Interview Questions and Answers

Updated 8 Jun 2025
Popular Designations

23 Interview questions

🔥 Asked by recruiter 2 times
A Senior Technical Engineer was asked 6mo ago
Q. What is IP?
Ans. 

IP stands for Internet Protocol, a set of rules governing the format of data sent over the internet.

  • IP is a unique address assigned to each device connected to a network.

  • It allows devices to communicate with each other by routing data packets.

  • There are two versions of IP - IPv4 and IPv6.

  • Example: IPv4 address - 192.168.1.1, IPv6 address - 2001:0db8:85a3:0000:0000:8a2e:0370:7334

View all Senior Technical Engineer interview questions
A Senior Technical Engineer was asked 6mo ago
Q. What is a domain?
Ans. 

A domain is a group of computers, printers, and other devices that are interconnected and governed by the same security policies.

  • A domain allows for centralized management of users, computers, and resources.

  • Domains are typically used in networking environments to control access and permissions.

  • Examples of domain systems include Microsoft Active Directory and LDAP.

View all Senior Technical Engineer 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 Software Developer was asked 12mo ago
Q. What is dependency injection?
Ans. 

Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

  • Allows for easier testing by mocking dependencies

  • Promotes loose coupling between components

  • Improves code reusability and maintainability

  • Examples: Constructor injection, Setter injection, Interface injection

View all Software Developer interview questions
An ASP.NET Developer was asked
Q. What is abstraction?
Ans. 

Abstraction is the concept of hiding complex implementation details and showing only the necessary information. Interface is a contract that defines the methods that a class must implement.

  • Abstraction allows us to focus on what an object does instead of how it does it.

  • Interface defines a set of methods that a class must implement, but it does not provide the implementation details.

  • Abstraction can be achieved throu...

View all ASP.NET Developer interview questions
Are these interview questions helpful?
An ASP.NET Developer was asked
Q. What is State Management in ASP.NET?
Ans. 

StateManagement in ASP.NET refers to the techniques used to preserve data between multiple requests from the same user.

  • StateManagement is important for maintaining the state of controls on a web page across postbacks.

  • There are different ways of managing state in ASP.NET such as ViewState, Session, Cookies, and Application state.

  • ViewState is used to store page-specific information that is preserved across postbacks...

View all ASP.NET Developer interview questions
An ASP.NET Developer was asked
Q. What is the flow of an MVC application?
Ans. 

MVC application flow involves the request being handled by the controller, which interacts with the model to retrieve data and then passes it to the view for rendering.

  • 1. Request is received by the controller

  • 2. Controller interacts with the model to retrieve data

  • 3. Data is passed to the view for rendering

  • 4. View generates the HTML response to be sent back to the client

View all ASP.NET Developer interview questions
An ASP.NET Developer was asked
Q. What is the difference between a primary key and a unique key?
Ans. 

Primary key uniquely identifies each record in a table, while unique key ensures that all values in a column are different.

  • Primary key does not allow NULL values, while unique key allows one NULL value.

  • A table can have only one primary key, but multiple unique keys.

  • Primary key is automatically indexed, while unique key is not.

  • Example: Primary key for a table of students could be student_id, while unique key could ...

View all ASP.NET Developer interview questions
1 2 3

Novac Technology Solutions Interview Experiences

71 interviews found

Software Engineer Trainee Interview Questions & Answers

user image Anonymous

posted on 3 Dec 2024

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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare what mentioned in resume
Anonymous

Technical Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Jun 2025

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
    Add your answer
  • 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
    Add your answer

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.
Anonymous

Collection Associate Interview Questions & Answers

user image Anonymous

posted on 22 Nov 2024

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

(1 Question)

  • Q1. Non relevant questions asking for that
  • Add your answer
Round 2 - One-on-one 

(2 Questions)

  • Q1. Non asked relevant questions
  • Add your answer
  • Q2. No needed skills only reference will acceptable to
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - I attended an interview at Novak Solution Pvt Ltd in Perungudi, the lady who interviewed me asked me a question that was not related to the job.His question to me was very sad and hurtful.Having people like her gives the whole company a bad name. Terminating her would be good for the company.I don't want to mention her name. I am only referring to the Lady H.R. who interviewed me and not others. That HR gave me worst experience today.Don't hurt anyone by talking like that after this.My Ansar are not ready to listen to them, they have decided by themselves and I don't like their mannerism at all.
Anonymous

Team Lead Interview Questions & Answers

user image Anonymous

posted on 4 Feb 2025

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. What about your self
  • Ans. 

    I am a dedicated and experienced professional with strong leadership skills.

    • 10+ years of experience in leadership roles

    • Proven track record of successfully leading teams to achieve goals

    • Strong communication and problem-solving skills

    • Ability to motivate and inspire team members

    • Experience in project management and strategic planning

  • Answered by AI
    Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Typing test and insurance
  • Add your answer
Round 3 - Behavioral 

(1 Question)

  • Q1. Excel total formulas
  • Add your answer
Anonymous

ASP.NET Developer Interview Questions & Answers

user image Anonymous

posted on 15 May 2024

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

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

Round 1 - Technical 

(6 Questions)

  • Q1. Be strong in the skills you mentioned in your resume
  • Add your answer
  • Q2. What is StateManagement in Asp.Net?
  • Ans. 

    StateManagement in ASP.NET refers to the techniques used to preserve data between multiple requests from the same user.

    • StateManagement is important for maintaining the state of controls on a web page across postbacks.

    • There are different ways of managing state in ASP.NET such as ViewState, Session, Cookies, and Application state.

    • ViewState is used to store page-specific information that is preserved across postbacks.

    • Sess...

  • Answered by AI
    Add your answer
  • Q3. What is the difference between primary and unique key
  • Ans. 

    Primary key uniquely identifies each record in a table, while unique key ensures that all values in a column are different.

    • Primary key does not allow NULL values, while unique key allows one NULL value.

    • A table can have only one primary key, but multiple unique keys.

    • Primary key is automatically indexed, while unique key is not.

    • Example: Primary key for a table of students could be student_id, while unique key could be em...

  • Answered by AI
    Add your answer
  • Q4. What is abstraction and interface
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information. Interface is a contract that defines the methods that a class must implement.

    • Abstraction allows us to focus on what an object does instead of how it does it.

    • Interface defines a set of methods that a class must implement, but it does not provide the implementation details.

    • Abstraction can be achieved through ab...

  • Answered by AI
    Add your answer
  • Q5. What is the flow of mvc application
  • Ans. 

    MVC application flow involves the request being handled by the controller, which interacts with the model to retrieve data and then passes it to the view for rendering.

    • 1. Request is received by the controller

    • 2. Controller interacts with the model to retrieve data

    • 3. Data is passed to the view for rendering

    • 4. View generates the HTML response to be sent back to the client

  • Answered by AI
    Add your answer
  • Q6. What are the roles and responsibilities of your previous project
  • Add your answer
Round 2 - HR 

(1 Question)

  • Q1. What are your salary expectations
  • Add your answer

Interview Preparation Tips

Topics to prepare for Novac Technology Solutions ASP.NET Developer interview:
  • ASP.Net
  • JQuery
  • Entity Framework
  • js
  • SQL
Interview preparation tips for other job seekers - The interviewers were friendly and professional. No need to worry about anything.
Be relaxed and answer the questions.

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2024

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Oops, Web Api, C#.
  • Add your answer
  • Q2. Asp.Net, Javascript
  • Add your answer
  • Q3. Tachnical based on .net.
  • Add your answer
Anonymous

IT Support Officer Interview Questions & Answers

user image Anonymous

posted on 7 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Working clutter good

Round 2 - Technical 

(2 Questions)

  • Q1. System diagnostic
  • Add your answer
  • Q2. Window installation
  • Add your answer
Anonymous

Senior Technical Engineer Interview Questions & Answers

user image Anonymous

posted on 17 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is IP ?
  • Ans. 

    IP stands for Internet Protocol, a set of rules governing the format of data sent over the internet.

    • IP is a unique address assigned to each device connected to a network.

    • It allows devices to communicate with each other by routing data packets.

    • There are two versions of IP - IPv4 and IPv6.

    • Example: IPv4 address - 192.168.1.1, IPv6 address - 2001:0db8:85a3:0000:0000:8a2e:0370:7334

  • Answered by AI
    Add your answer
  • Q2. What is domain
  • Ans. 

    A domain is a group of computers, printers, and other devices that are interconnected and governed by the same security policies.

    • A domain allows for centralized management of users, computers, and resources.

    • Domains are typically used in networking environments to control access and permissions.

    • Examples of domain systems include Microsoft Active Directory and LDAP.

  • Answered by AI
    Add your answer
Anonymous

Finance Executive Interview Questions & Answers

user image Anonymous

posted on 19 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced finance executive with a strong background in financial analysis and strategic planning.

    • Over 10 years of experience in finance roles

    • Skilled in financial analysis, budgeting, and forecasting

    • Proven track record of driving profitability and growth

    • Strong leadership and communication skills

    • Previously worked as a Finance Manager at XYZ Company

  • Answered by AI
    Add your answer
  • Q2. Golden rules of accounting
  • Ans. 

    Golden rules of accounting are basic principles that guide the process of recording financial transactions.

    • The three golden rules of accounting are: Debit the receiver, Credit the giver; Debit what comes in, Credit what goes out; Debit expenses and losses, Credit income and gains.

    • These rules help ensure that financial transactions are accurately recorded and classified in the accounting system.

    • For example, when a compa...

  • Answered by AI
    Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 22 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by mocking dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
    Add your answer
  • Q2. Authentication and authorization in API
  • Ans. 

    Authentication verifies user identity, while authorization determines user access rights.

    • Authentication ensures the user is who they claim to be, usually through credentials like username and password.

    • Authorization determines what actions a user is allowed to perform after authentication.

    • APIs often use tokens like JWT for authentication and role-based access control for authorization.

    • Implementing OAuth 2.0 can provide ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Anonymous

Top trending discussions

View All
Interview Tips & Stories
1w (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.
More about working at Novac Technology Solutions
  • HQ - Chennai, Tamil Nadu, India
  • Software Product
  • 1k-5k Employees (India)
  • FinTech

Novac Technology Solutions Interview FAQs

How many rounds are there in Novac Technology Solutions interview?
Novac Technology Solutions interview process usually has 2-3 rounds. The most common rounds in the Novac Technology Solutions interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for Novac Technology Solutions 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 Novac Technology Solutions. The most common topics and skills that interviewers at Novac Technology Solutions expect are Sales, Finance, Automobile, Marketing and mba.
What are the top questions asked in Novac Technology Solutions interview?

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

  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. What is the difference between primary and unique ...read more
What are the most common questions asked in Novac Technology Solutions HR round?

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

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. What are your salary expectatio...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.

Novac Technology Solutions Interviews By Designations

  • Novac Technology Solutions Software Engineer Interview Questions
  • Novac Technology Solutions Software Engineer Trainee Interview Questions
  • Novac Technology Solutions Software Developer Interview Questions
  • Novac Technology Solutions Softwaretest Engineer Interview Questions
  • Novac Technology Solutions Test Engineer Interview Questions
  • Novac Technology Solutions Process Associate Interview Questions
  • Novac Technology Solutions Senior Software Engineer Interview Questions
  • Novac Technology Solutions Senior Customer Service Executive Interview Questions
  • Show more
  • Novac Technology Solutions Senior Technical Engineer Interview Questions
  • Novac Technology Solutions Associate Software Engineer Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Software Engineer Trainee Interview Questions
  • Software Developer Interview Questions
  • Executive Interview Questions
  • Associate Software Engineer Interview Questions
  • Java Developer Interview Questions
  • Senior Software Engineer Interview Questions
  • Manager Interview Questions
  • Show more
  • Assistant Manager Interview Questions
  • Sales Officer Interview Questions

Overall Interview Experience Rating

4.1/5

based on 77 interview experiences

Difficulty level

Easy 44%
Moderate 54%
Hard 3%

Duration

Less than 2 weeks 76%
2-4 weeks 21%
6-8 weeks 3%
View more

Interview Questions from Similar Companies

Chetu
Chetu Interview Questions
3.3
 • 198 Interviews
HighRadius
HighRadius Interview Questions
2.8
 • 197 Interviews
AVASOFT
AVASOFT Interview Questions
2.8
 • 175 Interviews
ivy
ivy Interview Questions
3.6
 • 133 Interviews
Axtria
Axtria Interview Questions
2.9
 • 127 Interviews
Thomson Reuters
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
DE Shaw
DE Shaw Interview Questions
3.8
 • 124 Interviews
Amadeus
Amadeus Interview Questions
3.8
 • 115 Interviews
IBS Software Services
IBS Software Services Interview Questions
3.6
 • 115 Interviews
UKG
UKG Interview Questions
3.1
 • 113 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
Jobs at Novac Technology Solutions
Novac Technology Solutions
Soc Analyst

Chennai

2-5 Yrs

Not Disclosed

Novac Technology Solutions
Network Manager(11-17)- IT Infrastructure

Chennai

10-18 Yrs

Not Disclosed

Novac Technology Solutions
Technical Delivery Manager(10-15years)

Chennai

12-18 Yrs

Not Disclosed

Explore more jobs
Novac Technology Solutions Salaries in India
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

Thomson Reuters

4.1
Compare
HighRadius

HighRadius

2.8
Compare
Chetu

Chetu

3.3
Compare
EbixCash Limited

EbixCash Limited

3.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Novac Technology Solutions Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter