Upload Button Icon Add office photos
Engaged Employer

i

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

Azilen Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Azilen Technologies Senior Software Engineer Interview Questions and Answers

Updated 16 Oct 2023

Azilen Technologies Senior Software Engineer Interview Experiences

3 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is resources? What is triggers in wpf? How muti threading works in wpf?
  • Ans. 

    Resources in WPF refer to external files such as images, styles, templates, etc. Triggers in WPF are used to apply changes based on certain conditions. Multithreading in WPF allows for running multiple tasks concurrently.

    • Resources in WPF can be defined in XAML or code-behind to be reused throughout the application

    • Triggers in WPF are used to change the appearance or behavior of a control based on certain conditions, suc...

  • Answered by AI
  • Q2. What is style and how it is integrated in the xaml cod?
  • Ans. 

    Style in XAML is a way to define and apply visual properties to UI elements.

    • Style in XAML is a collection of property setters that can be applied to multiple UI elements.

    • Styles can be defined in a resource dictionary and then referenced by multiple elements.

    • Styles can be applied globally to all elements of a certain type or selectively to specific elements.

    • Styles can be used to maintain consistency in the visual appear

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be sure about your domain and skills written in resume.

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic Java , Performance
Round 3 - Technical 

(1 Question)

  • Q1. Java , Spring Boot, Database queries

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more

I applied via Naukri.com and was interviewed in Aug 2021. 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 

(2 Questions)

  • Q1. Database related questions
  • Q2. .net technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice palce to learn and grow alongside.

Senior Software Engineer Jobs at Azilen Technologies

View all

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java and advanced Java

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through an organisation, there were 5 rounds of interview.
1. Aptitude test(written):30 MCQ. Quants, Logical reasoning and vocabulary.
2. Java written test: 20 MCQ and 2 codes.
Questions are about Oops, collection,
Exceptionn and Threads. (Medium level).
Programs are based on Strings and Arrays.
3. Technical Interview 1: Mainly they used to
ask based on your Resume. You should
have very good understanding of SQL, core Java and Advance Java concepts. If you know JavaScript it's then a bit advantageous.
You should have good coding skills, they might ask you write another logic of your program written in Java written test.

4. Technical round 2 : It's all about advanced Java concepts like Jdbc, servlets, JSP, Hibernate and Springs.
5. Managerial cum HR round: Technical questions based on your resume. Normal Hr questions.

It's my honest interview experience with JMR. Interview process took one week. I got offer letter.
Good luck...😊
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Assignment 

Fizz buzz question and array related

Round 2 - Technical 

(1 Question)

  • Q1. Basic react, javascript and one question to find duplicate.
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to implement Sqlite database in React Native?
  • Ans. 

    Sqlite database can be implemented in React Native using 'react-native-sqlite-storage' package.

    • Install 'react-native-sqlite-storage' package using npm.

    • Import SQLite from 'react-native-sqlite-storage'.

    • Create a database using SQLite.openDatabase() method.

    • Execute SQL queries using executeSql() method.

    • Close the database connection using close() method.

  • Answered by AI
  • Q2. What are generator functions?
  • Ans. 

    Generator functions are functions that can be paused and resumed, allowing for lazy evaluation of data.

    • Generator functions use the yield keyword to pause execution and return a value.

    • They can be used to generate an infinite sequence of values.

    • They are memory efficient as they only generate values when needed.

    • Example: function* myGenerator() { yield 1; yield 2; yield 3; }

    • Example: const infiniteGenerator = function*() {

  • Answered by AI
  • Q3. How to implement push notifications in Android and iOS?
  • Ans. 

    Push notifications can be implemented in Android and iOS using Firebase Cloud Messaging (FCM) and Apple Push Notification service (APNs) respectively.

    • For Android, integrate FCM SDK in the app and use FCM console to send notifications.

    • For iOS, create an APNs certificate, configure the app to receive notifications, and use APNs to send notifications.

    • Both platforms require handling of notification payload in the app to di...

  • Answered by AI
  • Q4. How do you use in your last app?
  • Ans. 

    I used React Native for my last app.

    • Developed UI components using React Native

    • Integrated APIs to fetch and display data

    • Implemented Redux for state management

    • Used Firebase for authentication and database

    • Optimized app performance using React Native Debugger

  • Answered by AI
  • Q5. What is the difference between functional components and non functional components?
  • Ans. 

    Functional components are stateless and return UI elements based on input props, while non-functional components have state and can change UI based on user interaction.

    • Functional components are simpler and easier to test than non-functional components.

    • Non-functional components can have state and lifecycle methods, while functional components cannot.

    • Examples of functional components include buttons, labels, and icons, w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its Hard and requires deep knowledge of your technical skills.

Skills evaluated in this interview

Round 1 - Technical 

(2 Questions)

  • Q1. To write any code in any programming language
  • Q2. About the project work that i have done
Round 2 - Technical 

(2 Questions)

  • Q1. Time was 3:15 in the clock write an code to find the angle between the hour and minute hand
  • Q2. About the project work

Interview Preparation Tips

Interview preparation tips for other job seekers - just try and try don’t loose hope
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 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 - One-on-one 

(2 Questions)

  • Q1. Implement a linked list
  • Ans. 

    A linked list is a data structure that consists of a sequence of nodes, each containing a reference to the next node.

    • Each node has a data field and a next field that points to the next node

    • Insertion and deletion can be done efficiently

    • Traversal starts from the head node and continues until the end node is reached

  • Answered by AI
  • Q2. Questions on JAVA

Interview Preparation Tips

Topics to prepare for Truminds Software Systems Software Developer interview:
  • Linked Lists
Interview preparation tips for other job seekers - It is an easy to crack company

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Write a c++ program to implement the basic functions of queue using linked list and class?
  • Ans. 

    C++ program to implement queue using linked list and class

    • Create a class for queue and node

    • Implement enqueue, dequeue, and display functions

    • Use pointers to link nodes in the linked list

  • Answered by AI
  • Q2. Questions related to the projects .

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have good command over the language you chose and the tech stack you are working upon. You should be able to explain your role.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

It placed in hackerRank.question difficulty level was medium.

Round 3 - Technical 

(1 Question)

  • Q1. The difficulty depends upon who is taking your interview. But mostly asked questions were related to string and hashmap.
Round 4 - HR 

(1 Question)

  • Q1. It was more like a little bit technical and hr round. Mostly talk about personal profile like education,family background, hobbies and etc.

Azilen Technologies Interview FAQs

How many rounds are there in Azilen Technologies Senior Software Engineer interview?
Azilen Technologies interview process usually has 2-3 rounds. The most common rounds in the Azilen Technologies interview process are Technical and Resume Shortlist.
How to prepare for Azilen Technologies Senior Software Engineer 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 Azilen Technologies. The most common topics and skills that interviewers at Azilen Technologies expect are IT Services, CRM, SQL, SAN and Javascript.
What are the top questions asked in Azilen Technologies Senior Software Engineer interview?

Some of the top questions asked at the Azilen Technologies Senior Software Engineer interview -

  1. What is style and how it is integrated in the xaml c...read more
  2. What is resources? What is triggers in wpf? How muti threading works in w...read more
  3. Java , Spring Boot, Database quer...read more

Tell us how to improve this page.

Azilen Technologies Senior Software Engineer Interview Process

based on 2 interviews

2 Interview rounds

  • Resume Shortlist Round
  • Technical Round
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
JMR Infotech Interview Questions
4.3
 • 17 Interviews
PC Solutions Interview Questions
3.7
 • 16 Interviews
View all
Azilen Technologies Senior Software Engineer Salary
based on 91 salaries
₹5.6 L/yr - ₹19 L/yr
11% less than the average Senior Software Engineer Salary in India
View more details

Azilen Technologies Senior Software Engineer Reviews and Ratings

based on 12 reviews

4.0/5

Rating in categories

4.3

Skill development

3.8

Work-life balance

3.6

Salary

3.7

Job security

3.9

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 12 Reviews and Ratings
Senior Software Engineer- PHP

Kolkata,

Mumbai

+5

4-6 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
91 salaries
unlock blur

₹5.6 L/yr - ₹19 L/yr

Software Engineer
76 salaries
unlock blur

₹3 L/yr - ₹11.2 L/yr

Technical Lead
38 salaries
unlock blur

₹10 L/yr - ₹25 L/yr

Associate Software Engineer
37 salaries
unlock blur

₹3.5 L/yr - ₹5 L/yr

Quality Analyst
22 salaries
unlock blur

₹4.6 L/yr - ₹8.4 L/yr

Explore more salaries
Compare Azilen Technologies with

PC Solutions

3.7
Compare

RNF Technologies

3.5
Compare

Hidden Brains InfoTech

3.8
Compare

Affine

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