Upload Button Icon Add office photos

Filter interviews by

Ray Business Technologies Interview Questions and Answers

Updated 19 Dec 2024

Ray Business Technologies Interview Experiences

Popular Designations

3 interviews found

Senior Lead Interview Questions & Answers

user image Anonymous

posted on 19 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about ur self
  • Ans. 

    Experienced Senior Lead with a proven track record of successfully leading teams and driving results.

    • Over 10 years of experience in leadership roles

    • Strong communication and interpersonal skills

    • Ability to motivate and inspire team members

    • Track record of meeting and exceeding goals

    • Experience in project management and strategic planning

  • Answered by AI

Senior Lead Interview Questions asked at other Companies

Q1. What are all the other languages apart from English & mother language?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Tell about different modules of MS dynamics?
  • Ans. 

    MS Dynamics consists of modules like Sales, Marketing, Customer Service, Field Service, Project Service Automation, Finance, and Operations.

    • Sales module helps in managing leads, opportunities, and accounts.

    • Marketing module assists in creating and tracking marketing campaigns.

    • Customer Service module focuses on managing customer interactions and cases.

    • Field Service module helps in scheduling and dispatching resources for...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Research about company offerings in detail

Business Development Executive Interview Questions asked at other Companies

Q1. scenario based: if I am a teacher in a government school and my child is getting +90% marks, then why should i buy byjus course
View answer (14)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test basic aptitude questions and reasoning

Round 2 - Coding Test 

5 codes out of those you have to write 3

Round 3 - HR 

(3 Questions)

  • Q1. General questions
  • Q2. About yourself in brief
  • Q3. Your academic projects

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)

Jobs at Ray Business Technologies

View all

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Assignment 

They asked me to design google ads poster designs for the content they gave me.

Round 2 - One-on-one 

(2 Questions)

  • Q1. About experience and recent work
  • Q2. About the tools I am familiar with and about how quickly & effectively I deliver design in the given time

Interview Preparation Tips

Topics to prepare for Zazz IT Solutions Graphic Designer interview:
  • Design tools & Software
  • Product design process
  • industry knowledge
  • principles of design
Interview preparation tips for other job seekers - As long as you have subject knowledge and if you are skilled and creative, you can crack any interview. It is just that designers have to be extra creative to make the content reach the audience. So, it is all about how your design makes the difference.

Software Analyst (Appforms Configuration) Interview Questions & Answers

ClaySys user image Anonymous

posted on 21 Nov 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

General knowledge and logical mathematics.

Round 3 - Technical 

(2 Questions)

  • Q1. 2 week training with review
  • Q2. Based on your review task.

Interview Preparation Tips

Topics to prepare for ClaySys Software Analyst (Appforms Configuration) interview:
  • SQL
Interview preparation tips for other job seekers - They are using a low code designer called Appforms which is developed by claysys itself. So working on that designer won't get you any benefits for your future endeavours, because no other companies use this designer for development. So mastering Appform skill may help you if and only if you are continuing on the same company. Only skill that you will acquire when working there is SQL. Apart from that there are no benifits acquiring experience in Appforms. There are no frameworks and IDEs using for the development.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Apr 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Detailed discussion on the projects worked on
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions and answers
Round 4 - Technical 

(1 Question)

  • Q1. Face to face interview
Round 5 - HR 

(1 Question)

  • Q1. General HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and.
This is the correct place if yo want to gain more technical knowledge
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. What is java ?
  • Ans. 

    Java is a high-level programming language known for its portability, security, and object-oriented features.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM).

    • It is object-oriented, allowing for modular and reusable code.

    • Java is known for its security features, such as sandboxing and encryption.

    • Popular frameworks and libraries like Spring and Hibernate are commonly used in

  • Answered by AI
  • Q2. Opps concepts collections
  • Q3. Data structures
Round 3 - One-on-one 

(2 Questions)

  • Q1. Opps and collections
  • Q2. Must know about collections

Interview Preparation Tips

