Upload Button Icon Add office photos

Jeevan Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Jeevan Technologies Interview Questions and Answers

Updated 22 Jan 2025
Popular Designations

Jeevan Technologies Interview Experiences

3 interviews found

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

I appeared for an interview before Jan 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to BA role and situation based questions
  • Q2. Situation based questions
  • Ans. 

    Faced a performance issue in a React Native app, resolved it by optimizing components and using memoization techniques.

    • Identified performance lag during app navigation, leading to a poor user experience.

    • Used React's PureComponent and memoization to prevent unnecessary re-renders.

    • Implemented lazy loading for images and components to improve initial load time.

    • Conducted thorough testing with React DevTools to monitor comp...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions were related to Salesforce sales cloud, service cloud and Salesforce Admin
Round 3 - HR 

(1 Question)

  • Q1. Some basic HR related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2023. 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. Singletone class write code
  • Q2. Wrote singleton class
  • Ans. 

    A singleton class is a class that can only have one instance created at a time.

    • Ensure the class has a private constructor to prevent external instantiation.

    • Provide a static method to access the single instance of the class.

    • Use a static variable to hold the single instance of the class.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Trigger,Vf pages
  • Q2. Explain about previous project
Round 2 - HR 

(1 Question)

  • Q1. Previous company CTC
  • Ans. 

    Previous company CTC

    • Previous company CTC refers to the salary or compensation package received in the previous job.

    • It is an important factor to consider when evaluating a candidate's experience and expectations.

    • The answer should provide the specific amount or range of the previous company's CTC.

    • Example: My previous company CTC was $100,000 per annum.

  • Answered by AI

Top trending discussions

View All
Interview Hub
1w (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 Jeevan Technologies?
Ask anonymously on communities.

Interview questions from similar companies

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

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

Interview Questionnaire 

2 Questions

  • Q1. It was mostly puzzles.
  • Q2. One algo question invoving recursive function .
  • Ans. 

    Recursive functions solve problems by breaking them down into smaller subproblems, often leading to elegant solutions.

    • A recursive function calls itself with modified parameters.

    • Base case is crucial to prevent infinite recursion.

    • Example: Factorial function - factorial(n) = n * factorial(n-1) with base case factorial(0) = 1.

    • Example: Fibonacci sequence - fib(n) = fib(n-1) + fib(n-2) with base cases fib(0) = 0, fib(1) = 1.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers - prepare puzzles and basic computer science fundamentals

I applied via Job Fair and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

In this round, we have questions from time relation, blood relation, programming questions. Around 45 questions in 30 minutes,

Round 2 - Coding Test 

In this round, we have two programming questions. Both are hacker rank easy to medium level.

Round 3 - Technical 

(1 Question)

  • Q1. In this round, we have questions from the core java and a famous scooter tire question.

Interview Preparation Tips

Interview preparation tips for other job seekers - All the questions are at a medium level. Always keep your confidence high.
Be interview-ready. Browse the most asked HR questions.
illustration image

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Check if binary tree is balanced or not.
  • Q2. Detect loops in linked list.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was good, do your DS Algo questoin thoroughly.

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

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

Interview Questionnaire 

2 Questions

  • Q1. Object Oriented Concepts and basic list/tuple/dictionary/ datetime conversion
  • Q2. Project done in last company and how will you help Saama?

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to frame answers end to end and stick to what you have done. Don't try to exaggerate.

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. API testing methods
  • Ans. 

    API testing methods involve functional, performance, security, and exploratory testing.

    • Functional testing ensures that the API meets the requirements and specifications.

    • Performance testing checks the API's response time, throughput, and resource utilization.

    • Security testing verifies the API's authentication, authorization, and encryption mechanisms.

    • Exploratory testing involves ad-hoc testing to discover defects and usa...

  • Answered by AI
  • Q2. Difference between sanity and smoke
  • Ans. 

    Sanity and Smoke are types of software testing. Sanity tests a specific functionality while Smoke tests the entire system.

    • Sanity testing is a narrow and deep testing approach while Smoke testing is a broad and shallow testing approach.

    • Sanity testing is performed after a small change in code while Smoke testing is performed after a major change in code.

    • Sanity testing is used to check if the critical functionalities are ...

  • Answered by AI
  • Q3. Difference between retesting and regression
  • Q4. Bug life cycle

Interview Preparation Tips

Interview preparation tips for other job seekers - It was technical based interview round.

Skills evaluated in this interview

Jeevan Technologies Interview FAQs

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

Some of the top questions asked at the Jeevan Technologies interview -

  1. Situation based questi...read more
  2. wrote singleton cl...read more
  3. singletone class write c...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.6/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

ZeMoSo Technologies Interview Questions
3.5
 • 147 Interviews
Zifo RnD Solutions Interview Questions
3.7
 • 65 Interviews
QualiZeal Interview Questions
4.2
 • 59 Interviews
kipi.ai Interview Questions
4.1
 • 58 Interviews
Saama Technologies Interview Questions
3.8
 • 58 Interviews
Talentica Software Interview Questions
4.1
 • 52 Interviews
View all

Jeevan Technologies Reviews and Ratings

based on 73 reviews

3.9/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

4.0

Salary

3.5

Job security

3.9

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 73 Reviews and Ratings
Network Engineer IV

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

SW Real Time Data Engineer III - Data Streaming

Hyderabad / Secunderabad

3-7 Yrs

Not Disclosed

Delivery Manager

Chennai

8-13 Yrs

Not Disclosed

Explore more jobs
Salesforce Developer
40 salaries
unlock blur

₹4.1 L/yr - ₹9.2 L/yr

Senior Associate
38 salaries
unlock blur

₹14.9 L/yr - ₹26 L/yr

Associate
32 salaries
unlock blur

₹8.4 L/yr - ₹15.6 L/yr

Senior IT Analyst
19 salaries
unlock blur

₹7 L/yr - ₹11.2 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹15.5 L/yr - ₹26.2 L/yr

Explore more salaries
Compare Jeevan Technologies with

Medcode

4.3
Compare

Cyfuture

2.8
Compare

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare
write
Share an Interview