Upload Button Icon Add office photos

Filter interviews by

Granite River Labs Softwaretest Engineer Interview Questions and Answers

Updated 10 Oct 2023

Granite River Labs Softwaretest Engineer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Sep 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 - Aptitude Test 

Basic aptitude and c,c++ and basic electronics related mcq test

Round 3 - Technical 

(1 Question)

  • Q1. Questions of oops. Prepare for oops very well. Deep discussion on projects mentioned in resume. Some basic electronics related questions like about usb drivers, router, etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for oops. They are going to focus on oops questions.

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is a bloom filter in hbase ?
  • Ans. 

    A bloom filter in HBase is a data structure used to test whether a given element is a member of a set.

    • Bloom filters are used to reduce the number of disk reads in HBase by quickly determining if a row may exist in a table.

    • They are implemented as a compact array of bits, with multiple hash functions used to map elements to bits.

    • Bloom filters can produce false positives but not false negatives, making them useful for pre...

  • Answered by AI
  • Q2. Write a query to remove duplicate rows in pyspark based on primary key.
  • Ans. 

    Use dropDuplicates() function in pyspark to remove duplicate rows based on primary key.

    • Use dropDuplicates() function on the DataFrame with the primary key column specified.

    • Specify the subset parameter in dropDuplicates() to specify the primary key column.

    • Example: df.dropDuplicates(['primary_key_column'])

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise pyspark and sql really well

Skills evaluated in this interview

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 Apr 2024. There was 1 interview round.

Round 1 - HR 

(5 Questions)

  • Q1. Nothing much it went well as usual they try go ask for negotiable salary
  • Q2. What is the reason
  • Ans. 

    The reason for what?

    • Need more context to provide a specific reason

    • Could be related to a specific action, decision, outcome, etc.

    • Can you provide more details or clarify the question?

  • Answered by AI
  • Q3. What is the issue
  • Q4. What is draw back
  • Ans. 

    A drawback is a disadvantage or limitation of a particular situation or course of action.

    • Drawbacks can hinder progress or success in a project or task.

    • They can be caused by limitations in resources, technology, or skills.

    • Examples include lack of funding, outdated software, or inadequate training.

    • Identifying drawbacks early on can help mitigate their impact on a project.

  • Answered by AI
  • Q5. What is fast forward
  • Ans. 

    Fast forward is a feature that allows users to skip ahead in a video or audio file to a specific point.

    • Fast forward allows users to quickly move forward in a video or audio file.

    • Users can skip scenes or sections they are not interested in by using the fast forward feature.

    • Commonly seen in media players, streaming services, and DVRs.

    • Example: Pressing the fast forward button on a remote control to skip ahead in a movie.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Sql?, and performance tuneing
  • Ans. 

    SQL is a domain-specific language used for managing and manipulating relational databases.

    • SQL stands for Structured Query Language

    • It is used to communicate with databases to perform tasks such as querying data, updating data, and creating databases

    • Performance tuning in SQL involves optimizing queries, indexes, and database design to improve speed and efficiency

    • Examples of performance tuning techniques include using ind...

  • Answered by AI
  • Q2. About power bi dax filter and dashboard
Round 2 - One-on-one 

(2 Questions)

  • Q1. About your technical skills
  • Q2. About your previous work profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Best opportunity for everyone

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. On manual and automation testing

Interview Preparation Tips

Topics to prepare for Straive Softwaretest Engineer interview:
  • Selenium
  • Java
  • Javascript
  • Testing
  • Testng
Interview preparation tips for other job seekers - Analyze the market needs Do hard and Speak confidently
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Round one was an online coding test where there were 5 sections :

1 - dsa - medium

2 - Java - Easy

3 - OOP - Easy

4 - Git - Easy

Round 2 - One-on-one 

