Upload Button Icon Add office photos
Engaged Employer

i

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

Encora Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 685 Reviews

Filter interviews by

Encora Senior Ruby on Rails Developer Interview Questions, Process, and Tips

Updated 8 Apr 2024

Encora Senior Ruby on Rails Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. How do you compare STI with Polymorphic association
  • Ans. 

    STI is used for inheritance while polymorphic association is used for multiple associations

    • STI is used for modeling inheritance relationships where different classes share common attributes and behaviors

    • Polymorphic association is used when a model can belong to more than one other model on a single association

    • STI can lead to a large number of columns in a table, while polymorphic association requires an additional colu...

  • Answered by AI
  • Q2. Rails API best practices
  • Ans. 

    Rails API best practices

    • Use versioning in API endpoints for future changes

    • Implement proper error handling and response codes

    • Follow RESTful principles for resource naming and routing

    • Use serializers to format JSON responses efficiently

    • Implement authentication and authorization for secure access

  • Answered by AI
  • Q3. Importance of CSRF tokens and CSP headers
  • Ans. 

    CSRF tokens and CSP headers are important security measures to protect against cross-site scripting attacks.

    • CSRF tokens are used to prevent cross-site request forgery attacks by generating a unique token for each user session.

    • CSP headers help prevent cross-site scripting attacks by specifying which resources can be loaded on a webpage.

    • Both CSRF tokens and CSP headers are essential in securing web applications against m

  • Answered by AI
  • Q4. Design a API rate limitter
  • Ans. 

    Implementing an API rate limiter to control the number of requests a user can make within a certain time frame.

    • Use a token bucket algorithm to track and limit the number of requests per user.

    • Set a limit on the number of requests allowed per user within a specific time window.

    • Implement a sliding window approach to track request timestamps and enforce rate limits.

    • Consider using Redis or a similar caching mechanism to sto

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basic questions on Ruby on Rails, and do some hands-on with system design if interviewing for Bugcrowd.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Given an array of non-negative integers.Find the length of the longest subsequence such that elements in the subsequence are contiguous integers. The consecutive numbers can be in any order. Example n=7 nu...
  • Ans. 

    Find the length of the longest subsequence of contiguous integers in an array.

    • Sort the array

    • Iterate through the array and check for consecutive integers

    • Keep track of the longest subsequence found

  • Answered by AI
  • Q2. Get list of pincodes from these objects Employee{ id Long, name String, Addresses : List
    } Addresses{ houseNo long, pindcode long, state String, country String, } Ans. Use flatMap to flatten and then use m...
  • Ans. 

    Use flatMap and map to extract list of pincodes from Employee objects

    • Use flatMap to flatten the list of Addresses in each Employee object

    • Use map to iterate over the flattened list and extract the pincodes

    • Example: employeeList.stream().flatMap(emp -> emp.getAddresses().stream()).map(address -> address.getPincode()).collect(Collectors.toList())

  • Answered by AI
  • Q3. What is Database Pooling, Hikari and its configurations. Java 8 to current enchancements and current java version Factory and Builder design patterns to explain and code Project expalantion and details, Cr...
  • Ans. 

    Database pooling is a technique used to manage a pool of database connections for efficient resource utilization. HikariCP is a popular database connection pooling library in Java.

    • HikariCP is a high-performance database connection pooling library for Java applications.

    • It is known for its low latency and high throughput.

    • Configurations for HikariCP include settings such as maximum pool size, connection timeout, and idle ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and design patterns and knowledge of springboot,java & streams API advance methods etc.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning, grammar, and coding: two basic level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Question on core Java
  • Q2. Question on SQL and PLSQL
  • Q3. Resume based question and on project
Round 3 - HR 

