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

Round 1 - Coding Test 

Write Fabonacci series code using storeproceduer

Round 2 - Technical 

(1 Question)

  • Q1. Some SQL query and basic DBMS theory questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to work... Specially for database developer

I applied via Recruitment Consultant and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Joins, sql basics,ssrs,triggers

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was smooth and they confirmed the selection quite fast

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Questions on aptitude, English, logical reasoning, C/C++ and 5 coding ques. (only pseudo code).

  • Q1. 

    Minimum Jumps Problem Statement

    Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampolines. Each shop is laid out in a st...

  • Ans. 

    Find the minimum number of trampoline jumps Bob needs to make to reach the final shop, or return -1 if it's impossible.

    • Use Breadth First Search (BFS) algorithm to find the minimum number of jumps required.

    • Keep track of the visited shops to avoid revisiting them.

    • If a shop has an Arr value of 0, it is impossible to reach the final shop.

    • Return -1 if the final shop cannot be reached.

  • Answered by AI
  • Q2. 

    Smallest Window Problem Statement

    Given two strings, S and X, your task is to find the smallest substring in S that contains all the characters present in X.

    Example:

    Input:
    S = "abdd", X = "bd"
    Outpu...
  • Ans. 

    Find the smallest substring in S that contains all characters in X.

    • Use a sliding window approach to find the smallest window in S containing all characters of X.

    • Maintain a hashmap to keep track of characters in X and their frequencies in the current window.

    • Slide the window to the right, updating the hashmap and shrinking the window until all characters in X are present.

    • Return the smallest window found.

    • Example: S = 'abd

  • Answered by AI
  • Q3. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from start to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Return paths in alphabetical order as a list of strings.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Questions based on OOPS were asked in this round.

  • Q1. What is a virtual function?
  • Ans. 

    A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function with the same signature in a derived class.

    • Virtual functions allow for dynamic polymorphism in C++

    • They are used in inheritance to achieve runtime polymorphism

    • Virtual functions are declared in a base class and can be overridden in derived classes

    • They are called based on the type of object bei...

  • Answered by AI
  • Q2. What are the types of polymorphism in Object-Oriented Programming?
  • Ans. 

    Types of polymorphism in OOP include compile-time (method overloading) and runtime (method overriding) polymorphism.

    • Compile-time polymorphism is achieved through method overloading, where multiple methods have the same name but different parameters.

    • Runtime polymorphism is achieved through method overriding, where a subclass provides a specific implementation of a method that is already defined in its superclass.

    • Polymor...

  • Answered by AI
  • Q3. What is the difference between deep copy and shallow copy?
  • Ans. 

    Deep copy creates a new object and recursively copies all nested objects, while shallow copy creates a new object and copies only the references to nested objects.

    • Deep copy creates a new object and copies all nested objects, while shallow copy creates a new object and copies only the references to nested objects.

    • In deep copy, changes made to the original object do not affect the copied object, while in shallow copy, ch...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2017. There were 5 interview rounds.

Interview Preparation Tips

Round: Resume Shortlist
Experience: My resume got shortlisted through naukri.com .I got a call from ambitionbox.com and then i was asked to come for a face to face interview.

Round: HR Interview
Experience: Second round was HR Interview .In HR interview i was asked about my hobbies,my career goals,my ideas and about company and their Products.
Tips: Be calm and confident!

Round: Test
Experience: Third round was a writing test .i was asked to write about any topic in 5 minutes to check my writing skills and grammar sense
Tips: Be creative.

Round: Presentation
Experience: The fourth round was a presentation round in this i have to present about any topic(political,technical ,anything)in 10 minutes

General Tips: Be confident and creative ! stay calm and should apply presence of mind.the interviewer wanted to test both my knowledge and my communication skills.please go through the job description thoroughly.
Skills: Body Language, Problem Solving, Presentation Skills, Time Management, Decision Making Skills
Duration: <1 week

I applied via Naukri.com and was interviewed in Jul 2017. There were 4 interview rounds.

Interview Preparation Tips

Round: Test
Experience: i was asked to write about any topic just to check my writing skills

Round: presentation
Experience: I have to present a presentation about any topic in 5 mins

General Tips: Be confident,creative and expressive
Skills: Communication, Body Language, Analytical Skills, Leadership, Presentation Skills, Time Management
Duration: <1 week

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
 • 327 Interviews
Info Edge Interview Questions
3.9
 • 316 Interviews
IIFL Finance Interview Questions
4.0
 • 246 Interviews
MakeMyTrip Interview Questions
3.7
 • 122 Interviews
Matrimony.com Interview Questions
4.3
 • 87 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

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Mobile Application Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Automation Test Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 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.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview