Upload Button Icon Add office photos
Premium Employer

i

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

Smart Energy Water

Compare button icon Compare button icon Compare
2.9

based on 156 Reviews

Filter interviews by

Smart Energy Water Software Developer Interview Questions and Answers

Updated 7 Dec 2021

Smart Energy Water Software Developer Interview Experiences

3 interviews found

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 65 minutes
Round difficulty - Medium

it was a technical round consists of aptitude questions and coding round.

  • Q1. Majority element

    You have been given an array/list 'ARR' consisting of 'N' integers. Your task is to find the majority element in the array. If there is no majority element present, print -...

  • Ans. Brute Force Approach

    The basic idea is to traverse the array and count the frequency of each element. 

     

    We will run two nested loops till ‘N’ and store the count of each array element in ‘maxCount’. If for any element, ‘maxCount' becomes greater than ‘N’ / 2, we will return that element as the majority element. 

     

    If no majority element is found, we will return -1.

    Space Complexity: O(1)Explanation:

    O(1)

    ...

  • Answered by CodingNinjas
  • Q2. Rotate matrix to the right

    You have been given a matrix ‘MAT’ of size 'N' * 'M' (where 'N' and 'M' denote the number of rows and columns respectively) and a positive integer...

  • Ans. Row-wise rotation

    This approach is based on the fact that when we rotate an array to the right by ‘K’ times, it shifts ‘K’ elements from the end to the beginning of the array while the remaining elements shift towards the end. The effective rotations in ‘MAT’ can be from 0 to 'M' - 1, as we get the same matrix ‘MAT’ after every 'M' rotations. So, we will set ‘K’ to ‘K’ % ‘M’.

     

    Now, we traverse ‘MAT’ row-wise. We wil...

  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

I was asked to solve problems based on NLP,DBMS,ML. Some of them were situational based questions.

  • Q1. Evaluation of postfix expression

    An expression is called the postfix expression if the operator appears in the expression after the operands.

    Example :

    Infix expression: A + B  *  C - D 
    
    Postfix expres...
  • Ans. Evaluation of postfix expression.

     The idea is to use a stack to store the operands. Whenever an operator is encountered, we pop the top two numbers from the stack, perform the operation and push the result back to the stack. Finally, when the traversal is completed, the number left in the stack is the final answer.

     

    1. Create a stack to store the operands.
    2. Scan the given expression from left to right. For every sc...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteria7 CGPASmart Energy Water interview preparation:Topics to prepare for the interview - Data Structures, Database Management System, Machine Learning, Operating System, Natural language ProcessingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Company's Previous asked Questions.
Tip 2 : Practice Aptitude Questions also
Tip 3 : Practise mock interview it will boost your confidence

Application resume tips for other job seekers

Tip 1 : Add development Projects
Tip 2 : Don't add too much unnecessary things

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops C# SQL server

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask simple questions related to oops ,SQL server,C#

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more

I applied via Naukri.com and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops and API Related questions were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about your experience.
  • Q2. In english, give me a feedback you received lately.
Round 2 - Technical 

(2 Questions)

  • Q1. Brief explanation of SOLID principles
  • Q2. Ref vs out arguments
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude,reasoning,verbal,C language,Java,C++

Round 2 - Technical 

(2 Questions)

  • Q1. What is interface in JAVA
  • Q2. Explain OOPS in JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Project based backend and frontend
  • Q2. How to connect to backend
  • Ans. 

    To connect to the backend, you can use APIs, database connections, or web services.

    • Use APIs to send and receive data between the frontend and backend

    • Establish database connections to retrieve and store data

    • Utilize web services for communication between different systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for project

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is class what is object what is different between private protected and public and default
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class. Private, protected, public, and default are access modifiers in object-oriented programming.

    • A class is a template or blueprint that defines the properties and behaviors of objects.

    • An object is an instance of a class, created using the class blueprint.

    • Private access modifier restricts access to class members within the same class.

    • Pro...

  • Answered by AI
  • Q2. What is object ?
  • Ans. 

    An object is a self-contained entity that consists of both data and behavior.

    • Objects are instances of classes in object-oriented programming.

    • They encapsulate data and provide methods to manipulate that data.

    • Objects can interact with each other through method calls and message passing.

    • Examples of objects include a car, a person, or a bank account.

  • Answered by AI
  • Q3. What is public?
  • Ans. 

    Public is a keyword in programming languages that denotes the accessibility of a class, method, or variable.

    • Public is one of the access modifiers in object-oriented programming.

    • It allows the class, method, or variable to be accessed from any other class or package.

    • Public members are part of the public API of a software component.

    • Example: public class MyClass { ... }

    • Example: public void myMethod() { ... }

    • Example: public

  • Answered by AI
  • Q4. What is private?
  • Ans. 

    In programming, private is an access modifier that restricts the visibility of a class member to within its own class.

    • Private is used to encapsulate data and prevent direct access from outside the class.

    • Private members can only be accessed through public methods or properties.

    • Private variables are often used to store internal state or implementation details.

    • Private methods are used for internal logic and are not meant

  • Answered by AI
  • Q5. What is protected
  • Ans. 

    protected is an access modifier in object-oriented programming that restricts access to members within the same package or subclasses.

    • protected is one of the four access modifiers in Java, along with public, private, and default.

    • Members declared as protected can be accessed within the same package or by subclasses.

    • Protected members are not accessible outside the package unless accessed through inheritance.

    • Example: prot...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cyber Infrastructure Software Developer interview:
  • OOPS
  • Java
Interview preparation tips for other job seekers - Know what you have written in your resume

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They asked from all the concepts wer have covered till now in Engineering.

Round 2 - Technical 

(2 Questions)

  • Q1. Not applicable to this
  • Q2. Not applicable to this one
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Not available, PFB
  • Q2. Please find below

Interview Preparation Tips

Topics to prepare for SpanIdea Software Developer interview:
  • C++
  • C
Interview preparation tips for other job seekers - The SO INTELLCTUAL HR lady calls me and tells me about the job role and tells that this includes 1 year bond. she asks me my current location . she then asks me which city i am from? Then she asks me which state i am from?:) I don't know at that time was she searching the last braincell she have?AND then she also wants to know that currently at which area i am residing and she goes on to ask that do i have any relatives at job location area. when i asked her why she is asking so many questions her response was that "we want to know if the candidate is really interested in job role". Highly Professional HR ,, even after going through her "intellectual questionnaire" and telling her i am interested in job role there was absolute no response from her

company should conduct some good communication skills and logical thinking classes for HRs before expecting it from any candidate
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

How to reverse linked list.

Round 2 - Technical 

(2 Questions)

  • Q1. What selection sort.
  • Q2. What is dynamic memory allocation.
  • Ans. 

    Dynamic memory allocation is the process of allocating memory during program execution.

    • Allows programs to request memory at runtime

    • Helps in efficient memory management

    • Commonly used in languages like C and C++

    • Example: using malloc() function in C to allocate memory for an array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Smart Energy Water Interview FAQs

What are the top questions asked in Smart Energy Water Software Developer interview?

Some of the top questions asked at the Smart Energy Water Software Developer interview -

  1. Oops and API Related questions were ask...read more
  2. Oops C# SQL ser...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Smart Energy Water interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Smart Energy Water Software Developer Salary
based on 23 salaries
₹5.5 L/yr - ₹12 L/yr
15% more than the average Software Developer Salary in India
View more details

Smart Energy Water Software Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-Life balance

2.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Product Engineer
97 salaries
unlock blur

₹5.5 L/yr - ₹14.4 L/yr

Senior Software Engineer
65 salaries
unlock blur

₹6.6 L/yr - ₹21.2 L/yr

Senior Product Engineer
62 salaries
unlock blur

₹7.5 L/yr - ₹27.3 L/yr

Production Analyst
54 salaries
unlock blur

₹7 L/yr - ₹9.8 L/yr

Technical Lead
34 salaries
unlock blur

₹9.8 L/yr - ₹27.5 L/yr

Explore more salaries
Compare Smart Energy Water with

Tata Power

3.9
Compare

Adani Green Energy

4.1
Compare

Suzlon Group

4.1
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