Upload Button Icon Add office photos
Engaged Employer

i

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

RWS Group Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

RWS Group Senior Software Engineer Interview Questions and Answers

Updated 15 Sep 2024

RWS Group Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About Lookups used in IICS
  • Q2. About SCD type 2 mapping

Interview Preparation Tips

Topics to prepare for RWS Group Senior Software Engineer interview:
  • iics
Interview preparation tips for other job seekers - go through youtube and online ques.

Interview questions from similar companies

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 in Dec 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on Jetpack compose, kotlin, hilt, permission, Testing,
Round 2 - Technical 

(1 Question)

  • Q1. Questions on mvvm, clean architecture.
Round 3 - Technical 

(1 Question)

  • Q1. Client round with questions on android permission, Android security
Round 4 - HR 

(1 Question)

  • Q1. Salary discussed

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong knowledge of Jetpack compose, Clea architecture, mvvm, kotlin
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. Architecture discussion around projects
Round 2 - Technical 

(1 Question)

  • Q1. Caching, auth discussion in depth

Interview Preparation Tips

Interview preparation tips for other job seekers - I've cleared both the technical rounds, still after that HR ghosted me and after following up multiple times she mentioned the vacancy was cancelled.
it was highly unprofessional of them.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Android interview asked about coroutines, flow, why we use MVVM instead of MVP, viewmodel pros and cons, security and how to hide keys in package
Round 2 - Group Discussion 

2nd round was about again Android but more focused on security features of android

Round 3 - Coding Test 

3rd round was live coding . I was asked to make an app from scratch in 1 hour without even using google.

Interview Preparation Tips

Interview preparation tips for other job seekers - Even after clearing all rounds I was rejected by HR because of salary issue. HR didn't communicated this before interviews and wasted our time and kept me as a backup plan. It is painful to get rejected after clearing all rounds and putting soo much efforts.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Fundamentals of Data Structures and Algorithms, including SQL.

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of DSA and Algo and sql
  • Q2. Basics
Round 3 - Technical 

(2 Questions)

  • Q1. Details on previus project
  • Q2. B
Round 4 - HR 

(1 Question)

  • Q1. Basics of DSA and algo ..sql
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Regarding all basic java , sprint boot questions
  • Q2. More focused on Spring and microservices
Round 2 - Technical 

(1 Question)

  • Q1. Advance java questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Simple task to fetch cart and display items in the cart
  • Ans. 

    Fetch cart items and display them

    • Create a function to fetch cart items from database

    • Display the items in the cart on the user interface

    • Handle empty cart scenarios

    • Consider pagination for large number of items

  • Answered by AI
  • Q2. React hooks, life cycle methods, error boundaries, hoc
Round 2 - Technical 

(1 Question)

  • Q1. Simple task to fetch characters and their movies
  • Ans. 

    Fetch characters and their movies

    • Use API like IMDb or The Movie Database to fetch movie data

    • Parse the data to extract characters and their associated movies

    • Store the characters and movies in an array of strings

  • Answered by AI
Round 3 - Cultural 

(1 Question)

  • Q1. Culture based questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain advantages of Angular
  • Ans. 

    Angular offers advantages such as two-way data binding, dependency injection, and modular architecture.

    • Two-way data binding allows automatic synchronization of data between the model and the view, reducing the need for manual DOM manipulation.

    • Dependency injection helps manage dependencies and promotes code reusability by allowing components to be easily injected with their dependencies.

    • Modular architecture enables deve...

  • Answered by AI
  • Q2. Explain about ngmodel
  • Ans. 

    ngModel is a directive in AngularJS that binds the value of HTML controls to application data.

    • ngModel is used for two-way data binding in AngularJS.

    • It can be used with input, select, textarea, and custom form controls.

    • Example:

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Java coding questions
  • Q2. Core java and spring questions
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I was interviewed in Jun 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. All the questions were from SQL server.
  • Q2. How to get 3rd highest salary ?
  • Ans. 

    To get the 3rd highest salary, you can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query to select distinct salaries in descending order.

    • Use the 'LIMIT' keyword to limit the results to 3.

    • Use the 'OFFSET' keyword to skip the first 2 highest salaries.

    • Example: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

  • Answered by AI
  • Q3. Inner join result of 2 table. Table one [1,1,1,1] table two [1,1,1,1,1,1]
  • Ans. 

    The inner join of two tables with duplicate values results in a combined set of common values.

    • Inner join combines rows from both tables where the key columns match

    • In this case, the result would be [1,1,1,1,1,1] as all values are common in both tables

  • Answered by AI
  • Q4. SSIS Package creation.
  • Q5. Latest project explanation
  • Ans. 

    Developed a web application for tracking and managing project tasks

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database management

    • Incorporated authentication and authorization features for user security

  • Answered by AI
