Upload Button Icon Add office photos

Filter interviews by

Supernova Engineers Senior Software Engineer 2 Interview Questions and Answers

Updated 10 Apr 2024

Supernova Engineers Senior Software Engineer 2 Interview Experiences

1 interview found

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

I applied via Instahyre and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Assignment 

Using OpenAI API create a chat application where based on selected word you have to explain the word and if understood take quiz and give score. Deploy the application on any platform.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Logical reasoning and technical aptitude questions

Round 2 - Technical 

(2 Questions)

  • Q1. Design a tic tac toe game
  • Ans. 

    A simple tic tac toe game design with a 3x3 grid and two players taking turns to place their marks.

    • Create a 3x3 grid to represent the game board

    • Allow two players to take turns placing their marks (X or O) on the grid

    • Check for a win condition after each move to determine the winner

    • Handle tie game if all spaces on the grid are filled without a winner

  • Answered by AI
  • Q2. Questions based on resume
Round 3 - Technical 

(2 Questions)

  • Q1. Oops concept based questions
  • Q2. Designing a login page
  • Ans. 

    Designing a login page for a software application

    • Include fields for username and password

    • Implement password strength validation

    • Provide option for password reset

    • Incorporate CAPTCHA for security

    • Utilize HTTPS for secure communication

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. About yourself description
  • Q2. Interests and hobbies

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Questions were asked on Recursive programming
  • Q2. What is the output of this? static void Main(string[] args) { DivideNumber(233) } static void DivideNumber(int n) { if(n>=10) { DivideNumber(n/10); } Console.Write(n/10) }
  • Ans. 

    The output will be 23323

    • The DivideNumber method recursively divides the input number by 10 until it is less than 10

    • The Console.Write statement prints the result of n/10 each time the method is called

  • Answered by AI
  • Q3. Write Code If Input is 123, output should be "One Hundred Twenty Three";
  • Ans. 

    Convert numeric input to words in English

    • Break down the input number into hundreds, tens, and ones place

    • Use a dictionary or array to map numbers to their corresponding words

    • Handle special cases like teens and tens separately

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Institute of Management Studies (IMS), Ghaziabad and was interviewed in Aug 2023. 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 - Coding Test 

They asked basic programs, cloud computing, computer networking

Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to join company? , how do you manage your expense of home in this salary amount?
  • Q2. Introduce yourself, strength, weakness, hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do everything with confidence, don't get stressed and you will easily pass the interview.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

It was of 45 minutes they asked patterns and arrays question

Round 2 - HR 

(5 Questions)

  • Q1. What is your goal
  • Ans. 

    My goal is to continuously improve my coding skills, contribute to innovative projects, and eventually become a technical leader in the software development field.

    • Continuous improvement through learning new technologies and best practices

    • Contribute to innovative projects by developing high-quality, efficient code

    • Work towards becoming a technical leader by mentoring junior developers and leading technical initiatives

  • Answered by AI
  • Q2. Where do u see urself in 5 years
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team on innovative projects.

    • Continuing to enhance my technical skills and knowledge through ongoing learning and certifications

    • Taking on more leadership responsibilities and mentoring junior developers

    • Contributing to the success and growth of the company through my expertise and dedication

  • Answered by AI
  • Q3. What is computer networks
  • Ans. 

    Computer networks are systems of interconnected computers that communicate with each other to share resources and information.

    • Computer networks allow for the sharing of resources such as files, printers, and internet connections.

    • They enable communication between devices through protocols like TCP/IP.

    • Examples of computer networks include LANs (Local Area Networks) and WANs (Wide Area Networks).

  • Answered by AI
  • Q4. What is different layers in networks
  • Ans. 

    Different layers in networks refer to the hierarchical structure of network protocols and functions.

    • Layers help in organizing and managing network communication.

    • Examples of network layers include physical layer, data link layer, network layer, transport layer, and application layer.

    • Each layer has specific functions and protocols to ensure smooth communication between devices.

    • Layers help in modularizing network design a

  • Answered by AI
  • Q5. How does google start
  • Ans. 

    Google started as a research project by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

    • Google was founded in 1998 by Larry Page and Sergey Brin.

    • The initial version of Google was called BackRub, which was a search engine that operated on Stanford servers.

    • Google's mission was to organize the world's information and make it universally accessible and useful.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and improve ur speaking skills

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Given some problem statemts and asked to write the pseudo code,
  • Q2. What is Async and Await.
  • Ans. 

    Async and Await are keywords in JavaScript used to handle asynchronous operations in a synchronous manner.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async functions always return a Promise, which allows ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

It was aptitude plus MCQ from operating system, C programming basics, DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about the project in your resume
  • Q2. A basic coding question
Round 3 - Technical 

(2 Questions)

  • Q1. Live coding question was asked it was very basic
  • Q2. Hr question were asked after that
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Technical assesment was there in first round

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview with national manager, CTO and fellow developer
Round 3 - HR 

(1 Question)

  • Q1. Meeting with regional head of IT department
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

60 questions to be done in 60 mins

Round 2 - Technical 

(2 Questions)

  • Q1. String DSA questions
  • Q2. Applications of Data Structures
  • Ans. 

    Data structures are used to store and organize data efficiently in computer programs.

    • Data structures help in efficient searching, sorting, and manipulation of data.

    • Examples include arrays, linked lists, stacks, queues, trees, and graphs.

    • Applications include database management systems, file systems, and network protocols.

  • Answered by AI

Skills evaluated in this interview

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 - Technical 

(2 Questions)

  • Q1. About basic oops concepts and SQL concepts
  • Q2. How resize win form according to screen size
  • Ans. 

    To resize a win form according to screen size, use the Anchor property and the SizeChanged event.

    • Set the Anchor property of the form and its controls to adjust their position and size relative to the form's edges.

    • Handle the SizeChanged event of the form to update the size and position of the controls based on the new form size.

    • Use the Screen class to get the size of the screen and adjust the form size accordingly.

    • Consi...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Managerial round about project details

Interview Preparation Tips

Interview preparation tips for other job seekers - Good exposure had a great interview. One more client round will be there.

Skills evaluated in this interview

Supernova Engineers Interview FAQs

How many rounds are there in Supernova Engineers Senior Software Engineer 2 interview?
Supernova Engineers interview process usually has 1 rounds. The most common rounds in the Supernova Engineers interview process are Assignment.

Tell us how to improve this page.

People are getting interviews through

based on 1 Supernova Engineers interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Siemens Interview Questions
4.1
 • 421 Interviews
Thermax Limited Interview Questions
4.2
 • 235 Interviews
Cummins Interview Questions
4.3
 • 228 Interviews
ABB Interview Questions
4.1
 • 225 Interviews
BHEL Interview Questions
4.2
 • 103 Interviews
View all
Service Engineer
8 salaries
unlock blur

₹3 L/yr - ₹5.4 L/yr

Production Engineer
7 salaries
unlock blur

₹1.8 L/yr - ₹9.4 L/yr

Assistant Manager
6 salaries
unlock blur

₹4 L/yr - ₹10.5 L/yr

Mechanical Engg. Design
6 salaries
unlock blur

₹3.5 L/yr - ₹5.5 L/yr

Commercial Manager
6 salaries
unlock blur

₹7 L/yr - ₹9.4 L/yr

Explore more salaries
Compare Supernova Engineers with

Larsen & Toubro Limited

4.0
Compare

TCS

3.7
Compare

BHEL

4.2
Compare

Thermax Limited

4.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview