Upload Button Icon Add office photos
Engaged Employer

i

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

Semusi Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Semusi Technologies Interview Questions and Answers

Updated 4 Feb 2025
Popular Designations

Semusi Technologies Interview Experiences

3 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 6 Aug 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Why are looking for a job chy
  • Ans. 

    I am looking for a job to further develop my skills and contribute to a team in a challenging and rewarding environment.

    • Seeking new challenges and opportunities for growth

    • Want to contribute to a team and make a positive impact

    • Interested in working in a dynamic and innovative environment

  • Answered by AI
  • Q2. What are your daily activities as QA Engineer
  • Ans. 

    As a QA Engineer, my daily activities include testing software, identifying bugs, writing test cases, collaborating with developers, and ensuring quality standards are met.

    • Testing software to identify bugs and ensure functionality

    • Writing and executing test cases to validate software features

    • Collaborating with developers to understand requirements and resolve issues

    • Participating in meetings to discuss project progress a...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Types of testing
  • Ans. 

    Types of testing include functional, non-functional, manual, automated, regression, performance, and security testing.

    • Functional testing: Testing the functionality of the software.

    • Non-functional testing: Testing aspects like performance, usability, and security.

    • Manual testing: Testing performed manually by QA engineers.

    • Automated testing: Testing performed using automation tools.

    • Regression testing: Testing to ensure new...

  • Answered by AI
  • Q2. Explain sdlc & stlc
  • Ans. 

    SDLC (Software Development Life Cycle) is the process of developing software, while STLC (Software Testing Life Cycle) is the process of testing software.

    • SDLC involves planning, designing, coding, testing, and maintenance of software.

    • STLC involves test planning, test design, test execution, and test closure.

    • SDLC focuses on the development of software, while STLC focuses on ensuring the quality of the software.

    • Examples:...

  • Answered by AI
  • Q3. Explain Bug Life Cycle
  • Ans. 

    Bug life cycle is the process of identifying, reporting, fixing, retesting, and closing a software bug.

    • Bug identification: Bug is identified by QA engineer through testing.

    • Bug reporting: QA engineer reports the bug with detailed information.

    • Bug fixing: Developer fixes the bug based on the report.

    • Bug retesting: QA engineer retests the fixed bug to ensure it is resolved.

    • Bug closing: Once the bug is confirmed fixed, it is...

  • Answered by AI
  • Q4. Tell me about your project
  • Ans. 

    Developed a web application for online shopping

    • Used Selenium for automated testing

    • Performed regression testing after each new feature

    • Collaborated with developers to identify and fix bugs

  • Answered by AI
Round 3 - Assignment 

Prepare a test report

Skills evaluated in this interview

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

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

The coding test is beneficial and typically takes between 1 to 1.5 hours to complete.

Round 2 - HR 

(1 Question)

  • Q1. Are you willing to work from the Mumbai location?
  • Ans. 

    Yes, I am willing to work from the Mumbai location.

    • I am open to working from the Mumbai location.

    • I have no issues with relocating to Mumbai for work.

    • I am excited about the opportunity to work in Mumbai.

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Just about projects and skills you are aware of
  • Q2. Fweg hbwhrgb35jv nhareghkjnwev

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Semusi Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2021. 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 

Numerical and logical aptitude test

Round 3 - Coding Test 

There are 5 rounds on datastructure and algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice hr and all team is suportive
Good and smoth interview experiance

I applied via Referral and was interviewed in Sep 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell us about Reliability?
  • Ans. 

    Reliability refers to the ability of a system or component to perform its required functions under stated conditions for a specified period of time.

    • Reliability is a measure of how often a system or component fails and how quickly it can be restored to normal operation.

    • It is important to design systems with redundancy and failover mechanisms to ensure high reliability.

    • Reliability can be improved through regular maintena...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have got selected by Interviewer Rajib Das.

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 135 minutes
Round difficulty - Easy

Coding questions was easy if you know the basic of coding in any language. I submitted optimized solution for every questions that's why i got selected in this round.

  • Q1. 

    Find K'th Character of Decrypted String

    You are given an encrypted string where repeated substrings are represented by the substring followed by its count. Your task is to find the K'th character of the d...

  • Ans. 

    Given an encrypted string with repeated substrings represented by counts, find the K'th character of the decrypted string.

    • Parse the encrypted string to extract substrings and their counts

    • Iterate through the substrings and counts to build the decrypted string

    • Track the position in the decrypted string to find the K'th character

  • Answered by AI
  • Q2. 

    Cycle Detection in Undirected Graph Problem Statement

    You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...

  • Ans. 

    Detect if an undirected graph contains a cycle.

    • Use Depth First Search (DFS) to traverse the graph and detect cycles.

    • Maintain a visited array to keep track of visited vertices.

    • If a visited vertex is encountered again during DFS, a cycle exists.

    • Check for back edges while traversing the graph.

    • Consider disconnected graphs as well.

  • Answered by AI
Round 2 - Assignment 

(3 Questions)

Round duration - 150 minutes
Round difficulty - Medium

  • Q1. 

    Pair Sum Problem Statement

    You are provided with an array ARR consisting of N distinct integers in ascending order and an integer TARGET. Your objective is to count all the distinct pairs in ARR whose sum...

  • Ans. 

    Count distinct pairs in an array whose sum equals a given target.

    • Use two pointers approach to iterate through the array and find pairs with sum equal to target.

    • Keep track of visited pairs to avoid counting duplicates.

    • Return -1 if no such pair exists with the given target.

  • Answered by AI
  • Q2. 

    Next Smaller Palindrome Problem Statement

    You are given a palindrome number represented as a string S. Your task is to find the largest palindrome number that is strictly less than S.

    Example:

    Input:
    T...
  • Ans. 

    Given a palindrome number represented as a string, find the largest palindrome number that is strictly less than the given number.

    • Iterate from the middle towards the start and end of the string to find the next smaller palindrome.

    • If the number is odd in length, simply mirror the left half to the right half to get the next smaller palindrome.

    • If the number is even in length, decrement the middle digit and mirror the left...

  • Answered by AI
  • Q3. 

    Longest Common Subsequence Problem Statement

    Given two strings STR1 and STR2, determine the length of their longest common subsequence.

    A subsequence is a sequence that can be derived from another sequen...

  • Ans. 

    The problem involves finding the length of the longest common subsequence between two given strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of common subsequences of substrings.

    • Iterate through the strings to fill the array and find the length of the longest common subsequence.

    • Example: For input STR1 = 'abcde' and STR2 = 'ace', the longest common subsequence is 'a...

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

Interview went well.The interviewer asked me how the previous interviews were.

  • Q1. 

    Boundary Traversal of a Binary Tree

    Given a binary tree of integers, your task is to output the boundary nodes of this binary tree in Anti-Clockwise order, starting from the root node.

    Explanation:

    The b...

  • Ans. 

    Output the boundary nodes of a binary tree in Anti-Clockwise order, starting from the root node.

    • Traverse the left boundary nodes in top-down order

    • Traverse the leaf nodes from left to right

    • Traverse the right boundary nodes in bottom-up order

    • Combine the above traversals to get the boundary nodes in Anti-Clockwise order

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Maintain left pointer for 0s, right pointer for 2s, and current pointer for traversal.

    • Example: If current element is 0, swap it with element at left pointer and increment both pointers.

  • Answered by AI
Round 4 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This round is very easy, In this round they basically need confidence and truthful person.

Interview Preparation Tips

Eligibility criteriaabove 7.5 CGPADeloitte interview preparation:Topics to prepare for the interview - Data Structures, Web development, System Design, Algorithms, Dynamic Programming, Database, Networking, DevOps, Operating System, Database Management System, Object-Oriented Programming System , basic aptitudeTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : For Data Structures number of questions doesn't matter. Try to understand the logic behind them and try to apply them in creating multiple scenario's. 
Tip 2 : Do lot of hard work and practice of Data Structures and Algorithms based questions
Tip 3 : See which part interests you more, Increase your knowledge horizon, Always try to build a system a system considering It will be served to millions of customers.
Tip 4 : I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Tip 1 : Always try to make it a single page 
Tip 2 : do mention all your skills which you are confident of in your resume.
Tip 3 : Always make resume company specific

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 2 hours
Round difficulty - Medium

