Upload Button Icon Add office photos

Filter interviews by

TrigenSoft Solutions Interview Questions and Answers

Updated 8 Aug 2024

TrigenSoft Solutions Interview Experiences

Popular Designations

3 interviews found

Android Developer Interview Questions & Answers

user image NIRAV B. GIRNARI

posted on 28 Sep 2023

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

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. All basics of Java , Android , Sqlite. Asked to create program.One question regarding to data structure.
Round 2 - Coding Test 

They given task on Android.And I have to complete it in 2 days.

Round 3 - HR 

(1 Question)

  • Q1. Basic overview of my self.

Interview Preparation Tips

Interview preparation tips for other job seekers - You can get work in this company.But they are not providing special training to their freshers.

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Introduce Yourself
  • Ans. 

    I am a passionate AR/VR developer with a strong background in computer science and a keen interest in creating immersive experiences.

    • Bachelor's degree in Computer Science

    • Proficient in Unity and Unreal Engine

    • Experience developing interactive AR/VR applications

    • Strong problem-solving skills

    • Passionate about pushing the boundaries of technology

    • Completed projects like a virtual museum tour or interactive training simulations

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Oct 2022.

Round 1 - Technical 

(2 Questions)

  • Q1. Related to android and java
  • Q2. Activity,fragment,layouts,service lifecycle, image, intent
Round 2 - Coding Test 

One assignment is given to do

Round 3 - HR 

(1 Question)

  • Q1. General normal questions

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)

Interview questions from similar companies

Android Developer Interview Questions & Answers

Bajaj Finserv user image Shrikar Shirish Korwar

posted on 23 May 2024

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

I applied via Naukri.com and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Duplicate elements in a array with o(n) complexity.
  • Ans. 

    Use a HashSet to track duplicate elements in linear time complexity.

    • Create a HashSet to store unique elements.

    • Iterate through the array and check if the element is already in the HashSet. If it is, then it is a duplicate.

    • Add the duplicate elements to a separate list or array.

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

(1 Question)

  • Q1. Coroutines in details
  • Ans. 

    Coroutines are a way to perform asynchronous operations in a sequential manner in Kotlin.

    • Coroutines are lightweight threads that can be used for asynchronous programming.

    • They allow for sequential code execution with suspend functions.

    • Coroutines can be used for tasks like network calls, database operations, and UI updates.

    • They are part of Kotlin's standard library and are supported in Android development.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Fragments vs Acttivty
  • Ans. 

    Fragments are reusable UI components within an Activity, allowing for more modular and flexible design.

    • Fragments can be added or removed dynamically within an Activity.

    • Activities represent a single screen with a user interface, while Fragments can be used to create multi-pane layouts for tablets.

    • Fragments have their own lifecycle and can be reused across multiple Activities.

    • Example: A news app may use a Fragment to dis...

  • Answered by AI
  • Q2. Basic kotlin ques
  • Q3. Faced issues in project
  • Ans. 

    Yes, faced issues in project

    • Encountered compatibility issues with different Android versions

    • Struggled with optimizing app performance for lower-end devices

    • Had challenges with integrating third-party APIs

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Conflict management
  • Q2. Financial forecasting and vendor management
  • Q3. Alteryx, SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - - Be prepared.
