Upload Button Icon Add office photos

Filter interviews by

Atrina Technologies Software Developer Interview Questions and Answers

Updated 8 Aug 2023

Atrina Technologies Software Developer Interview Experiences

1 interview found

Interview experience
4
Good
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 - One-on-one 

(1 Question)

  • Q1. What is identity server
  • Ans. 

    Identity server is a software component that manages user authentication and authorization in a system.

    • Manages user authentication and authorization

    • Provides centralized login functionality

    • Issues and validates security tokens

    • Supports single sign-on (SSO)

    • Examples: Keycloak, IdentityServer

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Difference between authentication and authorisation
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what resources a user can access.

    • Authentication confirms the user's identity through credentials like passwords or biometrics.

    • Authorization controls the user's access to specific resources or functionalities based on their identity.

    • Example: Logging into a system with a username and password is authentication, while being able to view/edit ce...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
5d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Atrina Technologies?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. Process builder. 2.types of relationships. 3.difference in user ,profile and role. 4.workflow. 5.Admin questions
  • Ans. 

    Answering questions related to software development and Salesforce administration.

    • Process Builder is a visual tool in Salesforce used to automate business processes.

    • Types of relationships in Salesforce include lookup, master-detail, and many-to-many relationships.

    • User represents an individual who can log in and access Salesforce, Profile defines the permissions and settings for a user, and Role determines the hierarchy...

  • Answered by AI
  • Q2. What configuration i have done.
  • Ans. 

    I have configured various software systems and tools for development purposes.

    • Configured IDEs such as Eclipse and Visual Studio for development

    • Set up version control systems like Git and SVN

    • Installed and configured build tools like Maven and Gradle

    • Configured application servers like Tomcat and JBoss

    • Set up databases like MySQL and Oracle for development and testing

  • Answered by AI
  • Q3. Salary negotiations

Interview Preparation Tips

Round: Manager round
Experience: Configuration and what work ee have done in your previous company.

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

Round duration - 90 minutes
Round difficulty - Easy

This round consist of two questions and we have to solve both the questions to qualify for the next round.

Round 2 - Face to Face 

Round duration - 40 minutes
Round difficulty - Easy

A single coding question was asked that had a lot of corner cases.

Round 3 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

It had 3 coding questions followed by basic concepts of DP.

  • Q1. How do you find the maximum difference between a node and its descendant in the same path in a binary tree?
  • Ans. 

    To find the maximum difference between a node and its descendant in the same path in a binary tree, we can perform a depth-first search while keeping track of the minimum value encountered so far.

    • Perform a depth-first search on the binary tree, keeping track of the minimum value encountered so far in the path.

    • At each node, calculate the difference between the current node value and the minimum value encountered so far ...

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It had 2 coding questions which were of good level.

  • Q1. How can you find a Minimum Spanning Tree (MST) from a given graph using Kruskal’s algorithm?
  • Ans. 

    Kruskal's algorithm finds MST by sorting edges, adding smallest edge that doesn't create a cycle, repeat until all vertices are connected.

    • Sort all edges in non-decreasing order of their weights.

    • Initialize an empty graph to store the MST.

    • Iterate through sorted edges and add the smallest edge that doesn't create a cycle in the MST.

    • Repeat until all vertices are connected in the MST.

  • Answered by AI
Round 5 - Face to Face 

Round duration - 30 minutes
Round difficulty - Easy

This was the last round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. I applied for the job as SDE - 1 in HyderabadAmazon interview preparation:Topics to prepare for the interview - Data structures and Algorithms, Computer fundamentals subjects. Basics of every skill that you have written in your resume and also knowledge of concepts related to your projects. You should know whatever you have written in your resume.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Don’t create panic in any case in the interview , as even if you are not selected you will learn a lot from your interview experience and perform well in the future. Also I would recommend you Coding Ninjas as according to me it is a good platform to learn basic coding concepts and to practice coding.   

Application resume tips for other job seekers

Write whatever you are sure about and have actually done that. CGPA plays a good role but not a complete role as it is just eligibility criteria for some companies. Have at least 1 or 2 good projects from which you know everything involved in the project.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What type of challenges excite you professionally
  • Ans. 

    I thrive on challenges that push my technical skills and creativity, especially in problem-solving and innovative project development.

    • Complex problem-solving: I enjoy tackling intricate algorithms, like optimizing search functions in large datasets.

    • Innovative projects: Working on projects that require new technologies, such as developing a mobile app using AI for personalized user experiences.

    • Collaboration: I find exci...

  • Answered by AI
  • Q2. Many challenges I would like to excited professionally that is always I want to choose difficult path.

Interview Questionnaire 

1 Question

  • Q1. How to confidence and Communication skill

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Waterfall model, Software development life cycle
  • Q2. How do you arrive at factorial without recursive function
  • Ans. 

    Factorial can be calculated using a loop by multiplying numbers from 1 to n.

    • Initialize a variable to 1

    • Use a loop to multiply the variable with numbers from 1 to n

    • Return the variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your fundamental skills
Be interview-ready. Browse the most asked HR questions.
illustration image

I applied via Company Website and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I surprised with one question that is are u ready to do job in anywhere

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi guys I just suggest you that you have to focus on your resume and don't use the words which you don't know if you release a word which you don't know then hr will take that word so prepare well for TR and HR I hope my suggestion will helpful
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. How to use multiple dispatch in redux?

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Python
  • Q2. Webdevelopment

I applied via LinkedIn and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What's is different between c and c++

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont show your weakness

Skills evaluated in this interview

Atrina Technologies Interview FAQs

How many rounds are there in Atrina Technologies Software Developer interview?
Atrina Technologies interview process usually has 3 rounds. The most common rounds in the Atrina Technologies interview process are One-on-one Round and Resume Shortlist.
What are the top questions asked in Atrina Technologies Software Developer interview?

Some of the top questions asked at the Atrina Technologies Software Developer interview -

  1. Difference between authentication and authorisat...read more
  2. What is identity ser...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Interview Questions from Trending Companies on AmbitionBox

SAP Interview Questions
4.2
 • 292 Interviews
UST Interview Questions
3.8
 • 552 Interviews
KPMG India Interview Questions
3.4
 • 855 Interviews
BCG Interview Questions
3.7
 • 207 Interviews
Google Interview Questions
4.4
 • 914 Interviews
Tata Motors Interview Questions
4.1
 • 1.1k Interviews
Bank of America Interview Questions
4.2
 • 265 Interviews
DMart Interview Questions
3.9
 • 468 Interviews
View all
Atrina Technologies Software Developer Salary
based on 20 salaries
₹3.6 L/yr - ₹8.5 L/yr
42% less than the average Software Developer Salary in India
View more details

Atrina Technologies Software Developer Reviews and Ratings

based on 6 reviews

3.2/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

2.6

Salary

2.8

Job security

3.1

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 6 Reviews and Ratings
Software Developer
20 salaries
unlock blur

₹3.6 L/yr - ₹8.5 L/yr

Senior Product Manager
9 salaries
unlock blur

₹7.4 L/yr - ₹7.5 L/yr

Data Analyst
6 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

React Js Frontend Developer
6 salaries
unlock blur

₹8.9 L/yr - ₹9 L/yr

Flutter Developer
6 salaries
unlock blur

₹1.6 L/yr - ₹5.5 L/yr

Explore more salaries
write
Share an Interview