Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Jiem India Team. If you also belong to the team, you can get access from here

Jiem India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Jiem India Interview Questions and Answers

Updated 28 Mar 2024

Jiem India Interview Experiences

Popular Designations

3 interviews found

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Bilingual (Japanese lang. Test) 

(2 Questions)

  • Q1. Introduce yourself (in Japanese)
  • Q2. Why did you study Japanese?(in Japanese)
Round 2 - Technical 

(5 Questions)

  • Q1. All concepts of Manual testing
  • Q2. What is Java and Oops concepts?
  • Ans. 

    Java is a popular programming language used for developing applications, while OOPs concepts are principles used for designing software.

    • Java is a high-level, object-oriented programming language known for its platform independence.

    • OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Inheritance allows...

  • Answered by AI
  • Q3. What are the Testing Techniques?
  • Ans. 

    Testing techniques are methods used to design and execute test cases to ensure software quality.

    • Black Box Testing: Testing without knowledge of internal code structure.

    • White Box Testing: Testing with knowledge of internal code structure.

    • Unit Testing: Testing individual units or components of a software.

    • Integration Testing: Testing the integration of multiple units or components.

    • Regression Testing: Testing to ensure new...

  • Answered by AI
  • Q4. What is API Testing?
  • Ans. 

    API Testing is a type of software testing that involves testing APIs directly.

    • API Testing involves testing the functionality, reliability, performance, and security of APIs.

    • It focuses on verifying that the API meets the requirements and works as expected.

    • API Testing can be done manually or using automated tools like Postman or SoapUI.

    • Examples of API Testing include testing the response time of an API, checking for prop

  • Answered by AI
  • Q5. What is SQL, idea about Linux or XL ??
  • Ans. 

    SQL is a language used for managing and manipulating databases. Linux is an open-source operating system. XL may refer to Excel.

    • SQL stands for Structured Query Language and is used to communicate with databases.

    • Linux is an open-source operating system popular for its stability and security.

    • XL could refer to Microsoft Excel, a spreadsheet program used for data analysis.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be firm with your answers and be prepared thoroughly with all the topics and courses that you have mentioned in your Resume.

Skills evaluated in this interview

Quality Analyst Interview Questions asked at other Companies

Q1. How you will maintain the balance between operations and quality so that they do not have any conflicts of interest
View answer (3)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Profit loss, reasoning, probability

Round 2 - Technical 

(4 Questions)

  • Q1. Questions on java and seleniun, testng
  • Q2. What is assertion in testng
  • Ans. 

    Assertion in TestNG is used to validate the expected outcome of a test case.

    • Assertions are used to verify that the actual result matches the expected result in a test case

    • TestNG provides various assertion methods such as assertEquals, assertTrue, assertFalse, etc.

    • If an assertion fails, the test case is marked as failed and the execution stops

  • Answered by AI
  • Q3. What are Annotations in testng
  • Ans. 

    Annotations in TestNG are used to provide additional information about test methods and classes.

    • Annotations are used to configure test methods, classes, and suites in TestNG

    • Annotations help in defining the sequence of test methods to be executed

    • Examples of annotations in TestNG include @Test, @BeforeSuite, @AfterSuite, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod

  • Answered by AI
  • Q4. How to handle dynamic drop down
  • Ans. 

    Dynamic drop downs can be handled by using automation tools like Selenium WebDriver to identify and interact with the elements.

    • Use Selenium WebDriver to identify the parent element of the dynamic drop down

    • Capture the options within the drop down using findElements method

    • Iterate through the options and select the desired option based on specific criteria

    • Handle any dynamic changes in the drop down by re-identifying the e

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What are your strength and weakness

Skills evaluated in this interview

Quality Engineer Interview Questions asked at other Companies

Q1. What is MSA and addition of msa version, type of msa ,what different between variable data and attibute data .why difine flase and miss rate calculate by msa .
View answer (9)

Interview Questions & Answers

user image Anonymous

posted on 7 Aug 2021

I applied via Naukri.com and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Interview questions were related to all areas of testing like automation, performance testing, security testing, and people management.
  • Q2. Prepare technical questions especially for selenium and cucumber automation and BDD framework. Performance testing questions on Jmeter. There were some security testing related questions
  • Q3. Prepare for people management related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - The company JIEM India Pvt is very nice. Since I was working with IBM and other big MNCs, I was a bit nervous to join this company but when I joined it then it was a great experience. The work environment was so cool and colleagues were very cooperative.

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed before Apr 2022. There were 3 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 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

