Upload Button Icon Add office photos

Rnr Datalex

Compare button icon Compare button icon Compare

Filter interviews by

Rnr Datalex Interview Questions and Answers

Updated 29 Jan 2020
Popular Designations

10 Interview questions

A Business Analyst was asked
Q. How do you handle change requests?
Ans. 

Change requests should be evaluated for impact, feasibility and priority before being approved or rejected.

  • Evaluate the impact of the change request on the project scope, timeline, budget and resources.

  • Assess the feasibility of implementing the change request and identify any potential risks or challenges.

  • Prioritize the change request based on its importance and urgency.

  • Communicate the decision to approve or rejec...

View all Business Analyst interview questions
A Business Analyst was asked
Q. What is ERP?
Ans. 

ERP stands for Enterprise Resource Planning. It is a software system that helps organizations manage their business processes.

  • ERP integrates various business functions such as finance, HR, inventory management, and customer relationship management.

  • It provides a centralized database that can be accessed by different departments within an organization.

  • ERP systems automate many manual processes, reducing the risk of ...

View all Business Analyst interview questions
A Web UI Designer was asked
Q. What are the breakpoints in Bootstrap?
Ans. 

Bootstrap has predefined breakpoints for responsive web design.

  • Bootstrap has four predefined breakpoints: xs, sm, md, and lg.

  • These breakpoints are used to define the layout and behavior of elements at different screen sizes.

  • For example, the xs breakpoint is for extra small screens, sm for small screens, md for medium screens, and lg for large screens.

  • Developers can use these breakpoints to create responsive design...

View all Web UI Designer interview questions
A Web UI Designer was asked
Q. How can you make a word look italic without using the italic tag?
Ans. 

You can use CSS to make a word look italic without using the tag.

  • Use the CSS property 'font-style: italic;' to make the word italic.

  • Apply the 'font-style' property to the desired element or class.

  • Example: .italic-word { font-style: italic; }

View all Web UI Designer interview questions
A Web UI Designer was asked
Q. How do you manage Bootstrap's default CSS with your code?
Ans. 

To manage bootstrap default CSS with your code, you can override or customize the default styles using your own CSS.

  • Use custom CSS classes to override specific styles

  • Modify the Bootstrap variables to customize the default styles

  • Create a separate CSS file to add your own styles and include it after the Bootstrap CSS file

  • Use !important to prioritize your custom styles over Bootstrap styles

View all Web UI Designer interview questions
A Web UI Designer was asked
Q. Which version of Bootstrap are we currently using?
Ans. 

The current version of Bootstrap is 5.1.0.

  • Bootstrap 5.1.0 is the latest version as of now.

  • It was released on August 19, 2021.

  • Bootstrap 5 is a popular front-end framework for building responsive websites and web applications.

  • It provides a wide range of pre-built components and utilities for faster and easier web development.

  • Some of the key features of Bootstrap 5 include a new grid system, updated form controls, an...

View all Web UI Designer interview questions
A Web UI Designer was asked
Q. How can we manage blocks with the same height if one block has more data than others?
Ans. 

Use CSS flexbox to manage blocks with same height

  • Apply display: flex; to the container element

  • Set flex-grow: 1; on each block to make them expand equally

  • Use overflow: auto; to handle excessive content within a block

View all Web UI Designer interview questions
Are these interview questions helpful?
A Web UI Designer was asked
Q. How can we manage JavaScript on a page when multiple JavaScript files are loaded and conflict with each other?
Ans. 

To manage conflicting JavaScript on a page, we can use various techniques like namespacing, modularization, and event delegation.

  • Use namespacing to encapsulate code and prevent conflicts

  • Modularize code into smaller, reusable components

  • Use event delegation to handle events on dynamically loaded elements

  • Avoid global variables and use local scopes

  • Use a JavaScript module bundler like Webpack to manage dependencies

View all Web UI Designer interview questions
A Web UI Designer was asked
Q. What is media queries and how can we mangane with bootstrap css
Ans. 

Media queries are CSS techniques used to apply different styles based on the characteristics of the device or viewport.

  • Media queries allow us to create responsive designs that adapt to different screen sizes and devices.

  • Bootstrap CSS provides a responsive grid system and predefined media queries to make it easier to create responsive web designs.

  • We can use Bootstrap's CSS classes like 'col-md-6' to define differen...

View all Web UI Designer interview questions
A Web UI Designer was asked
Q. Display property attributes What is difference between display block and table inline and inline block
Ans. 

