Upload Button Icon Add office photos
Engaged Employer

i

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

Coding Nebula Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Coding Nebula Interview Questions, Process, and Tips

Updated 2 Apr 2021

Coding Nebula Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Define clases and objects
  • Ans. 

    Classes are blueprints for creating objects, which are instances of a class.

    • Classes define the properties and behaviors of objects.

    • Objects are created from classes and can have their own unique values for properties.

    • Classes can have methods that define the actions an object can perform.

    • Objects can interact with each other through methods and properties.

    • Inheritance allows classes to inherit properties and behaviors from...

  • Answered by AI
  • Q2. What is exception handling
  • Ans. 

    Exception handling is a mechanism to handle runtime errors and prevent program crashes.

    • It allows the program to gracefully handle errors and continue execution.

    • It involves catching and handling exceptions using try-catch blocks.

    • Common exceptions include NullPointerException, ArrayIndexOutOfBoundsException, and IOException.

    • Exception handling can also involve throwing custom exceptions to handle specific errors.

    • It is an ...

  • Answered by AI
  • Q3. What is json, how to extract objects from json
  • Ans. 

    JSON is a lightweight data interchange format. Objects can be extracted using key-value pairs.

    • JSON stands for JavaScript Object Notation

    • It is a text format that is easy to read and write for humans

    • Objects in JSON are enclosed in curly braces {}

    • Arrays in JSON are enclosed in square brackets []

    • To extract objects from JSON, use key-value pairs to access the desired data

  • Answered by AI
  • Q4. What are stack and queue
  • Ans. 

    Stack and queue are data structures used to store and retrieve data in a specific order.

    • Stack is a Last-In-First-Out (LIFO) data structure where the last element added is the first one to be removed. Example: undo-redo feature in text editors.

    • Queue is a First-In-First-Out (FIFO) data structure where the first element added is the first one to be removed. Example: waiting line in a restaurant.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basic concepts. Try to read as many as possible interview questions.

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)

Interview questions from similar companies

I applied via Referral and was interviewed before Mar 2021. There were 3 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 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?
Round 3 - Technical 

(1 Question)

  • Q1. About process and total experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be attentive. Always provide answer to the point. Explain your full experience in good and accurate manner. You need to provide full and constrictive information about your process/operation knowledge

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)

I applied via Campus Placement and was interviewed before Mar 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basics about .Net and SQl server
  • Q2. What are triggers
  • Ans. 

    Triggers are database objects that automatically execute in response to certain events or changes in data.

    • Triggers are used to enforce business rules or data integrity.

    • They can be used to audit changes to data.

    • Triggers can be set to execute before or after an event, such as an insert, update, or delete operation.

    • They can be defined on tables, views, or schemas.

    • Examples of triggers include sending an email notification ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be honest. They prefer learnability over current knowledge

Skills evaluated in this interview

I appeared for an interview in Sep 2021.

Interview Questionnaire 

1 Question

  • Q1. About project?

Interview Preparation Tips

Interview preparation tips for other job seekers - The level of the interview was intermediate

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

Interview Questionnaire 

1 Question

  • Q1. Tell me a little about your self?

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask if they have any hesitations

Interview Questionnaire 

1 Question

  • Q1. Tell me something about your self?

Interview Preparation Tips

Interview preparation tips for other job seekers - Must have complete knowledge of your domain and you skill.

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions on Microsoft .net/core Azure.

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was technical 1 and it's all about 30 minutes around, during interview interviewer ask sometimes baseless questions but interviewee should catch the trap and respond trick to the answer. Sometimes interviewer argued during his or her point how they are correct on their ask but advice to the interviewee not to get into the dispute/argument rest all is depend on the person who is taking an interview technically.
Some formality question may ask like tell me about yourself? what were you are doing so far?are you comfortable for something like in night shifts? etc to check your communication. I advise be honest with yourself on this questions so that you may avoid searching next job after immediately joining the next organisation. I also request don't say yes for sake of yes for the offer and based on that you search the next organisation during your notice period and finally you may drop all the less offered salaries organisations, believe me the offer which you have rejected that may help to the needy person and also maintain the trust in the IT industry if you are honest with yourself.

thanks and best of luck.

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why shud I hire

Interview Preparation Tips

Interview preparation tips for other job seekers - Go as like attitude beast

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Yourself
  • Q2. How do you feel about working nights and weekends?
  • Q3. I will try to complete my tasks within weekdays effectively and efficiently to avoid weekand night work.
  • Q4. What is the difference b/w confidence and over confidence?

Interview Preparation Tips

Interview preparation tips for other job seekers - Tech mahendra company is a very efficent work hard and if you have a growth of employees skills and sincearly work hard

Coding Nebula Interview FAQs

How to prepare for Coding Nebula 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 Coding Nebula. The most common topics and skills that interviewers at Coding Nebula expect are GIT, Java, JSON, Javascript and Sockets.
What are the top questions asked in Coding Nebula interview?

Some of the top questions asked at the Coding Nebula interview -

  1. What is json, how to extract objects from j...read more
  2. Define clases and obje...read more
  3. What is exception handl...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Amazon Interview Questions
4.0
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.2k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.2k Interviews
View all

Coding Nebula Reviews and Ratings

based on 10 reviews

4.5/5

Rating in categories

4.5

Skill development

4.6

Work-life balance

4.5

Salary

4.5

Job security

4.5

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 10 Reviews and Ratings
Software Developer
4 salaries
unlock blur

₹3.6 L/yr - ₹4.5 L/yr

Associate Software Engineer
4 salaries
unlock blur

₹2.4 L/yr - ₹4.2 L/yr

Associate Software Developer
4 salaries
unlock blur

₹3 L/yr - ₹3.6 L/yr

QA Engineer
3 salaries
unlock blur

₹2.4 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Coding Nebula with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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