Interview preparation tips for other job seekers - learn and practice bacic concepts

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Describe the inner working of recyclerview?
  • Ans. 

    RecyclerView is a flexible view for providing a limited window into a large data set.

    • RecyclerView is used to display large data sets that can be scrolled efficiently.

    • It reuses the views that are no longer visible to display new data.

    • It uses a LayoutManager to position the items and a ViewHolder to cache the views.

    • It provides built-in animations for adding, removing, and updating items.

    • It supports both vertical and hori...

  • Answered by AI
  • Q2. Difference between Array and Linkedlist?
  • Ans. 

    Array is a collection of elements of similar data type stored in contiguous memory locations. LinkedList is a data structure where each element is a separate object with a reference to the next element.

    • Array has fixed size, LinkedList can grow dynamically

    • Array has faster access time, LinkedList has faster insertion and deletion time

    • Array is best for random access, LinkedList is best for sequential access

    • Example of Arra...

  • Answered by AI
  • Q3. What is context? explain it's types
  • Ans. 

    Context is an object that provides access to application-specific resources and classes.

    • Context is used to get access to system services, resources, preferences, etc.

    • There are two types of context: Application Context and Activity Context.

    • Application Context is tied to the lifecycle of the application and is available throughout the application.

    • Activity Context is tied to the lifecycle of an activity and is available o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have thorough knowledge of Android topics you mention.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
2-4 weeks
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is different between router and switches?
  • Ans. 

    Routers connect different networks, switches connect devices within a network.

    • Routers operate at the network layer and use IP addresses to forward packets between networks.

    • Switches operate at the data link layer and use MAC addresses to forward frames within a network.

    • Routers can prioritize traffic and perform network address translation (NAT).

    • Switches can create virtual LANs (VLANs) to segment a network.

    • Example of a r...

  • Answered by AI
  • Q2. What is different between windows 10 and windows 7
  • Ans. 

    Windows 10 has a more modern interface, better security features, and improved performance compared to Windows 7.

    • Windows 10 has a Start menu with live tiles, while Windows 7 has a traditional Start menu.

    • Windows 10 has Cortana, a virtual assistant, while Windows 7 does not.

    • Windows 10 has better security features such as Windows Hello, biometric authentication, and improved Windows Defender.

    • Windows 10 has improved perfor...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Analytical thinking Attention to details Customer service best practices Knowledge of hardware and networking knowledge of networking troubleshooting

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skills
Networking troubleshooting
Hardware troubleshooting

Skills evaluated in this interview

Ray Business Technologies Interview FAQs

How many rounds are there in Ray Business Technologies interview?
Ray Business Technologies interview process usually has 2 rounds. The most common rounds in the Ray Business Technologies interview process are HR, Coding Test and Technical.
How to prepare for Ray Business Technologies 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 Ray Business Technologies. The most common topics and skills that interviewers at Ray Business Technologies expect are Javascript, C#, MVC, JQuery and SQL.

Tell us how to improve this page.

Ray Business Technologies Interview Process

based on 5 interviews

Interview experience

2.8
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
View all

Ray Business Technologies Reviews and Ratings

based on 82 reviews

2.8/5

Rating in categories

3.1

Skill development

2.8

Work-life balance

2.6

Salary

2.4

Job security

2.7

Company culture

2.6

Promotions

2.7

Work satisfaction

Explore 82 Reviews and Ratings
Sitefinity Developer

Hyderabad / Secunderabad

4-7 Yrs

Not Disclosed

React JS Developer

Hyderabad / Secunderabad

5-7 Yrs

Not Disclosed

Business Analyst

Hyderabad / Secunderabad

5-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
58 salaries
unlock blur

₹2.4 L/yr - ₹9 L/yr

Associate Software Engineer
32 salaries
unlock blur

₹2 L/yr - ₹6.9 L/yr

Software Developer
27 salaries
unlock blur

₹2.4 L/yr - ₹9.5 L/yr

Softwaretest Engineer
22 salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

Senior Software Engineer
17 salaries
unlock blur

₹6.7 L/yr - ₹21.2 L/yr

Explore more salaries
Compare Ray Business Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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