Display block takes up full width, table inline behaves like a table cell, and inline block allows for inline elements with block-level properties.

  • Display block: Takes up full width, starts on a new line

  • Table inline: Behaves like a table cell, does not start on a new line

  • Inline block: Allows for inline elements with block-level properties

View all Web UI Designer interview questions

Rnr Datalex Interview Experiences

2 interviews found

Interview Questionnaire 

3 Questions

  • Q1. How to handle change request?
  • Ans. 

    Change requests should be evaluated for impact, feasibility and priority before being approved or rejected.

    • Evaluate the impact of the change request on the project scope, timeline, budget and resources.

    • Assess the feasibility of implementing the change request and identify any potential risks or challenges.

    • Prioritize the change request based on its importance and urgency.

    • Communicate the decision to approve or reject the...

  • Answered by AI
  • Q2. What is erp?
  • Ans. 

    ERP stands for Enterprise Resource Planning. It is a software system that helps organizations manage their business processes.

    • ERP integrates various business functions such as finance, HR, inventory management, and customer relationship management.

    • It provides a centralized database that can be accessed by different departments within an organization.

    • ERP systems automate many manual processes, reducing the risk of error...

  • Answered by AI
  • Q3. What roles you have performed earlier?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about ERP CRM and web technologies.

Skills evaluated in this interview

I applied via Referral and was interviewed in Jan 2018. There were 3 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. How to manage bootstrap default css with your code
  • Ans. 

    To manage bootstrap default CSS with your code, you can override or customize the default styles using your own CSS.

    • Use custom CSS classes to override specific styles

    • Modify the Bootstrap variables to customize the default styles

    • Create a separate CSS file to add your own styles and include it after the Bootstrap CSS file

    • Use !important to prioritize your custom styles over Bootstrap styles

  • Answered by AI
  • Q2. With out italic tag how you can make word italic look wise
  • Ans. 

    You can use CSS to make a word look italic without using the tag.

    • Use the CSS property 'font-style: italic;' to make the word italic.

    • Apply the 'font-style' property to the desired element or class.

    • Example: .italic-word { font-style: italic; }

  • Answered by AI
  • Q3. What are the break points of bootstrap
  • Ans. 

    Bootstrap has predefined breakpoints for responsive web design.

    • Bootstrap has four predefined breakpoints: xs, sm, md, and lg.

    • These breakpoints are used to define the layout and behavior of elements at different screen sizes.

    • For example, the xs breakpoint is for extra small screens, sm for small screens, md for medium screens, and lg for large screens.

    • Developers can use these breakpoints to create responsive designs tha...

  • Answered by AI
  • Q4. How we can manage the block with same height if one block have more data than others
  • Ans. 

    Use CSS flexbox to manage blocks with same height

    • Apply display: flex; to the container element

    • Set flex-grow: 1; on each block to make them expand equally

    • Use overflow: auto; to handle excessive content within a block

  • Answered by AI
  • Q5. What is media queries and how can we mangane with bootstrap css
  • Ans. 

    Media queries are CSS techniques used to apply different styles based on the characteristics of the device or viewport.

    • Media queries allow us to create responsive designs that adapt to different screen sizes and devices.

    • Bootstrap CSS provides a responsive grid system and predefined media queries to make it easier to create responsive web designs.

    • We can use Bootstrap's CSS classes like 'col-md-6' to define different lay...

  • Answered by AI
  • Q6. Which current version we are using the bootstrap
  • Ans. 

    The current version of Bootstrap is 5.1.0.

    • Bootstrap 5.1.0 is the latest version as of now.

    • It was released on August 19, 2021.

    • Bootstrap 5 is a popular front-end framework for building responsive websites and web applications.

    • It provides a wide range of pre-built components and utilities for faster and easier web development.

    • Some of the key features of Bootstrap 5 include a new grid system, updated form controls, and imp...

  • Answered by AI
  • Q7. Display property attributes What is difference between display block and table inline and inline block
  • Ans. 

    Display block takes up full width, table inline behaves like a table cell, and inline block allows for inline elements with block-level properties.

    • Display block: Takes up full width, starts on a new line

    • Table inline: Behaves like a table cell, does not start on a new line

    • Inline block: Allows for inline elements with block-level properties

  • Answered by AI
  • Q8. How we can manage the JavaScript on page when more JavaScript are lodedd and conflict with each other
  • Ans. 

    To manage conflicting JavaScript on a page, we can use various techniques like namespacing, modularization, and event delegation.

    • Use namespacing to encapsulate code and prevent conflicts

    • Modularize code into smaller, reusable components

    • Use event delegation to handle events on dynamically loaded elements

    • Avoid global variables and use local scopes

    • Use a JavaScript module bundler like Webpack to manage dependencies

  • Answered by AI
  • Q9. Html and HTML5 difference css and CSS 3difference
  • Q10. Discussion about salary structure and reason for leaving previous company

Interview Preparation Tips

General Tips: Pls ask job description before you join coz some time you hire for described position but you provide complete different work
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: 1-3 Months

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Rnr Datalex?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2022. 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 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

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 Oct 2022. 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 - Technical 

(1 Question)

  • Q1. Find the duplicate items in the array.
  • Ans. 

    Find duplicate items in array of strings.

    • Iterate through array and store each item in a hash set.

    • If item already exists in hash set, it is a duplicate.

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

(1 Question)

  • Q1. Javascript basics questions

Skills evaluated in this interview

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

Interview Questionnaire 

4 Questions

  • Q1. To find if a number is Prime or not and optimise your written code.
  • Ans. 

    Check if a number is prime and optimize the code.

    • Start by checking if the number is less than 2, in which case it is not prime.

    • Iterate from 2 to the square root of the number and check if any of them divide the number evenly.

    • If a divisor is found, the number is not prime. Otherwise, it is prime.

  • Answered by AI
  • Q2. Css question related to flex box, Grid and cross browser compatibility
  • Q3. To call an API in react and optimise your written code.
  • Ans. 

    To optimise API calls in React, use asynchronous functions and caching techniques.

    • Use async/await to handle API calls

    • Implement caching to reduce network requests

    • Use memoization to avoid unnecessary re-renders

    • Consider using a state management library like Redux

    • Use performance profiling tools like React DevTools

  • Answered by AI
  • Q4. Questions on JS concepts like Objects and Prototype Inheritance.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your basic concepts and prepare well for the interview.

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Campus Placement

Round 1 - Coding Test 

Online Coding Test included some aptitude questions, technical questions followed by 3 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. My technical interview included an introduction about myself followed by my background, projects I've made, internships I've done, and in which language I was comfortable. and the interviewer asked me to w...

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer confidently and give examples. and you can also connect the questions asked to your past projects.

I applied via Campus Placement

Round 1 - Aptitude Test 

In this round you have to clear Aptitude and Basic Coding

Round 2 - Coding Test 

It is pure coding test which is conduct on hacker rank platform. You have to complete 4 question(1 easy + 2 medium + 1 hard)

Round 3 - Technical 

(2 Questions)

  • Q1. Coding question base on Sorting and Array
  • Q2. Some of theory question base on your Project technology and DSA
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve your basic concepts and coding skills.

Interview Questionnaire 

1 Question

  • Q1. Questions regards node js and java script concept, event loop, why node is single threaded, how event loop works in node js, database queries and previous work experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was absolutely amazing and fantastic.
Advice:
Answer question with confidence.
Feel comfortable with interviewer.

Rnr Datalex Interview FAQs

How to prepare for Rnr Datalex 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 Rnr Datalex. The most common topics and skills that interviewers at Rnr Datalex expect are CakePHP, Computer Science, MySQL, AWS and Analytical.
What are the top questions asked in Rnr Datalex interview?

Some of the top questions asked at the Rnr Datalex interview -

  1. How we can manage the JavaScript on page when more JavaScript are lodedd and co...read more
  2. Display property attributes What is difference between display block and table...read more
  3. With out italic tag how you can make word italic look w...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
2.9
 • 36 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all

Rnr Datalex Reviews and Ratings

based on 25 reviews

2.9/5

Rating in categories

3.3

Skill development

3.3

Work-life balance

2.3

Salary

3.3

Job security

3.4

Company culture

2.4

Promotions

3.3

Work satisfaction

Explore 25 Reviews and Ratings
Software Developer (.NET)

Nagpur

1-3 Yrs

Not Disclosed

CakePHP Developer

Nagpur

1-4 Yrs

Not Disclosed

Explore more jobs
Software Developer
10 salaries
unlock blur

₹2.2 L/yr - ₹4.9 L/yr

Quality Analyst
7 salaries
unlock blur

₹1.9 L/yr - ₹2.6 L/yr

PHP Developer
6 salaries
unlock blur

₹1 L/yr - ₹3.6 L/yr

Business Analyst
4 salaries
unlock blur

₹4.2 L/yr - ₹17.5 L/yr

Operations Manager
4 salaries
unlock blur

₹4.2 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Rnr Datalex with

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

3.9
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare
write
Share an Interview