Upload Button Icon Add office photos

Filter interviews by

Nowcom Interview Questions and Answers

Updated 25 Jul 2024

Nowcom Interview Experiences

Popular Designations

5 interviews found

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

(1 Question)

  • Q1. Tell me about yourself
Round 2 - Technical 

(1 Question)

  • Q1. Why can't I get an email even its send?

Software QA Engineer Interview Questions asked at other Companies

Q1. What exceptions have u faced while creating framework?
View answer (1)

ASP.NET Developer Interview Questions & Answers

user image Johnna Kate Dela Vega

posted on 18 Jun 2024

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

(2 Questions)

  • Q1. What is oop ?
  • Ans. 

    OOP stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOP focuses on creating objects that contain both data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Examples of OOP languages include Java, C++, and C#.

  • Answered by AI
  • Q2. What are the 4 pillars?
  • Ans. 

    The 4 pillars of object-oriented programming are encapsulation, inheritance, polymorphism, and abstraction.

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

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

    • Polymorphism: The ability for objects of different classes to respond to the same message.

    • Abstraction: Hiding the complex implementation details a

  • Answered by AI

ASP.NET Developer Interview Questions asked at other Companies

Q1. All opps concept. What is constructor?, what is delegets? What is inheritance? What is abtract class.?
View answer (1)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Jul 2024

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

I applied via Referral and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Query execution plan related questions
  • Q2. Real time question for sql query
  • Q3. Level of sql query is intermediate.

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

SQL Developer Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2020

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. All are related performance tuning only. To anwer them we need to read seperate performance tuning book.
  • Q2. He will ask you to tell me complete execution plan of query he given. To anwer that we need sql sever open aside. Not satisfied with components like index seek or index scan. He need complete plan.

Interview Preparation Tips

Interview preparation tips for other job seekers - Behaviour of interviwer is worst. Interviewer will not test your skills rather he will try to collapse your confidence with his way of asking questions. He won't encourage you rather he will discourage you. Only asked questions on tuning in depth ... Not at all on sql server coding

Interviewer feel like he gave opportunity to us
And treat interviewee like a slave.

I feel like he is stress mode and asked questions in aggressive way. He also end interview in very aggressive way. Later i feel like why should i left him without leaving word on him.

Better don't go for this company interview. In interview itself his behaviour is worst, if we joined in that company, he will play with you.

SQL Developer Interview Questions asked at other Companies

Q1. How is a change request in application serviced by development team (business analysis, code analysis, discussion with BA, requirment freeze, etc.)
View answer (4)

Nowcom interview questions for popular designations

 SQL Developer

 (2)

 ASP.NET Developer

 (1)

 Data Engineer

 (1)

 Software QA Engineer

 (1)

SQL Developer Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2020

Interview Questionnaire 

1 Question

  • Q1. Only asked questions on performance tuning in depth not asking any query on sql coding.. To anser questions we need to read performance tuning book. He will ask you to tell him complete execution plan of ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer behaviour is very worst. He will ask questions in very aggressive way and collapse your confidence. He won't encourage you rather he will discourage you. You will lost intrest in answering next questions with his attitude.

He feel like he gave opportunity to us not treating interviewer give chance to company to uttilise our skills.

Interviewer ends interview in very aggressive way. Later i feel like why should left him without leaving word on him. Take care of your self respect if you are going to this company interview.

SQL Developer Interview Questions asked at other Companies

Q1. How is a change request in application serviced by development team (business analysis, code analysis, discussion with BA, requirment freeze, etc.)
View answer (4)

Interview questions from similar companies

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

(3 Questions)

  • Q1. What is a synchronous machine?
  • Q2. What is a synchronous motor?
  • Q3. What is a synchronous speed
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Group Discussion 

It is not best for employes

Round 2 - Group Discussion 

Your experience with quality

Round 3 - Aptitude Test 

It is gone wrong due to illness

Round 4 - One-on-one 

(2 Questions)

  • Q1. Ti bit is bad round
  • Q2. Hopless the reason i didn,t give answer

Interview Preparation Tips

Interview preparation tips for other job seekers - it is not good for employes
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

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

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Tell me about yourself?
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and experienced Virtual Relationship Manager with a passion for building strong connections and providing excellent customer service.

    • Over 5 years of experience in virtual relationship management

    • Skilled in communication, problem-solving, and relationship-building

    • Proven track record of exceeding customer satisfaction goals

    • Proficient in CRM software and virtual communication tools

  • Answered by AI
  • Q2. Why do you want to join
  • Ans. 

    I am passionate about leveraging technology to enhance customer relationships and provide personalized solutions.

    • Passionate about using technology to improve customer relationships

    • Excited about providing personalized solutions

    • Believe in the importance of virtual communication in today's digital world

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very bad experience till date.. no response from the employer for any kind of queries. No formal documents are provided for company policies. Misleaded on the interview.

Nowcom Interview FAQs

How many rounds are there in Nowcom interview?
Nowcom interview process usually has 1-2 rounds. The most common rounds in the Nowcom interview process are Technical and HR.
How to prepare for Nowcom 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 Nowcom. The most common topics and skills that interviewers at Nowcom expect are SQL Server, SSIS, HTML, T - SQL and Javascript.
What are the top questions asked in Nowcom interview?

Some of the top questions asked at the Nowcom interview -

  1. what are the 4 pilla...read more
  2. what is oo...read more
  3. Only asked questions on performance tuning in depth not asking any query on sql...read more

Tell us how to improve this page.

Nowcom Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

JustDial Interview Questions
3.5
 • 329 Interviews
Info Edge Interview Questions
3.9
 • 319 Interviews
IIFL Finance Interview Questions
4.0
 • 244 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
Matrimony.com Interview Questions
4.3
 • 88 Interviews
Network 18 Interview Questions
3.5
 • 26 Interviews
View all

Nowcom Reviews and Ratings

based on 6 reviews

4.1/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

4.0

Salary

4.1

Job security

3.5

Company culture

3.7

Promotions

3.3

Work satisfaction

Explore 6 Reviews and Ratings
AI/Machine Learning Engineer

Hyderabad / Secunderabad

4-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
7 salaries
unlock blur

₹6.2 L/yr - ₹9 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹8 L/yr - ₹21 L/yr

QA Engineer
6 salaries
unlock blur

₹6.8 L/yr - ₹9.6 L/yr

Mobile Application Developer
5 salaries
unlock blur

₹6 L/yr - ₹11.3 L/yr

Automation Test Engineer
5 salaries
unlock blur

₹10.5 L/yr - ₹17.6 L/yr

Explore more salaries
Compare Nowcom with

Info Edge

3.9
Compare

JustDial

3.5
Compare

Indiamart Intermesh

3.6
Compare

Matrimony.com

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