Upload Button Icon Add office photos

Filter interviews by

Itron Software Developer Interview Questions and Answers

Updated 24 Oct 2023

Itron Software Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be honest with your years of experience. All information you share will be verified at the time of joining.
View all tips
Round 2 - Coding Test 

Tree, LinkedList, Array

Round 3 - Technical 

(2 Questions)

  • Q1. Find depth of a tree
  • Ans. 

    The depth of a tree is the length of the longest path from the root node to any leaf node.

    • Depth of a tree can be found using depth-first search (DFS) algorithm.

    • The depth of a tree is equal to the maximum depth of its children plus one.

    • For example, in a binary tree, the depth of the tree is the maximum depth of the left and right subtrees plus one.

  • Answered by AI
  • Q2. Merge two sorted arrays
  • Ans. 

    Merge two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Use two pointers to iterate through both arrays and compare elements

    • Add the smaller element to the new array and move the pointer for that array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Tree, Graphs

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed in Aug 2017.

Interview Questionnaire 

4 Questions

  • Q1. Difference between c and java?
  • Ans. 

    C is a procedural programming language while Java is an object-oriented programming language.

    • C is a low-level language while Java is a high-level language.

    • C requires manual memory management while Java has automatic memory management.

    • C is platform-dependent while Java is platform-independent.

    • C supports pointers while Java does not.

    • C has a simpler syntax compared to Java.

  • Answered by AI
  • Q2. Difference between final, finally and finalize
  • Ans. 

    final, finally, and finalize are keywords in Java with different meanings.

    • final is a keyword used to declare a constant value, a variable that cannot be modified.

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • finalize is a method in the Object class that is called by the garbage collector before an object is destroyed.

    • final and finally a...

  • Answered by AI
  • Q3. About yourself
  • Q4. Why Johnson
  • Ans. 

    Johnson is a reputable company known for its innovative software solutions and collaborative work environment.

    • Johnson has a strong reputation in the industry for delivering high-quality software solutions.

    • The company values collaboration and teamwork, which aligns with my own work style.

    • I admire Johnson's commitment to innovation and staying ahead of technological advancements.

  • Answered by AI

Interview Preparation Tips

Round: Apptitude Test
Experience: Questions was unpredictable as it was from reasoning,verbal , and from general knowledge also.Technical questions was also there.
Tips: Technical question was not that hard. Just have good basic knowledge of programming and DBMS

Round: Technical Interview
Experience: It was from basic concepts only.

Round: HR Interview
Experience: There were 12 HRs to take my interview but asked mainly from CV only.

Tips: Be calm and confident and learn the basic of subjects

College Name: BPPIMT

Skills evaluated in this interview

Interview Preparation Tips

Round: Resume Shortlist
Experience: General resume shortlisting out of nearly 400 applicants. Shortlisted close to 150 students.

Round: Technical Interview
Experience: Mostly questions from the resume were asked. They just wanted to know the types of projects I had done.
Tips: Make sure you know everything about what you write in your resume.

Round: Technical Interview
Experience: Another round of technical interview. Questions were more focused on the kind of profile they were offering, mostly to judge whether you are right for the job or not.

Skills: Confidence, Core knowledge
College Name: IIT BOMBAY

Interview Preparation Tips

Round: Test
Experience: more of experience gaining and learning new tricks of codding a program.
Tips: must focus on bugging and debugging the program.
Duration: 60 mins minutes

Skills: Coding Skills,
College Name: Invertis university
Motivation: bosch is a multinational company stating its rank worldwide.so anyone would to work with outstanding company.

I applied via Naukri.com and was interviewed before Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Implement stack data structure
  • Ans. 

    Implement stack data structure

    • Use an array or linked list to store elements

    • Push operation adds element to top of stack

    • Pop operation removes element from top of stack

    • Peek operation returns top element without removing it

  • Answered by AI
  • Q2. How global variable work , how its shared by all function
  • Ans. 

    Global variables are accessible from any part of the program and can be modified by any function.

    • Global variables are declared outside of any function.

    • They can be accessed and modified by any function in the program.

    • If a function modifies the value of a global variable, the new value is visible to all other functions.

    • Global variables can be useful for sharing data between functions.

    • However, overuse of global variables

  • Answered by AI
  • Q3. Program to transpose the matrix
  • Ans. 

    Program to transpose a matrix

    • Iterate through rows and columns of the matrix

    • Swap the elements at (i,j) and (j,i) positions

    • Return the transposed matrix

  • Answered by AI
  • Q4. Internal implementation of pre and post fix operator
  • Ans. 

    Pre and post fix operators are used to increment or decrement a value before or after it is used in an expression.

    • Pre-fix operator (++x) increments the value of x and returns the new value.

    • Post-fix operator (x++) returns the value of x and then increments it.

    • Both operators can be used with variables of numeric data types.

    • They can also be used with pointers to increment or decrement the memory address they point to.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare some standard problem from geekforgeeks.com

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Prepare python data structures and python basics

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Scenario based to be solved with python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the core concepts very well.

Interview Questionnaire 

3 Questions

  • Q1. Simple question as per 4 year of experience
  • Q2. Same question asked by interviewer
  • Q3. Too much tried for negotiation and not gave expected compansession

Interview Questionnaire 

1 Question

  • Q1. What is your weak point

Interview Preparation Tips

Interview preparation tips for other job seekers - For an interview fist of all we should be mentally prepare like these gyus here for hire us ,just we tell some answers to their questions, and later try to think as much as close to correct answer my answer is ,there is better chance that they will keep me for job

I applied via Walk-in and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Data structure and STA

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and don't try to be oversmart.

Itron Interview FAQs

How many rounds are there in Itron Software Developer interview?
Itron interview process usually has 3 rounds. The most common rounds in the Itron interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Itron Software Developer interview?

Some of the top questions asked at the Itron Software Developer interview -

  1. merge two sorted arr...read more
  2. find depth of a t...read more

Tell us how to improve this page.

Itron Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Fast track your campus placements

View all
Itron Software Developer Salary
based on 14 salaries
₹9 L/yr - ₹14 L/yr
62% more than the average Software Developer Salary in India
View more details

Itron Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

2.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
99 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
91 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Software Engineer
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Software Engineer
40 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Firmware Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Itron with

Schneider Electric

4.1
Compare

Siemens

4.1
Compare

ABB

4.1
Compare

Honeywell Automation

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