Upload Button Icon Add office photos

Filter interviews by

TREJHARA SOLUTIONS Software Engineer Interview Questions and Answers

Updated 21 Sep 2021

TREJHARA SOLUTIONS Software Engineer Interview Experiences

1 interview found

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

Interview Questionnaire 

4 Questions

  • Q1. What is DI & IOC
  • Ans. 

    DI & IOC are design patterns used in software engineering to achieve loose coupling and better maintainability.

    • DI stands for Dependency Injection, which is a technique to provide dependencies to an object from an external source rather than creating them within the object.

    • IOC stands for Inversion of Control, which is a principle that states that the control of object creation and lifecycle should be inverted from the a...

  • Answered by AI
  • Q2. Questions related to collection.
  • Q3. Questions related to multithreading
  • Q4. Questions related to JavaScript

Interview Preparation Tips

Interview preparation tips for other job seekers - Good knowledge of java is required

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Nov 2024.

Round 1 - HR 

(3 Questions)

  • Q1. Where do you live?
  • Ans. 

    I live in a cozy apartment in downtown Seattle.

    • I live in downtown Seattle

    • My apartment is cozy

    • I enjoy the urban lifestyle

  • Answered by AI
  • Q2. Family background
  • Q3. Introduction
Round 2 - Aptitude Test 

Easy to medium level questions

Round 3 - Coding Test 

Questions on recursion, string, array and patterns

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 Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

2 section
MCQ + CODING(intermediate level)

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions related to JS, ANGULAR, Node JS, and some Coding questions
Round 3 - Assignment 

Todo application was the assignment task to complete in one day.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for the profile which you have applied for,
Basics of profile stack you should know atleast,
Good to have DSA atleast intermediate level
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Ubuntu install?
  • Q2. Windows install?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t join this company, fake company they don’t have any projects. More than 80% of employee is intern without pay. They hire you with fake promises and they gave you work of installing ubuntu and windows no matter you are experienced software engineer.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. How many years of experience you have
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 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 

Such like blood relation questions, graph, alphabet and numeric values etc

Round 3 - Coding Test 

Related to operators, oop concepts

Round 4 - HR 

(4 Questions)

  • Q1. Basic questions like introduce my self, expectation salary etc
  • Q2. Oop concepts questions, SQL database query etc
  • Q3. And any questions about our company
  • Q4. 2 Coding questions Java, Python questions and machine learning

Interview Preparation Tips

Topics to prepare for HCL Infosystems Software Engineer interview:
  • Python developer
  • Machine Learning
  • Java Servlets
  • Html5
  • CSS3
  • My sql
Interview experience
3
Average
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 - Assignment 

2 technical interviews will be there

Round 3 - Technical 

(1 Question)

  • Q1. Second round is with senior technical person
Round 1 - Coding Test 

Topics:
Python, Django, MySQL, Automation, Technical questions

Round 2 - Technical 

(3 Questions)

  • Q1. Topics: Python, Django, MySQL, Automation, Technical questions
  • Q2. Explain Django Architecture
  • Ans. 

    Django follows Model-View-Controller (MVC) architectural pattern.

    • Django has a high-level architecture that follows the Model-View-Controller (MVC) architectural pattern.

    • The Model layer represents the database schema and business logic.

    • The View layer is responsible for rendering the templates and presenting the data to the user.

    • The Controller layer handles the user's input and interacts with the Model and View layers.

    • Dj...

  • Answered by AI
  • Q3. Difference between XML and JSON
  • Ans. 

    XML is a markup language while JSON is a lightweight data interchange format.

    • XML uses tags to define elements while JSON uses key-value pairs.

    • XML is more verbose and complex than JSON.

    • JSON is easier to read and parse than XML.

    • XML supports namespaces and validation while JSON does not.

    • XML is widely used in web services and document exchange while JSON is preferred for data exchange between applications.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Python Django
Showcase your skills

Skills evaluated in this interview

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