(2 Questions)

  • Q1. Resume and project based question
  • Q2. What do you like about your current company, and why do you want to join our organization?
  • Ans. 

    I appreciate the collaborative team environment and innovative projects at my current company, and I am excited about the opportunities for growth and learning at your organization.

    • Collaborative team environment fosters creativity and productivity

    • Innovative projects challenge me to learn and grow

    • Excited about the opportunities for growth and learning at your organization

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

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Context api, js related qstns, simple programming qstn,
  • Q2. Remove duplicates without using set.
  • Ans. 

    Remove duplicates from array of strings without using set.

    • Iterate through the array and compare each element with all other elements to find duplicates.

    • Create a new array and add elements only if they are not already present in the new array.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear on basics of react hooks, node js concepts.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic Java Question
  • Q2. Spring Boot related questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Design a rest API and code it.
  • Ans. 

    Design and code a REST API for a software developer interview.

    • Define the endpoints and HTTP methods for the API (e.g. GET /users, POST /users)

    • Implement authentication and authorization mechanisms (e.g. JWT tokens)

    • Use proper status codes for responses (e.g. 200 OK, 401 Unauthorized)

    • Include error handling and validation for input data

    • Document the API using tools like Swagger or OpenAPI

  • Answered by AI
  • Q2. Questions related to JPA HIBERNATE SQL
Round 3 - One-on-one 

(2 Questions)

  • Q1. Discussion related to Last company Project and architecture level questions
  • Q2. Write code to calculate frequency of a word using Stream API and lambda expressions
  • Ans. 

    Calculate word frequency using Stream API and lambda expressions

    • Use Stream API to convert array of strings to stream

    • Use Collectors.groupingBy to group words by their frequency

    • Use Collectors.counting to count the occurrences of each word

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude,20 comunication,4 program questions

Round 2 - Group Discussion 

General topics . topics about online class vs office line class

Round 3 - HR 

(1 Question)

  • Q1. In this round also they mainly check communication.after that basic questions about the what you put on your resume
Round 4 - HR 

(1 Question)

  • Q1. General round. In this round they told about the company and bond
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic of java to advanced
  • Q2. Array related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Architecture related
  • Q2. Management roles
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 leetcode medium level type problems were given. This was a cut-off test were majority will be cut-off.

Round 2 - Coding Test 

Long coding round - Paired with another thoughtworker

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on project
  • Q2. Frameworks related
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain Sonarqube, different type of code smells, and how its implemented in CI CD
  • Ans. 

    Sonarqube is a static code analysis tool used to detect code smells and bugs in code. It is integrated into CI/CD pipelines for continuous code quality checks.

    • Sonarqube is a static code analysis tool that identifies code smells, bugs, and security vulnerabilities in code.

    • Code smells are common programming issues that may indicate a deeper problem in the code. Examples include duplicated code, long methods, and complex ...

  • Answered by AI
  • Q2. Write a program to find the numbers divisble by 3 in a string - and reverse its indexes eg : - input : String s = "123456789" output String s = "129456783"
  • Ans. 

    Program to find numbers divisible by 3 in a string and reverse their indexes.

    • Iterate through the string and check if each character is a number divisible by 3.

    • Store the divisible numbers in an array and reverse their indexes.

    • Join the array back into a string and return the result.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

DSA questions and programming concepts

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse string and optimize it
  • Ans. 

    Reverse array of strings efficiently

    • Use two pointers approach to swap characters from start and end of each string

    • Optimize by using in-place reversal instead of creating new strings

    • Consider edge cases like empty strings or strings with only one character

  • Answered by AI
  • Q2. Reverse binary tree
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Joining location

Encora Interview FAQs

How many rounds are there in Encora Senior Ruby on Rails Developer interview?
Encora interview process usually has 1 rounds. The most common rounds in the Encora interview process are Technical.
What are the top questions asked in Encora Senior Ruby on Rails Developer interview?

Some of the top questions asked at the Encora Senior Ruby on Rails Developer interview -

  1. How do you compare STI with Polymorphic associat...read more
  2. Importance of CSRF tokens and CSP head...read more
  3. Design a API rate limit...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Encora interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 789 Interviews
CitiusTech Interview Questions
3.4
 • 264 Interviews
View all
Senior Software Engineer
746 salaries
unlock blur

₹9.9 L/yr - ₹36 L/yr

Technical Lead
737 salaries
unlock blur

₹15 L/yr - ₹46 L/yr

Software Engineer
269 salaries
unlock blur

₹4.5 L/yr - ₹16.8 L/yr

Software Developer
148 salaries
unlock blur

₹3 L/yr - ₹13.1 L/yr

Senior Software Developer
126 salaries
unlock blur

₹8.7 L/yr - ₹30.7 L/yr

Explore more salaries
Compare Encora with

TCS

3.7
Compare

Infosys

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