(5 Questions)

  • Q1. 1 - where is bean annotation used in springboot ?... In class or method
  • Ans. 

    Bean annotation is used in Spring Boot on class or method to indicate that a method produces a bean to be managed by the Spring container.

    • Bean annotation is used on methods within a class to indicate that the method produces a bean to be managed by the Spring container.

    • It can also be used at the class level to indicate that the class itself is a Spring bean.

    • For example, @Bean annotation can be used on a method that cre...

  • Answered by AI
  • Q2. Which access modifier to restrict interface method access to only derived or implemented classes
  • Ans. 

    Protected access modifier restricts interface method access to only derived or implemented classes.

    • Use 'protected' access modifier to restrict access to only derived or implemented classes

    • Protected members are accessible within the same package or by subclasses

    • Example: 'protected void methodName() {}' in an interface

  • Answered by AI
  • Q3. How does one services interact with other in microservice
  • Ans. 

    Microservices interact with each other through APIs, messaging, or events.

    • Microservices communicate with each other through APIs, which can be synchronous or asynchronous.

    • Messaging systems like RabbitMQ or Kafka can be used for communication between microservices.

    • Events can be used for loosely coupled communication between microservices.

    • Service discovery mechanisms like Eureka or Consul help microservices locate and co...

  • Answered by AI
  • Q4. In an integer array where element represent stock price and index represent days how to detect the best day to buy and best day to sell in O(N)
  • Ans. 

    To detect the best day to buy and sell stock in an integer array representing stock prices and days in O(N).

    • Iterate through the array and keep track of the minimum price seen so far.

    • Calculate the profit by subtracting the current price from the minimum price.

    • Update the maximum profit and best buy/sell days accordingly.

    • Return the best buy and sell days to maximize profit.

  • Answered by AI
  • Q5. In an integer array find the next greatest number for all and display in O(N)
  • Ans. 

    Find the next greatest number for each integer in an array in O(N) time complexity.

    • Iterate through the array from right to left

    • Use a stack to keep track of potential next greatest numbers

    • Pop elements from the stack that are less than the current element and update their next greatest number to the current element

    • Push the current element onto the stack

    • Repeat until all elements have a next greatest number

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
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 

(2 Questions)

  • Q1. What is difference between function and stored procedure
  • Ans. 

    Functions return a single value, while stored procedures can perform multiple operations and return multiple values.

    • Functions return a single value, while stored procedures can return multiple values.

    • Functions are called in SQL statements, while stored procedures are called using EXECUTE statement.

    • Functions cannot have output parameters, while stored procedures can have output parameters.

    • Functions cannot modify server ...

  • Answered by AI
  • Q2. How to implement custom exception in MVC
  • Ans. 

    Custom exceptions can be implemented in MVC by creating a new class that inherits from Exception class.

    • Create a new class that inherits from Exception class

    • Override the constructor to pass a custom message to the base Exception class

    • Throw the custom exception in the MVC controller or service layer

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What fifo? diff btwn fifo and lifo
  • Ans. 

    FIFO stands for First In, First Out. LIFO stands for Last In, First Out.

    • FIFO is a method for organizing and manipulating a data buffer, where the first element added is the first to be removed.

    • LIFO is a method where the last element added is the first to be removed.

    • FIFO is like a queue, while LIFO is like a stack.

    • Example: In a FIFO queue, if elements A, B, and C are added in that order, they will be removed in the same...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

First round was on Hacker Earth

Round 2 - Technical 

(1 Question)

  • Q1. Technical round was on Spring Data Jpa, Pagination, SOLID principles

Interview Preparation Tips

Interview preparation tips for other job seekers - I had given the interview for Senior Software Engineer at Indegene on May 2024. I cleared the round as well. Mr. Pradeep Kumar was the POC for my recruitment. He confirmed that he's going to schedule the HR the next day after clearing the technical round. Upon calling him the very next day he started ghosting me, ignoring my phone calls, messages and emails. After one month he called me and said "sorry at that time the project went on hold, so we have other new opening are you interested to join". I said yes and had salary discussion as well. He said that I'll be getting the offer letter the very next day. So, I contacted him again the next day, he started ghosting again then on WhatsApp he told that my offer letter is on the final stage of approval and I'll get it by tomorrow. Next day I didn't received anything I tried calling he started ghosting again. So please be aware of this type of company. Its a total waste of time. The management is totally un-professional.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Uikit explaination
  • Q2. Model classes with uikit
  • Ans. 

    Model classes in UIKit are used to represent data in an application's user interface.

    • Model classes in UIKit typically subclass NSObject and are used to store and manage data for views.

    • They can include properties to represent different data fields, methods to manipulate the data, and sometimes protocols for delegation.

    • For example, a model class for a user profile in a social media app might have properties like username...

  • Answered by AI
Round 2 - Coding Test 

Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Skills evaluated in this interview

Granite River Labs Interview FAQs

How many rounds are there in Granite River Labs Softwaretest Engineer interview?
Granite River Labs interview process usually has 3 rounds. The most common rounds in the Granite River Labs interview process are Resume Shortlist, Aptitude Test and Technical.

Tell us how to improve this page.

People are getting interviews through

based on 1 Granite River Labs interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Fast track your campus placements

View all

Granite River Labs Softwaretest Engineer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

5.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
30 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹6 L/yr - ₹15 L/yr

Fpga Design Engineer
7 salaries
unlock blur

₹4.3 L/yr - ₹13.1 L/yr

Firmware Engineer
7 salaries
unlock blur

₹4 L/yr - ₹7.7 L/yr

Hardware Engineer
5 salaries
unlock blur

₹4.3 L/yr - ₹5.2 L/yr

Explore more salaries
Compare Granite River Labs with

Sasken

3.9
Compare

TCS

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