In this round 3 coding question were asked. 
1 - algorithm based ( medium) 
2- array based ( easy) 
3- string based (easy)

  • Q1. Ways To Make Coin Change

    You are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a cha...

  • Ans. Recursion

     

    1. The idea is to use recursion.
    2. For a particular coin, we have two options either include it or exclude it.
    3. If we include that coin, then calculate the remaining number that we have to generate so recur for that remaining number.
    4. If we exclude that coin, then recur for the same amount that we have to make.
    5. Our final answer would be the total number of ways either by including or excluding.
    6. There will be two edg...
  • Answered by CodingNinjas
  • Q2.  Left Rotations of An Array

    You are given an array consisting of 'N' elements and you need to perform 'Q' queries on the given array. Each query consists of an integer which tells the numbe...

  • Ans. Rotate One Element At A Time

    The idea is to create a function which would rotate the array one element at a time. This can be done by shifting the array towards left by one element and copying the first element to the end of the array. For every query repeatedly call the above function, until the desired rotation is obtained.

     

    If the number of rotations required, say ‘K’, is greater than the number of elements, ‘N’,...

  • Answered by CodingNinjas
  • Q3. Chocolate Problem

    Given an array/list of integer numbers 'CHOCOLATES' of size 'N', where each value of the array/list represents the number of chocolates in the packet. There are ‘M’ number...

  • Ans. Recursion

    The idea is that generate all the possible subsets of size ‘M’ and checks the minimum difference that can be possible from all subsets. 

     

    1. This problem can be solved using recursion and the idea behind this is to generate all the possible minimum differences from the given array.
    2. To store minimum difference we use a variable (say, ‘minVal’) and the initial value is ‘INFINITE’
    3. For each element we will hav...
  • Answered by CodingNinjas
Round 2 - Video Call 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Involved some basic question based on DSA and Java script framework and project discussion

  • Q1. JavaScript basic question

    Basic questions on java script were asked

  • Q2. MYSQL query

    Questions on mysql and database.

  • Q3. Project

    Questions on projects in resume.

  • Q4. Node js basic question

    Questions on basic node js concepts.

Round 3 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was the CTO round involving some technology based questions

  • Q1. Oops concepts

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from SR Institute of Management & Technology. Eligibility criteriaStudents of career camp of coding ninjasTech Vedika interview preparation:Topics to prepare for the interview - Data structure, algorithm, JavaScript, OOPS, MYSQL, PythonTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 250+ coding question based on all data structure and algorithm. 
Tip 2 : Make proficiency in any one language like python or java or JavaScript. 
Tip 3 : Learn at least one framework familiar like : Django, Nodejs, React js, spring boot. And at least two project based on fronted and backend technology mixture.

Application resume tips for other job seekers

Tip 1 : Practise on online coding profile is must like Hackerrank... Etc 
Tip 2 : Project is necessary based on trending technology like nodejs, react, Django... Etc.

Final outcome of the interviewSelected

Skills evaluated in this interview

TREJHARA SOLUTIONS Interview FAQs

How to prepare for TREJHARA SOLUTIONS 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 TREJHARA SOLUTIONS. The most common topics and skills that interviewers at TREJHARA SOLUTIONS expect are Hibernate, J2Ee, Java, SQL Queries and Spring.
What are the top questions asked in TREJHARA SOLUTIONS Software Engineer interview?

Some of the top questions asked at the TREJHARA SOLUTIONS Software Engineer interview -

  1. What is DI & ...read more
  2. Questions related to collecti...read more
  3. Questions related to multithread...read more

Tell us how to improve this page.

TREJHARA SOLUTIONS Software Engineer Salary
based on 57 salaries
₹3.2 L/yr - ₹7.8 L/yr
32% less than the average Software Engineer Salary in India
View more details

TREJHARA SOLUTIONS Software Engineer Reviews and Ratings

based on 10 reviews

3.7/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

4.0

Salary

4.1

Job security

3.8

Company culture

3.4

Promotions

4.0

Work satisfaction

Explore 10 Reviews and Ratings
Software Engineer
57 salaries
unlock blur

₹3.2 L/yr - ₹7.8 L/yr

Senior Software Engineer
43 salaries
unlock blur

₹4.1 L/yr - ₹10.8 L/yr

Software Developer
18 salaries
unlock blur

₹3.5 L/yr - ₹8.2 L/yr

Principal Engineer
14 salaries
unlock blur

₹7.2 L/yr - ₹25 L/yr

Senior Associate Operations
9 salaries
unlock blur

₹3.8 L/yr - ₹7 L/yr

Explore more salaries
Compare TREJHARA SOLUTIONS with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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