Round 2 - One-on-one 

(6 Questions)

  • Q1. What is difference between SQL and NoSQL
  • Ans. 

    SQL is a relational database management system, while NoSQL is a non-relational database management system.

    • SQL databases are table-based, NoSQL databases are document, key-value, graph, or wide-column stores

    • SQL databases use structured query language for defining and manipulating data, NoSQL databases use different query languages

    • SQL databases are vertically scalable, NoSQL databases are horizontally scalable

    • SQL databa...

  • Answered by AI
  • Q2. Why is NoSQL better then SQL
  • Ans. 

    NoSQL is better for handling unstructured data, providing scalability and flexibility.

    • NoSQL databases are better suited for handling unstructured data like social media posts, user-generated content, and IoT data.

    • NoSQL databases provide better scalability as they can easily distribute data across multiple servers, allowing for horizontal scaling.

    • NoSQL databases offer more flexibility in terms of data model, allowing fo...

  • Answered by AI
  • Q3. Explain the data pipeline you have worked on.
  • Ans. 

    Designed and implemented a real-time data pipeline for processing and analyzing user behavior data.

    • Used Apache Kafka for real-time data streaming

    • Utilized Apache Spark for data processing and analysis

    • Implemented data transformations and aggregations using Scala

    • Stored processed data in a data warehouse like Amazon Redshift

    • Built monitoring and alerting systems to ensure data pipeline reliability

  • Answered by AI
  • Q4. Managing team
  • Q5. What will you do if you have conflict with your manager.
  • Ans. 

    I would address the conflict directly and professionally, seeking to understand the root cause and find a mutually beneficial solution.

    • Schedule a private meeting with the manager to discuss the conflict

    • Listen actively to the manager's perspective and express your own calmly

    • Seek to find common ground and propose potential solutions

    • If necessary, involve HR or a mediator to help resolve the conflict

  • Answered by AI
  • Q6. What do you love to do when you are free
  • Ans. 

    I love to spend my free time hiking, reading, and trying out new recipes in the kitchen.

    • Hiking in the mountains or local trails

    • Reading fiction and non-fiction books

    • Experimenting with new recipes and cooking techniques

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare best for SQL related questions.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jul 2024.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Asked to explain past project and contribution
  • Q2. Write sql querying to count employees per department
  • Ans. 

    SQL query to count employees per department

    • Use GROUP BY clause to group employees by department

    • Use COUNT() function to count the number of employees in each department

    • Join the employee table with the department table if necessary

  • Answered by AI
  • Q3. Write a program using Java Stream API
  • Ans. 

    Program using Java Stream API to filter even numbers from a list

    • Create a list of numbers

    • Use stream() method to convert list to stream

    • Use filter() method with lambda expression to filter even numbers

    • Collect the filtered numbers using collect() method

  • Answered by AI
  • Q4. Questions related to Java 8 features

Skills evaluated in this interview

RWS Group Interview FAQs

How many rounds are there in RWS Group Senior Software Engineer interview?
RWS Group interview process usually has 1 rounds. The most common rounds in the RWS Group interview process are Technical.
How to prepare for RWS Group Senior Software Engineer 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 RWS Group. The most common topics and skills that interviewers at RWS Group expect are ASP.Net, C# and CMS.
What are the top questions asked in RWS Group Senior Software Engineer interview?

Some of the top questions asked at the RWS Group Senior Software Engineer interview -

  1. About Lookups used in I...read more
  2. About SCD type 2 mapp...read more

Tell us how to improve this page.

RWS Group Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
RWS Group Senior Software Engineer Salary
based on 108 salaries
₹6 L/yr - ₹20 L/yr
9% less than the average Senior Software Engineer Salary in India
View more details

RWS Group Senior Software Engineer Reviews and Ratings

based on 8 reviews

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.7

Salary

3.9

Job security

4.1

Company culture

3.3

Promotions

4.0

Work satisfaction

Explore 8 Reviews and Ratings
Software Engineer
143 salaries
unlock blur

₹4 L/yr - ₹17.3 L/yr

Senior Software Engineer
108 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Software Developer
100 salaries
unlock blur

₹3.6 L/yr - ₹10.6 L/yr

Project Manager
92 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Associate Project Manager
79 salaries
unlock blur

₹4.1 L/yr - ₹9 L/yr

Explore more salaries
Compare RWS Group with

Lionbridge Technologies

3.7
Compare

Welocalize

3.8
Compare

TransPerfect

3.5
Compare

Cohizon Life Sciences Limited

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