I appeared for an interview before Apr 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on DSA and DBMS mainly.

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array ARR consisting of N integers, determine the sum of the subarray with the maximum sum, including the possibility of an empty subarray.

    A subarray is a...

  • Ans. 

    Find the sum of the subarray with the maximum sum in a given array.

    • Iterate through the array and keep track of the current sum and maximum sum.

    • Update the maximum sum if the current sum becomes greater.

    • Handle cases where the array has all negative numbers or empty subarray.

    • Example: For input [-2, 1, -3, 4, -1], the maximum sum subarray is [4] with sum 4.

  • Answered by AI
  • Q2. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for efficient prime number identification

    • Optimize by only checking numbers up to square root of N for divisibility

  • Answered by AI
  • Q3. What are Joins in the context of databases?
  • Ans. 

    Joins in databases are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right ta...

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABigStep Technologies interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DBMS, SQL, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before May 2021. There were 5 interview rounds.

Round 1 - Coding Test 

Hackerrank Test

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to NodeJS and Javascript Basics
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions based on past experience
Round 4 - HR 

(1 Question)

  • Q1. Company Culture related
Round 5 - Behavioral 

(1 Question)

  • Q1. Expectations and Processes

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the basics. Medium level interview questions. All the best.

I applied via Campus Placement and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are Joins in SQL? Briefly explain difference between all types of joins
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Inner join returns only the matching rows from both tables

    • Left join returns all rows from the left table and matching rows from the right table

    • Right join returns all rows from the right table and matching rows from the left table

    • Full outer join returns all rows from both tables, with NULL values for non-matching rows

    • Cross join retur

  • Answered by AI
  • Q2. Find a sub array with a given sum
  • Ans. 

    Given an array of integers, find a contiguous subarray with a given sum.

    • Use a sliding window approach to iterate through the array and keep track of the current sum.

    • If the current sum exceeds the given sum, move the window's left endpoint forward.

    • If the current sum is less than the given sum, move the window's right endpoint forward.

    • If the current sum equals the given sum, return the subarray.

    • Time complexity: O(n), Spa

  • Answered by AI
  • Q3. Questions related to Projects mentioned in CV

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview advice would be to remain honest throughout the interview. The interviewer checks the problem solving abilities by your approach of solving it. Ask if there are any doubts.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

1st test was aptitude and a easy coding test

Round 2 - Coding Test 

The 2nd test was pure coding based test on hacker rank platform and contains 2 easy and 2 medium question

Round 3 - Technical 

(1 Question)

  • Q1. Round 3 was technical interview and asked from basics of computer programming and architecture
Round 4 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Q2. Why are you looking for a change?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Advice is just improve basics of programming and DSA with a database management and basicsa of os and networks
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What motivates you to join Zidio Development as opposed to other companies?
  • Q2. How will your experience with Zidio development contribute to your career growth?
  • Ans. 

    My experience with Zidio development will enhance my technical skills, teamwork, and problem-solving abilities, crucial for my career growth.

    • Developed proficiency in programming languages like Java and Python, which are essential for software development roles.

    • Collaborated with a diverse team, improving my communication skills and ability to work in a team-oriented environment.

    • Gained hands-on experience with agile meth...

  • Answered by AI

Jiem India Interview FAQs

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

Some of the top questions asked at the Jiem India interview -

  1. What is Java and Oops concep...read more
  2. What is SQL, idea about Linux or XL...read more
  3. How to handle dynamic drop d...read more

Tell us how to improve this page.

Jiem India Interview Process

based on 5 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Reliance Retail Interview Questions
3.9
 • 1.6k Interviews
Flipkart Interview Questions
3.9
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 753 Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
Tata Group Interview Questions
4.2
 • 359 Interviews
Myntra Interview Questions
4.0
 • 216 Interviews
Blinkit Interview Questions
3.7
 • 183 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
View all

Jiem India Reviews and Ratings

based on 16 reviews

3.8/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

3.3

Salary

3.6

Job security

3.8

Company culture

3.0

Promotions

3.7

Work satisfaction

Explore 16 Reviews and Ratings
Engineer III
7 salaries
unlock blur

₹6.6 L/yr - ₹16.2 L/yr

Software Engineer
6 salaries
unlock blur

₹2.9 L/yr - ₹6.2 L/yr

Software Developer
6 salaries
unlock blur

₹2.6 L/yr - ₹19.2 L/yr

L2 Engineer
6 salaries
unlock blur

₹4 L/yr - ₹8.8 L/yr

Specialist
5 salaries
unlock blur

₹10 L/yr - ₹21 L/yr

Explore more salaries
Compare Jiem India with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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