Upload Button Icon Add office photos

Filter interviews by

NetraDyne Inc. Interview Questions and Answers

Updated 23 Dec 2024

NetraDyne Inc. Interview Experiences

Popular Designations

5 interviews found

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

(2 Questions)

  • Q1. How to Reverse a string
  • Ans. 

    Use a loop to iterate through the characters of the string and build a new string in reverse order.

    • Create an empty string to store the reversed string

    • Iterate through the characters of the original string in reverse order and append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q2. SQL query of Joins
  • Ans. 

    SQL query of Joins

    • Use JOIN keyword to combine rows from two or more tables based on a related column between them

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI

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 (196)
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the architecture of current product?
  • Ans. 

    The current product architecture consists of a client-server model with multiple layers for processing and data storage.

    • Client-server model with separate client and server components

    • Multiple layers for processing and data storage, such as presentation layer, business logic layer, and data access layer

    • Use of APIs for communication between different layers

    • Scalability and fault tolerance considerations in the architecture

  • Answered by AI
  • Q2. Linux and sql qns
Round 2 - Technical 

(1 Question)

  • Q1. In depth technical qns

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Twenty-five horses and a question about five tracks.

Round 2 - One-on-one 

(1 Question)

  • Q1. SQL, PYthon, Analytical
Round 3 - mangerial round 

(1 Question)

  • Q1. Specifically regarding intent and communication?

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed before Mar 2023.

Round 1 - Assignment 

Written test on any topic to write a procedure on "How to book a ticket in IRCTC"

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on 1.Tell me about yourself, 2 Testing our verbal communication through our conversation.
  • Ans. They will check you English fluency and communication through this tell me yourself. You can introduce yourself using this "tell about yourself" to make them attracted.
  • Answered Anonymously
  • Q2. 3. Technical questions on tools that you use
  • Ans. Be strong in MS Word, PowerPoint, and Excel. They used Zendesk for Online help. Its very easy to learn in a week of time. To communicate with your team and internally "Slack" is used. To share files among the team "SharePoint" is used.
  • Answered Anonymously
Round 3 - HR 

(3 Questions)

  • Q1. Generally HR asks about your expectation on the salary and also asks what number do you have in my mind?
  • Q2. Make some research on current salaries and genuinely let the HR know what is in your mind. They have good salary package and also other benefits.
  • Q3. Where are your residing, do you need any help in commuting, and how soon will you be able to join?

Interview Preparation Tips

Topics to prepare for NetraDyne Inc. Associate Technical Writer interview:
  • Apptitute questions
  • Strong communication is a plus
  • MS Word, PowerPoint, Excel
Interview preparation tips for other job seekers - Netradyne is a good company to work with for it has so many perks. Functions, celebrations, good food, snacks, and fruits. The work life balance was very good. Only the documentation staff technical writer was very rude and partial as she was a north Indian. Otherwise everything was fine and good.

Associate Technical Writer Interview Questions asked at other Companies

Q1. What is DDLC?
View answer (1)

NetraDyne Inc. interview questions for popular designations

 Technical Support Engineer

 (2)

 Software Engineer

 (2)

 Associate Technical Writer

 (1)

I applied via Job Portal and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java , Spring Boot, Rest API

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on java, sql and Cloud

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 (196)

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: A coding test (Students were asked to bring Laptops)
Tips: Be thorough with C/C++, networking, OS, Data structures and architecture
Duration: 90 minutes

Round: Interview
Experience: 3 rounds of interview, one hour each, all technical 
Interview Process:All the three rounds are oriented around programming. A lot of focus was given to Data structures, C/C++, OS and algorithmsThe code from previous test is shown and they expect you to fix any bugs if thereThe interviewers are quietly friendly and help if you get stuck at any pointIf you do have any related projects, anticipate some thorough questions on that
Tips: Though the interviewers are helpful, get your basics clear early on. Don't rely on them.Practice coding sessions, a lot of companies have them as a shortlisting criteria.

College Name: IIT Madras

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude test with math and logic related questions. there were also coding questions which were given more weightage than the other questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Standard linked list questions like finding the middle of a linked list, checking if the linked list is a loop etc
  • Q2. Max heap related questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. This interview was mostly math related questions. for eg: prove if a number is irrational.

Interview Preparation Tips

Topics to prepare for Amagi Media Labs Software Engineer interview:
  • Data Structures
  • Maths
  • puzzles
Interview preparation tips for other job seekers - focus is on checking basic coding and problem solving skills. a separate round for testing mathematical ability was a surprise.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Question on Tree Traversals
  • Q2. Questions of Linked List
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2022. There were 2 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 - Technical 

(3 Questions)

  • Q1. Linux commands,
  • Q2. Cloud technologies different services (iaas, paas, saas)
  • Ans. 

    Cloud technologies offer different services like IaaS, PaaS, and SaaS for varying levels of control and management.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources over the internet, such as virtual servers and storage.

    • PaaS (Platform as a Service) offers a platform allowing customers to develop, run, and manage applications without dealing with infrastructure.

    • SaaS (Software as a Service) deli...

  • Answered by AI
  • Q3. What do you know AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up OS basics and cloud technologies.

Skills evaluated in this interview

NetraDyne Inc. Interview FAQs

How many rounds are there in NetraDyne Inc. interview?
NetraDyne Inc. interview process usually has 2 rounds. The most common rounds in the NetraDyne Inc. interview process are Technical, One-on-one Round and Assignment.
How to prepare for NetraDyne Inc. 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 NetraDyne Inc.. The most common topics and skills that interviewers at NetraDyne Inc. expect are Accounting, Financial Analysis, Financial Planning, Financial Reporting and Illustrator.
What are the top questions asked in NetraDyne Inc. interview?

Some of the top questions asked at the NetraDyne Inc. interview -

  1. Explain the architecture of current produ...read more
  2. How to Reverse a str...read more
  3. SQL query of Jo...read more

Tell us how to improve this page.

NetraDyne Inc. Interview Process

based on 5 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 48 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
ZIGRAM Interview Questions
3.9
 • 26 Interviews
HackerRank Interview Questions
4.2
 • 23 Interviews
Springworks Interview Questions
4.6
 • 23 Interviews
View all

NetraDyne Inc. Reviews and Ratings

based on 23 reviews

3.6/5

Rating in categories

2.9

Skill development

3.5

Work-life balance

3.5

Salary

3.7

Job security

3.2

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 23 Reviews and Ratings
Software Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Program Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare NetraDyne Inc. with

Aurigo

4.7
Compare

Peel-works

3.7
Compare

Prime Focus Technologies

3.4
Compare

Nowfloats Technologies

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