Upload Button Icon Add office photos

Filter interviews by

TREJHARA SOLUTIONS Interview Questions and Answers

Updated 22 Mar 2023

TREJHARA SOLUTIONS Interview Experiences

Popular Designations

5 interviews found

Associate Interview Questions & Answers

user image Prakash patil

posted on 22 Mar 2023

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 - HR 

(1 Question)

  • Q1. Personal & professional information they was asking
Round 3 - HR 

(1 Question)

  • Q1. Eduacation details are asking for to know

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to join for freshers for start and learn

Associate Interview Questions asked at other Companies

Q1. What is mean of TTR & why required for powder coating process ?
View answer (17)

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Sql question
  • Ans. Basic one on joins union
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy and good, not complex question

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

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

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

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

Interview Preparation Tips

Interview preparation tips for other job seekers - For BI reporting role you can Prepare sql from basics to advanced level.
Prepare reporting tools like Jasper,Crystal,SSRS.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

TREJHARA SOLUTIONS interview questions for popular designations

 Senior Software Engineer

 (2)

 Associate

 (1)

 Software Developer

 (1)

 Software Engineer

 (1)

Interview Questionnaire 

1 Question

  • Q1. In the first round i was given MCQ sheet having 50 questions to be completed in 20 min. It was mostly on struts , servlets , spring , and core java concepts . Next round was face to face interview. Simple ...

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. How you design cicd pipeline
  • Q2. How you deploy to k8s cluster
  • Q3. How do you use secrets in k8s
  • Q4. What is pod affinity
  • Q5. What is anti affinity
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Coding based questions

Round 2 - Technical 

(1 Question)

  • Q1. Java oops sql based questions
Round 3 - HR 

(1 Question)

  • Q1. Introduce yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company to work and learn new tecchnologies
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you please introduce yourself?
  • Ans. 

    I am a Software Development Engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

    • Experience in developing web applications

    • Good team player

  • Answered by AI
  • Q2. What type of questions are being asked?

Interview Preparation Tips

Interview preparation tips for other job seekers - I am Anjali Singh from Prayagraj in Uttar Pradesh, and I have completed a Postgraduate Diploma in Computer Applications.

QA Lead Interview Questions & Answers

Tech Vedika user image automation engineer selenium

posted on 16 Sep 2024

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Reverse the words in string. 1st word will be coming last and last to the first.with out using builtin functions
  • Ans. 

    Reverse the words in a string without using built-in functions.

    • Split the string into an array of words using a space as the delimiter.

    • Create a new array and iterate over the words array in reverse order, adding each word to the new array.

    • Join the new array of words back into a single string with spaces between each word.

  • Answered by AI
  • Q2. Given some url asked what i have understood from that url in api testing.
  • Q3. Difference between path and querry params
  • Ans. 

    Path params are part of the URL path, while query params are appended to the URL after a '?'

    • Path params are used to identify a specific resource in the URL path, while query params are used to filter or sort the results

    • Path params are defined in the URL path itself, like /users/{id}, while query params are added after a '?' like /users?role=admin

    • Path params are typically used for required parameters, while query params...

  • Answered by AI
  • Q4. Types of parameters in the api testing
  • Ans. 

    Parameters in API testing include path parameters, query parameters, header parameters, and body parameters.

    • Path parameters are used to identify a specific resource in the URL path, e.g. /users/{id}

    • Query parameters are used for filtering or sorting data, e.g. /users?status=active

    • Header parameters contain additional information for the request, e.g. Content-Type: application/json

    • Body parameters are used to send data in ...

  • Answered by AI
  • Q5. How do you write post querry in restassured
  • Ans. 

    To write a post query in RestAssured, use the given() method to set request parameters and body, then use the post() method to send the request.

    • Use given() method to set request parameters and body

    • Use post() method to send the request

    • Example: given().param("key", "value").body("{\"name\": \"John\"}").post("/endpoint")

  • Answered by AI

Skills evaluated in this interview

TREJHARA SOLUTIONS Interview FAQs

How many rounds are there in TREJHARA SOLUTIONS interview?
TREJHARA SOLUTIONS interview process usually has 3 rounds. The most common rounds in the TREJHARA SOLUTIONS interview process are HR and Resume Shortlist.
How to prepare for TREJHARA 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 TREJHARA SOLUTIONS. The most common topics and skills that interviewers at TREJHARA SOLUTIONS expect are Java, Hibernate, Spring, Struts and J2Ee.
What are the top questions asked in TREJHARA SOLUTIONS interview?

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

  1. What is DI & ...read more
  2. eduacation details are asking for to k...read more
  3. Questions related to collecti...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 TREJHARA SOLUTIONS interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 789 Interviews
HCL Infosystems Interview Questions
3.9
 • 141 Interviews
View all

TREJHARA SOLUTIONS Reviews and Ratings

based on 48 reviews

3.2/5

Rating in categories

2.8

Skill development

3.3

Work-Life balance

3.2

Salary & Benefits

3.6

Job Security

3.0

Company culture

2.8

Promotions/Appraisal

3.1

Work Satisfaction

Explore 48 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview