Upload Button Icon Add office photos

Logituit

Compare button icon Compare button icon Compare

Filter interviews by

Logituit Softwaretest Engineer Interview Questions and Answers

Updated 30 Mar 2023

16 Interview questions

A Softwaretest Engineer was asked
Q. What are implicit and explicit waits in Selenium?
Ans. 

Implicit and explicit waits are used in Selenium to handle synchronization issues during test execution.

  • Implicit wait is a global wait applied to all elements in the script, whereas explicit wait is applied to specific elements.

  • Implicit wait is set using the 'driver.manage().timeouts().implicitlyWait()' method, whereas explicit wait is set using the 'WebDriverWait' class.

  • Explicit wait can be customized with condit...

A Softwaretest Engineer was asked
Q. What is a Scenario, and what is a Scenario Outline?
Ans. 

Scenario is a test case that describes a specific situation. Scenario Outline is a template for creating multiple scenarios.

  • Scenario is a detailed description of a specific test case

  • Scenario Outline is a template that can be used to create multiple scenarios with different inputs

  • Scenario Outline uses placeholders for input values that are replaced with actual values during execution

  • Both are used in Behavior Driven...

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If you encounter a blocker defect the day before the release date ... read more
Q3. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q4. Write an SQL query to display the total number of students from t ... read more
Q5. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
A Softwaretest Engineer was asked
Q. If a defect arises during testing, to whom will you report it?
Ans. 

I will report the defect to the project manager and the development team.

  • Report the defect immediately

  • Provide detailed information about the defect

  • Collaborate with the development team to resolve the issue

A Softwaretest Engineer was asked
Q. What format do you use for writing test cases?
Ans. 

Test case format includes test case ID, description, preconditions, test steps, expected results, actual results, and status.

  • Test case ID should be unique and easy to identify.

  • Description should be clear and concise.

  • Preconditions should be listed to ensure the test environment is set up correctly.

  • Test steps should be detailed and include all necessary actions.

  • Expected results should be specific and measurable.

  • Actu...

A Softwaretest Engineer was asked
Q. What is the difference between Test Cases and Test Scripts?
Ans. 

Test cases are documentation of test scenarios while test scripts are automated instructions to execute those scenarios.

  • Test cases are written in natural language and are used to document the steps to be taken to test a particular feature or functionality.

  • Test scripts are automated instructions that are written in a programming language to execute the test cases.

  • Test cases are used for manual testing while test sc...

A Softwaretest Engineer was asked
Q. What is the difference between Functional and Non-Functional Testing?
Ans. 

Functional testing checks if the software meets the requirements while non-functional testing checks how well it performs.

  • Functional testing ensures that the software meets the functional requirements specified in the design document.

  • Non-functional testing checks the performance, usability, reliability, and other non-functional aspects of the software.

  • Functional testing is black-box testing while non-functional te...

A Softwaretest Engineer was asked
Q. What is the difference between a static variable and a non-static variable?
Ans. 

Static variables are shared across all instances of a class while non-static variables are unique to each instance.

  • Static variables are declared with the 'static' keyword while non-static variables are not.

  • Static variables are initialized only once, at the start of the program, while non-static variables are initialized each time an instance of the class is created.

  • Static variables can be accessed using the class ...

Are these interview questions helpful?
A Softwaretest Engineer was asked
Q. What is a Java Package and what are its benefits?
Ans. 

Java Package is a way to organize related classes and interfaces. It helps in encapsulation, reusability, and modularity.

  • Packages help in avoiding naming conflicts between classes and interfaces.

  • Packages provide access control by using access modifiers like public, private, and protected.

  • Packages help in creating a modular and scalable application.

  • Packages can be imported to use the classes and interfaces defined ...

A Softwaretest Engineer was asked
Q. What is the difference between a constructor and a method in Java?
Ans. 

Constructor is used to initialize an object while method is used to perform a specific task.

  • Constructor has the same name as the class while method has a unique name.

  • Constructor is called automatically when an object is created while method is called explicitly.

  • Constructor does not have a return type while method has a return type.

  • Example of constructor: public MyClass() { // initialization code }

  • Example of method...

A Softwaretest Engineer was asked
Q. What is a Java ClassLoader?
Ans. 

Java class loader is a part of Java Runtime Environment (JRE) that loads classes dynamically at runtime.

  • Java class loader is responsible for loading Java classes into the JVM.

  • It searches for the class file in the classpath and loads it into memory.

  • There are three types of class loaders in Java: Bootstrap, Extension, and System class loader.

  • Custom class loaders can also be created to load classes from non-standard ...

Logituit Softwaretest Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Mar 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 

(20 Questions)

  • Q1. OOPS Concepts in JAVA
  • Ans. 

    OOPS concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: Hiding the implementation details of a class from other classes.

    • Inheritance: A mechanism where one class acquires the properties and behaviors of another class.

    • Polymorphism: The ability of an object to take on many forms.

    • Abstraction: The process of hiding complex implementation details and showing only the necessary infor...

  • Answered by AI
  • Q2. Constructors in JAVA and it's types
  • Ans. 

    Constructors are special methods used to initialize objects. There are two types of constructors in Java: default and parameterized.

    • Default constructors are those that do not take any arguments and are automatically created by Java if no constructor is defined.

    • Parameterized constructors are those that take one or more arguments and are used to initialize the object with specific values.

    • Constructors have the same name a...

  • Answered by AI
  • Q3. What is Static variable and Static method?
  • Ans. 

    Static variables and methods belong to the class rather than the instance of the class.

    • Static variables are declared with the 'static' keyword and are shared among all instances of the class.

    • Static methods are also declared with the 'static' keyword and can be called without creating an instance of the class.

    • Static methods cannot access non-static variables or methods of the class.

    • Example: 'public static int count;' de...

  • Answered by AI
  • Q4. Difference between Constructor and Method in java
  • Ans. 

    Constructor is used to initialize an object while method is used to perform a specific task.

    • Constructor has the same name as the class while method has a unique name.

    • Constructor is called automatically when an object is created while method is called explicitly.

    • Constructor does not have a return type while method has a return type.

    • Example of constructor: public MyClass() { // initialization code }

    • Example of method: pub...

  • Answered by AI
  • Q5. What is Java class Loader ?
  • Ans. 

    Java class loader is a part of Java Runtime Environment (JRE) that loads classes dynamically at runtime.

    • Java class loader is responsible for loading Java classes into the JVM.

    • It searches for the class file in the classpath and loads it into memory.

    • There are three types of class loaders in Java: Bootstrap, Extension, and System class loader.

    • Custom class loaders can also be created to load classes from non-standard sourc...

  • Answered by AI
  • Q6. What is Java Package and it's benefits?
  • Ans. 

    Java Package is a way to organize related classes and interfaces. It helps in encapsulation, reusability, and modularity.

    • Packages help in avoiding naming conflicts between classes and interfaces.

    • Packages provide access control by using access modifiers like public, private, and protected.

    • Packages help in creating a modular and scalable application.

    • Packages can be imported to use the classes and interfaces defined in th...

  • Answered by AI
  • Q7. Diff between Static variable and Non static variable
  • Ans. 

    Static variables are shared across all instances of a class while non-static variables are unique to each instance.

    • Static variables are declared with the 'static' keyword while non-static variables are not.

    • Static variables are initialized only once, at the start of the program, while non-static variables are initialized each time an instance of the class is created.

    • Static variables can be accessed using the class name ...

  • Answered by AI
  • Q8. Severity and priority
  • Q9. Diff between Functional and Non Functional Testing
  • Ans. 

    Functional testing checks if the software meets the requirements while non-functional testing checks how well it performs.

    • Functional testing ensures that the software meets the functional requirements specified in the design document.

    • Non-functional testing checks the performance, usability, reliability, and other non-functional aspects of the software.

    • Functional testing is black-box testing while non-functional testing...

  • Answered by AI
  • Q10. In Jira, how do you report a bug?
  • Ans. 

    To report a bug in Jira, follow these steps:

    • Click on the 'Create' button in the top navigation bar

    • Select 'Bug' as the issue type

    • Fill in the required fields such as summary, description, and priority

    • Attach any relevant files or screenshots

    • Click 'Create' to submit the bug report

  • Answered by AI
  • Q11. What is Test planning
  • Ans. 

    Test planning is the process of defining the scope, objectives, and approach for testing a software application.

    • Identifying the testing objectives and goals

    • Defining the scope of testing

    • Determining the testing approach and techniques

    • Creating a test plan document

    • Estimating the testing effort and resources required

    • Identifying the test environment and test data requirements

  • Answered by AI
  • Q12. Write Test cases format
  • Ans. 

    Test case format includes test case ID, description, preconditions, test steps, expected results, actual results, and status.

    • Test case ID should be unique and easy to identify.

    • Description should be clear and concise.

    • Preconditions should be listed to ensure the test environment is set up correctly.

    • Test steps should be detailed and include all necessary actions.

    • Expected results should be specific and measurable.

    • Actual re...

  • Answered by AI
  • Q13. Why do we write Test cases
  • Ans. 

    Test cases ensure software meets requirements & functions correctly.

    • Test cases help identify defects early in the development cycle

    • Test cases ensure software meets customer requirements

    • Test cases help ensure software functions correctly

    • Test cases provide documentation for future testing and maintenance

    • Test cases help improve overall software quality

  • Answered by AI
  • Q14. Diff between Test Cases and Test Scripts
  • Ans. 

    Test cases are documentation of test scenarios while test scripts are automated instructions to execute those scenarios.

    • Test cases are written in natural language and are used to document the steps to be taken to test a particular feature or functionality.

    • Test scripts are automated instructions that are written in a programming language to execute the test cases.

    • Test cases are used for manual testing while test scripts...

  • Answered by AI
  • Q15. What is Scenario and Scenario Outline
  • Ans. 

    Scenario is a test case that describes a specific situation. Scenario Outline is a template for creating multiple scenarios.

    • Scenario is a detailed description of a specific test case

    • Scenario Outline is a template that can be used to create multiple scenarios with different inputs

    • Scenario Outline uses placeholders for input values that are replaced with actual values during execution

    • Both are used in Behavior Driven Deve...

  • Answered by AI
  • Q16. Implicit wait and explicit waits in Selenium
  • Ans. 

    Implicit and explicit waits are used in Selenium to handle synchronization issues during test execution.

    • Implicit wait is a global wait applied to all elements in the script, whereas explicit wait is applied to specific elements.

    • Implicit wait is set using the 'driver.manage().timeouts().implicitlyWait()' method, whereas explicit wait is set using the 'WebDriverWait' class.

    • Explicit wait can be customized with conditions ...

  • Answered by AI
  • Q17. If any defect arises during testing to whom you'll report
  • Ans. 

    I will report the defect to the project manager and the development team.

    • Report the defect immediately

    • Provide detailed information about the defect

    • Collaborate with the development team to resolve the issue

  • Answered by AI
  • Q18. Day to day role in previous organisation
  • Ans. 

    In my previous organization, my day-to-day role as a Software Test Engineer involved various tasks related to testing software applications and ensuring their quality.

    • Creating and executing test cases to verify the functionality of software

    • Identifying and reporting bugs and issues in the software

    • Collaborating with developers and other team members to resolve issues

    • Participating in test planning and strategy discussions

    • ...

  • Answered by AI
  • Q19. Traceability matrix, Java star pattern program, Java class Loader , what is selenium, what is Webdriver API, syntax for absolute xpath, what is xpath
  • Q20. Sprint retrospective

Interview Preparation Tips

Interview preparation tips for other job seekers - Expect the Unexpected, be crisp on the information what you've put in your resume

Skills evaluated in this interview

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 Logituit?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. About ur self some technical problem
  • Ans. 

    I am a Software Test Engineer with a passion for quality assurance and problem-solving in software development.

    • Experience in automated testing using tools like Selenium and JUnit.

    • Proficient in writing test cases and executing them to ensure software quality.

    • Worked on performance testing using JMeter to identify bottlenecks.

    • Collaborated with developers to troubleshoot and resolve issues in the software lifecycle.

    • Impleme...

  • Answered by AI

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If you encounter a blocker defect the day before the release date ... read more
Q3. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q4. Write an SQL query to display the total number of students from t ... read more
Q5. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Java and Selenium
  • Q2. About automation framework
Round 2 - Coding Test 

Java coding related questions

Round 3 - Behavioral interview 

(1 Question)

  • Q1. About leadership principle
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Online test it Will be on selenium and java

Round 3 - Technical 

(3 Questions)

  • Q1. To create Feature file and snippet for features file.
  • Ans. 

    To create a Feature file and snippet for features file.

    • Create a new feature file with a descriptive name

    • Write the feature description in Gherkin syntax

    • Add scenarios with steps in Gherkin syntax

    • Generate a snippet for each step

    • Implement the step definitions in code

    • Test the feature using a test runner

  • Answered by AI
  • Q2. To write code in Selenium on real time scenarios.
  • Ans. 

    Selenium automates web applications for testing purposes, simulating user interactions in real-time scenarios.

    • Use WebDriver to initiate a browser instance: `WebDriver driver = new ChromeDriver();`

    • Locate elements using various strategies: `driver.findElement(By.id('username')).sendKeys('testUser');`

    • Implement waits for dynamic content: `WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.vis...

  • Answered by AI
  • Q3. What is meant by feature file and senario
  • Ans. 

    Feature file is a file that contains high-level description of a software feature. Scenario is a specific instance of a feature.

    • Feature file is written in Gherkin language

    • It describes the behavior of a feature in plain English

    • Scenario is a set of steps that describe a specific instance of a feature

    • It includes preconditions, actions and expected outcomes

    • Feature file and scenarios are used in Behavior Driven Development ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - To do more focus on practical thing's... He don't asks thoerictical questions.

Skills evaluated in this interview

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

Interview Questionnaire 

2 Questions

  • Q1. Python program like print day, month and year from current date and fibonacci series
  • Q2. Bluetooth concept basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare only program and basic concepts

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1.  What are Option Strict and Option Explicit? What are all the differences between Dispose and Finalize()? What is the difference between System.String and System.StringBuilder classes? What is Delegate? ...
  • Ans. 

    Answers to common interview questions for Software Engineer position

    • Option Strict and Option Explicit are compiler directives in VB.NET

    • Dispose() is used to release unmanaged resources while Finalize() is used for garbage collection

    • System.String is immutable while System.StringBuilder is mutable

    • Delegate is a type that represents a reference to a method

    • Value types store data directly while reference types store a referen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - selection process-
1st round-online test(prpare all kind of logical, verbal, and .net related questions)
2nd round- technical round(prepare all .net interview questions,sql server questions, winforms, web api)
3rd round- hr discussion
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 Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

The test was very weird one.
They did have planned anything for the test, They came and given a link on bit.ly and given an another link that is in google form for the answers.
And they selection of people for second round is not sensible.

Round 2 - Coding Test 

This round was also be a weird.
They give each candidates with different questions.
They told us to write logic on the paper and you can use internet for your reference.
But after this round they announced the results but that is not in genuine one.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't get into this type of process.
Before the start of interview ask them to what is they want from the candidates
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - MCQ 

(1 Question)

  • Q1. Basic dsa questions predict output
  • Ans. 

    Understanding basic data structures and algorithms is crucial for predicting outputs in coding challenges.

    • Data structures like arrays, linked lists, and trees are fundamental.

    • Algorithms such as sorting and searching are commonly tested.

    • Example: Predicting output of a sorting algorithm on an array.

    • Example: Understanding how recursion works in a binary tree traversal.

  • Answered by AI
Round 2 - Coding Test 

Medium level problem,

Round 3 - HR 

(1 Question)

  • Q1. Based on resume
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

45 min apps and technical question

Round 2 - Coding Test 

45 min coding round you can refer net for first 15 min

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

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

Round 1 - HR 

(1 Question)

  • Q1. Hr ask about basic introduction

Logituit Interview FAQs

How many rounds are there in Logituit Softwaretest Engineer interview?
Logituit interview process usually has 2 rounds. The most common rounds in the Logituit interview process are Resume Shortlist and Technical.
What are the top questions asked in Logituit Softwaretest Engineer interview?

Some of the top questions asked at the Logituit Softwaretest Engineer interview -

  1. If any defect arises during testing to whom you'll rep...read more
  2. What is Static variable and Static meth...read more
  3. What is Java Package and it's benefi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Duration

Less than 2 weeks 100%
View more
Logituit Softwaretest Engineer Salary
based on 7 salaries
₹2.6 L/yr - ₹4.5 L/yr
45% less than the average Softwaretest Engineer Salary in India
View more details
Software Engineer
47 salaries
unlock blur

₹1.8 L/yr - ₹9.2 L/yr

Software Developer
39 salaries
unlock blur

₹2.2 L/yr - ₹12.9 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹9 L/yr - ₹19 L/yr

IOS Developer
15 salaries
unlock blur

₹2.2 L/yr - ₹16.4 L/yr

Android Developer
9 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare Logituit with

Yalamanchili Software Exports

3.3
Compare

ScoreMe Solutions

4.2
Compare

Xtancia Technosoft

4.0
Compare

Global Edge Software

3.5
Compare
write
Share an Interview