Upload Button Icon Add office photos

Filter interviews by

Urjanet Energy Solutions Interview Questions and Answers

Updated 12 Mar 2024

Urjanet Energy Solutions Interview Experiences

Popular Designations

5 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2023. There were 4 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 - Aptitude Test 

Aptitude , reasoning que ,English verbal come in this part

Round 3 - Technical 

(1 Question)

  • Q1. They ask about data structure,excel etc in this mode
Round 4 - HR 

(1 Question)

  • Q1. Final round and ask about ur personal things

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

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 12 Mar 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It's related to reasoning and quantitative and gk, english

Round 2 - Group Discussion 

Ti know the communication skills

Round 3 - Technical 

(1 Question)

  • Q1. Regarding my projects and subjects which is related to my graduation. And then about data analytics.
Round 4 - HR 

(1 Question)

  • Q1. Location, package, basic questions which regularly ask all HR.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Be positive
Prepare well about your projects and work experience.

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 10 Jan 2022

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

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to be more confident while speaking and they will check your communication skill in first technical round

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

I applied via Campus Placement and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About java concepts, oops and project

Interview Preparation Tips

Interview preparation tips for other job seekers - If you know java, they will hire .... that's it.. During interview if you answer in any other language they said no...

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

Urjanet Energy Solutions interview questions for popular designations

 Software Engineer

 (2)

 Data Analyst

 (2)

 Intern

 (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 7 Jul 2021

Interview Questionnaire 

2 Questions

  • Q1. Data structures
  • Q2. Collection framework

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(4 Questions)

  • Q1. What is singleton design pattern
  • Ans. 

    Singleton design pattern restricts the instantiation of a class to a single instance and provides global access to it.

    • Used when only one instance of a class is required throughout the application

    • Provides a global point of access to the instance

    • Implemented using a private constructor, static method, and static variable

    • Example: Logger class, Database connection class

  • Answered by AI
  • Q2. C# LINQ queries for group and sum data from data table
  • Ans. 

    C# LINQ queries for group and sum data from data table

    • Use GroupBy() method to group data based on a specific column

    • Use Sum() method to calculate the sum of a column

    • Use Select() method to select the required columns

  • Answered by AI
  • Q3. Solid design principles
  • Ans. 

    Solid design principles are a set of guidelines for writing maintainable and scalable code.

    • Single Responsibility Principle (SRP) - each class should have only one responsibility

    • Open/Closed Principle (OCP) - classes should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - subclasses should be able to replace their parent classes without affecting the program's correctness

    • Interface Se...

  • Answered by AI
  • Q4. OOPS concepts ,like association and all

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are an experienced software Engineer, focus on designing part of the system.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude test and was unproctored

Round 2 - Technical 

(1 Question)

  • Q1. It was a online technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL concepts and basic OOPs concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ questions on OS, JS and HTML

Round 2 - Coding Test 

Basic Questions from resume. String/Array DSA questions

Round 1 - Aptitude Test 

50 Questions in 1 hour

Round 2 - Coding Test 

Pattern and basic programming questions

Round 3 - Technical 

(1 Question)

  • Q1. Basic Java, SQL, and project-related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice place to work, the staff and the colleagues were very supportive and give importance to your decisions or choices.
Round 1 - Coding Test 

Simple String or list releted questions for Arranging a string some conditions wise

Round 2 - Technical 

(1 Question)

  • Q1. Count number after decimal value What is decorator What is abstraction in python
  • Ans. 

    To count number after decimal value in Python, use string manipulation or math module.

    • Use string manipulation to count number of digits after decimal point

    • Use math module to round off the number and then subtract the original number to get the digits after decimal point

    • Example: num = 3.14159, str_num = str(num), decimal_index = str_num.index('.') + 1, digits_after_decimal = len(str_num) - decimal_index

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Maily focus on logical Questions and Make any one Language proficient then you can give answer

Urjanet Energy Solutions Interview FAQs

How many rounds are there in Urjanet Energy Solutions interview?
Urjanet Energy Solutions interview process usually has 4 rounds. The most common rounds in the Urjanet Energy Solutions interview process are Aptitude Test, Technical and HR.
How to prepare for Urjanet Energy Solutions 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 Urjanet Energy Solutions. The most common topics and skills that interviewers at Urjanet Energy Solutions expect are Medical Insurance, Analog, Troubleshooting, Analytics and Monitoring.
What are the top questions asked in Urjanet Energy Solutions interview?

Some of the top questions asked at the Urjanet Energy Solutions interview -

  1. They ask about data structure,excel etc in this m...read more
  2. Final round and ask about ur personal thi...read more
  3. Data structu...read more

Tell us how to improve this page.

Urjanet Energy Solutions Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Suzlon Group Interview Questions
4.1
 • 129 Interviews
ReNew Interview Questions
4.2
 • 88 Interviews
Waaree Energies Interview Questions
3.9
 • 58 Interviews
Magic Edtech Interview Questions
3.1
 • 50 Interviews
Vikram Solar Interview Questions
3.9
 • 32 Interviews
Azure Power Interview Questions
3.9
 • 20 Interviews
View all

Urjanet Energy Solutions Reviews and Ratings

based on 122 reviews

3.9/5

Rating in categories

3.2

Skill development

3.9

Work-life balance

3.8

Salary

3.7

Job security

3.9

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 122 Reviews and Ratings
Lead Engineer - Community Solar

Chennai

1-3 Yrs

Not Disclosed

Lead Engineer - Community Solar

Chennai

1-4 Yrs

Not Disclosed

Explore more jobs
Data Analyst
227 salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Software Engineer
91 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Senior Data Analyst
57 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

QA Engineer
44 salaries
unlock blur

₹2.1 L/yr - ₹4.8 L/yr

Software Developer
24 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Explore more salaries
Compare Urjanet Energy Solutions with

Saama Technologies

3.7
Compare

Jumio

3.7
Compare

DISYS

3.0
Compare

Data-Core Systems

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