In the 1st round 
Aptitude
Reasoning
English
Automata fix( code debug) 
Timing in morning
Environment is good
Interviewer was very cool and interactive

  • Q1. 

    Encode the Message Problem Statement

    Given a text message, your task is to return the Run-length Encoding of the given message.

    Run-length encoding is a fast and simple method of encoding strings, repres...

  • Ans. 

    Implement a function to encode a text message using run-length encoding.

    • Iterate through the message and count consecutive characters

    • Append the character and its count to the encoded message

    • Handle edge cases like single characters or empty message

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This is interview round 
Ques from basic electronics
C language

  • Q1. 

    Print Name and Age Problem Statement

    Create a class named Person with a string variable 'name' and an integer variable 'age', such that these variables are not accessible outside the class. Implement a me...

  • Ans. 

    Create a class Person with private variables name and age, and methods to set and get their values.

    • Create a class Person with private variables 'name' and 'age'.

    • Implement a method setValue to set the variables' values.

    • Implement a method getValue to print the variables' values.

    • Ensure the name is a non-empty string and the age is a non-negative integer.

    • Encapsulate the data and provide a clear interface for setting and ge...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 6 cgpaCognizant interview preparation:Topics to prepare for the interview - Electronics basics, C language , Data structure, OOPS, ProjectsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do aptitude from indiabix. Go through your basics. At least one language u know. Learn about your branch basics. Know concept of data structure and oops. 
Tip 2 : prepare your final project well. 

Application resume tips for other job seekers

Tip 1 : the skills you know very well mention in resume
Tip 2 : mention project in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Feb 2022. 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 - Coding Test 

C , java

Interview Preparation Tips

Interview preparation tips for other job seekers - Selection is based on skills and also believe
Round 1 - Aptitude Test 

HTML

Round 2 - Aptitude Test 

Aptitude and resume shortlist and HTML

Round 3 - 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

Interview Preparation Tips

Interview preparation tips for other job seekers - No tips

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

Round 1 - Technical 

(1 Question)

  • Q1. Java Collection, OOPS, Seralization
Round 2 - Technical 

(1 Question)

  • Q1. Java OOPS, Collection, threading, SQL
Round 3 - HR 

(1 Question)

  • Q1. Nothing specific, Salary Negotiations.

Interview Preparation Tips

Interview preparation tips for other job seekers - overall good experience and process was quick

Semusi Technologies Interview FAQs

How many rounds are there in Semusi Technologies interview?
Semusi Technologies interview process usually has 2-3 rounds. The most common rounds in the Semusi Technologies interview process are Technical, HR and Coding Test.
How to prepare for Semusi 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 Semusi Technologies. The most common topics and skills that interviewers at Semusi Technologies expect are Postgresql, Android, Javascript, MongoDB and Rest.
What are the top questions asked in Semusi Technologies interview?

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

  1. Explain Bug Life Cy...read more
  2. Explain sdlc & s...read more
  3. Types of test...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 3 interview experiences

Difficulty level

Easy 67%
Hard 33%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.7
 • 5.9k Interviews
Deloitte Interview Questions
3.7
 • 3k Interviews
BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Teleperformance Interview Questions
3.9
 • 2k Interviews
Reliance Retail Interview Questions
3.9
 • 1.7k Interviews
Ernst & Young Interview Questions
3.4
 • 1.2k Interviews
WNS Interview Questions
3.3
 • 1.1k Interviews
Google Interview Questions
4.4
 • 897 Interviews
EXL Service Interview Questions
3.7
 • 805 Interviews
View all

Semusi Technologies Reviews and Ratings

based on 14 reviews

3.7/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

3.2

Salary

3.7

Job security

3.5

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 14 Reviews and Ratings
Machine Learning Smartphone Developer

Noida

2-7 Yrs

Not Disclosed

Android Application Developer

Noida

2-7 Yrs

Not Disclosed

Explore more jobs
Software Developer
7 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Backend Developer
6 salaries
unlock blur

₹3 L/yr - ₹4.8 L/yr

Devops Engineer
6 salaries
unlock blur

₹4.6 L/yr - ₹6.5 L/yr

Quality Analyst
5 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

IOS Developer
5 salaries
unlock blur

₹3.5 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Semusi Technologies with

Cognizant

3.7
Compare

Teleperformance

3.9
Compare

iEnergizer

4.7
Compare

Reliance Retail

3.9
Compare
write
Share an Interview