- Read the JD to understand the probable questions.
- Ask your queries and understanding about the requirements.
- Smile
- Be yourself
- Prepare introduction in line with the job

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Check palindrome , anagram of string with O(n)
  • Ans. 

    To check palindrome and anagram of a string with O(n), use a hash table to store character frequencies.

    • Create a hash table to store the frequency of each character in the string.

    • For palindrome, check that no more than one character has an odd frequency.

    • For anagram, compare the hash tables of the two strings.

    • If the hash tables are equal, the strings are anagrams.

    • If the hash tables differ by only one character, the strin...

  • Answered by AI
  • Q2. Optimized solutions and core principles applied in OOPS
  • Ans. 

    Optimized solutions and core principles applied in OOPS

    • Encapsulation, Inheritance, Polymorphism, Abstraction are core principles of OOPS

    • Optimized solutions can be achieved through efficient algorithms and data structures

    • Design patterns like Singleton, Factory, Observer can also be used for optimized solutions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for best possible solutions. and they are not using that in project then also they ask

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an integer array containing numbers from 0 to (N - 2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number that appears twice in the array.

    • The duplicate number is always present in the given array.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

  • Q1. 

    Bubble Sort Problem Statement

    Sort an unsorted array of non-negative integers using the Bubble Sort algorithm, which swaps adjacent elements if they are not in the correct order to sort the array in non-d...

  • Ans. 

    Bubble Sort is used to sort an array of non-negative integers in non-decreasing order by swapping adjacent elements if they are not in the correct order.

    • Iterate through the array and compare adjacent elements, swapping them if they are in the wrong order.

    • Repeat this process until the array is sorted in non-decreasing order.

    • Time complexity of Bubble Sort is O(n^2) in worst case.

    • Example: For input [6, 2, 8, 4, 10], the o

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Unweighted Graph Shortest Path Problem

    You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 ...

  • Ans. 

    Find the shortest path between two houses in a city represented as an unweighted graph.

    • Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Start BFS from the source house and keep track of the shortest path to each house.

    • Once the destination house is reached, backtrack to find the shortest path.

    • Consider using a queue data structure to implement BFS efficiently.

  • Answered by AI
Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria7Morgan Stanley interview preparation:Topics to prepare for the interview - Java , spring, aws,azure, Algorithm, computer Architecture, compiler designTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : online resources
Tip 2 : cracking the coding interview by Gayle laykemann this is one of the best book for learning the concept at the initial level. Start practicing the approaches mention in the book once done apply the same to similar level pattern questions.
Tip 3 : geeks for geeks start from school level and then move towards easy medium and hard once done practice the previous year questions

Application resume tips for other job seekers

Tip 1 : precise clear concise and well written 
Tip 2 : mentions the skills sets along with the projects

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Reason for job switch. Reason for role switch. Technical role related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and go with a smile. Do try to connect with the interviewer on a personal level. Know everything about your CV perfectly because they won’t go much beyond that. Be prepared for your new role related questions about how your current skills are transferable to your new job.

Analyst Interview Questions & Answers

UBS user image Anonymous

posted on 17 Oct 2021

I applied via Company Website and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I was asked mostly about my profile and there expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - There were two technical rounds and it was of 30 - 40 mins long and interviewer was friendly and made me confortable with them.

TrigenSoft Solutions Interview FAQs

How many rounds are there in TrigenSoft Solutions interview?
TrigenSoft Solutions interview process usually has 3 rounds. The most common rounds in the TrigenSoft Solutions interview process are HR, Resume Shortlist and Technical.
How to prepare for TrigenSoft 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 TrigenSoft Solutions. The most common topics and skills that interviewers at TrigenSoft Solutions expect are Javascript, Django, Python, CSS and Front End.
What are the top questions asked in TrigenSoft Solutions interview?

Some of the top questions asked at the TrigenSoft Solutions interview -

  1. All basics of Java , Android , Sqlite. Asked to create program.One question reg...read more
  2. activity,fragment,layouts,service lifecycle, image, int...read more
  3. related to android and j...read more

Tell us how to improve this page.

TrigenSoft Solutions Interview Process

based on 4 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 576 Interviews
Citicorp Interview Questions
3.7
 • 573 Interviews
Bajaj Finserv Interview Questions
4.0
 • 534 Interviews
HSBC Group Interview Questions
3.9
 • 487 Interviews
Xyz Company Interview Questions
3.8
 • 460 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
BNY Interview Questions
3.9
 • 347 Interviews
UBS Interview Questions
3.9
 • 338 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
View all

TrigenSoft Solutions Reviews and Ratings

based on 15 reviews

3.2/5

Rating in categories

2.7

Skill development

3.1

Work-life balance

2.9

Salary

2.6

Job security

3.3

Company culture

2.9

Promotions

2.8

Work satisfaction

Explore 15 Reviews and Ratings
Software Developer
7 salaries
unlock blur

₹1.8 L/yr - ₹4.7 L/yr

Softwaretest Engineer
7 salaries
unlock blur

₹1.5 L/yr - ₹3.6 L/yr

Python Developer
5 salaries
unlock blur

₹1.6 L/yr - ₹3 L/yr

Software Testing Engineer
5 salaries
unlock blur

₹1.5 L/yr - ₹3.2 L/yr

Business Analyst
4 salaries
unlock blur

₹2.4 L/yr - ₹6.6 L/yr

Explore more salaries
Compare TrigenSoft Solutions with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

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