Upload Button Icon Add office photos
Engaged Employer

i

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

Secure Meters Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Secure Meters Senior Software Developer Interview Questions and Answers

Updated 10 Oct 2021

Secure Meters Senior Software Developer Interview Experiences

1 interview found

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

Interview Questionnaire 

1 Question

  • Q1. Normal Questions
  • Ans. Be confidant and try to answer each, also accept if you are not able to answer any question and let panel in confidence that if you have chance you can do it.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - All depends on the situations, if they have urgency for position then they will recruit you easily, even you have less technical knowledge.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Secure Meters?
Ask anonymously on communities.

Interview questions from similar companies

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

(3 Questions)

  • Q1. Basic family and behaviour
  • Q2. How is your strength?
  • Ans. 

    My strength lies in my problem-solving skills, adaptability, and strong communication, which help me excel in software development.

    • Problem-solving: I enjoy tackling complex coding challenges, like optimizing algorithms for better performance.

    • Adaptability: I quickly learn new technologies, demonstrated when I transitioned from Java to Python for a project.

    • Strong communication: I effectively collaborate with cross-functi...

  • Answered by AI
  • Q3. What is family background?
  • Ans. 

    Family background refers to the social, economic, and cultural environment in which a person is raised.

    • Includes parents' education levels, e.g., a parent with a PhD may influence academic aspirations.

    • Considers socio-economic status, such as growing up in a wealthy family vs. a low-income household.

    • Cultural influences, like traditions and values passed down, shape personal beliefs and behaviors.

    • Family structure, e.g., s...

  • Answered by AI

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Freshworks
Q2. Overlapping Intervals Problem Statement You are given the start a ... read more
asked in Freshworks
Q3. Middle of Linked List Problem Statement Given the head node of a ... read more
asked in SAP
Q4. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Freshworks
Q5. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

The authentication related questions and architecture wise too.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare authentication types and How the middle ware working.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mostly about .Net, AWS, Angular
Round 2 - Technical 

(1 Question)

  • Q1. Mostly about AWS, .Net
Round 3 - HR 

(1 Question)

  • Q1. Behavioral Round + Salary Discussion

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Project description
  • Ans. 

    Developed a web-based project management tool for a software development company.

    • Used Agile methodology for project management

    • Implemented user authentication and authorization

    • Integrated with third-party tools like JIRA and GitHub

    • Provided real-time project progress tracking

    • Generated reports for project analysis

  • Answered by AI
  • Q2. Python based problems
  • Q3. Embedded scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Be frank about your self ration about your skills and maintain 2 way communication during the interview.

I applied via Company Website and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About previous experience , and basic stuff

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing deep on any concepts, only major questions decisive question is whether willing to travel frequently to outstation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Salary expectation .
  • Ans. 

    I expect a competitive salary based on my skills, experience, and industry standards.

    • Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries for similar roles.

    • Consider my experience: With 5 years in software development, I would expect a salary in the range of $80,000 to $100,000.

    • Location matters: Salaries can vary significantly by region; for instance, tech hubs like ...

  • Answered by AI
  • Q2. Why should I hire you?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Mendix Advanced questions.
  • Q2. Everything which you mentioned in your resume.
Are these interview questions helpful?

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30. minutes
Round difficulty - Easy

It was in the evening, question were moderate

  • Q1. 

    Count Subsequences Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

    Explanation:

    A subsequence of an array i...

  • Ans. 

    Count the total number of subsequences in which all elements are equal in an integer array.

    • Iterate through the array and count the frequency of each element.

    • Calculate the total number of subsequences for each element using the formula (frequency * (frequency + 1) / 2).

    • Sum up the total number of subsequences for all elements and return the result modulo 10^9 + 7.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the night around 9:00 PM.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find all pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the pairs based on the first element and then the second element.

    • Return the list of pairs as the final result.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. I applied for the job as Software Engineer in DelhiEligibility criteriaNo percentage criteria(good in aptitude)Vertiv Co interview preparation:Topics to prepare for the interview - Array, oops, algorithms, data structures, stackTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Learn new things daily 
Tip 2 : Practice questions 
Tip 3 : Keep one question in mind to solve.

Application resume tips for other job seekers

Tip 1 : Description about your skills 
Tip 2 : Project details

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Assignment 

Assigned data analysis project

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Tell abt the projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

2 coding questions one was greedy and 2nd one was of dp.

Secure Meters Interview FAQs

How to prepare for Secure Meters Senior Software Developer 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 Secure Meters. The most common topics and skills that interviewers at Secure Meters expect are C#, .NET, ASP.Net, Ajax and CVS.

Tell us how to improve this page.

Interview Questions from Similar Companies

Flex Interview Questions
4.0
 • 201 Interviews
Foxconn Interview Questions
3.8
 • 186 Interviews
Navitasys India Interview Questions
4.1
 • 110 Interviews
TE Connectivity Interview Questions
4.1
 • 89 Interviews
Wistron Interview Questions
3.9
 • 87 Interviews
DBG Technology Interview Questions
3.7
 • 72 Interviews
Vertiv Interview Questions
3.9
 • 55 Interviews
ECIL Interview Questions
4.3
 • 55 Interviews
View all
Secure Meters Senior Software Developer Salary
based on 34 salaries
₹5.5 L/yr - ₹10 L/yr
44% less than the average Senior Software Developer Salary in India
View more details

Secure Meters Senior Software Developer Reviews and Ratings

based on 2 reviews

2.5/5

Rating in categories

4.0

Skill development

3.3

Work-life balance

1.8

Salary

3.5

Job security

4.5

Company culture

2.5

Promotions

3.3

Work satisfaction

Explore 2 Reviews and Ratings
Executive
126 salaries
unlock blur

₹3.7 L/yr - ₹9 L/yr

Engineer
109 salaries
unlock blur

₹2.4 L/yr - ₹5.7 L/yr

Manager
104 salaries
unlock blur

₹11.7 L/yr - ₹20 L/yr

Engineer 1
89 salaries
unlock blur

₹2.7 L/yr - ₹5 L/yr

Software Developer
79 salaries
unlock blur

₹4 L/yr - ₹7.8 L/yr

Explore more salaries
Compare Secure Meters with

Bharat Electronics

4.2
Compare

Flex

4.0
Compare

Foxconn

3.8
Compare

Dixon Technologies

4.0
Compare
write
Share an Interview