Upload Button Icon Add office photos

Filter interviews by

Relyon Softech Implementation Engineer Interview Questions and Answers

Updated 17 Dec 2024

Relyon Softech Implementation Engineer Interview Experiences

3 interviews found

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

I applied via Walk-in and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to troubleshoot the P1 issues.
  • Ans. 

    To troubleshoot P1 issues, prioritize the problem, gather relevant information, analyze root cause, implement solution, and communicate updates.

    • Prioritize the problem based on impact on business operations

    • Gather relevant information such as error logs, system configurations, and recent changes

    • Analyze root cause by reviewing logs, conducting tests, and consulting with team members

    • Implement solution by following best pra...

  • Answered by AI
  • Q2. Name any 5 defect tracking tool and explain anyone.
  • Ans. 

    Some popular defect tracking tools are Jira, Bugzilla, Redmine, Mantis, and Trac.

    • Jira: widely used in software development, allows for issue tracking, project management, and agile development.

    • Bugzilla: open-source tool with customizable workflows and reporting capabilities.

    • Redmine: flexible tool with support for multiple projects, issue tracking, and time tracking.

    • Mantis: simple and user-friendly tool with features li...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Relyon Softech Implementation Engineer interview:
  • Ms SQL server and software testi
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Good environment to work

Implementation Engineer Interview Questions Asked at Other Companies

Q1. What is the SI unit of current?
Q2. What is the range of mercury thermometer?
Q3. 2: What's the difference between Clustered and non-clustered Inde ... read more
Q4. What is the principle of c type burdon tube?
Q5. What is the density of water?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Walk-in and was interviewed before Feb 2022. There were 2 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 

(3 Questions)

  • Q1. Knowledge of Operation Systems, HR processes, and Payroll basics
  • Q2. Customer handling, multi-tasking, work under pressure
  • Q3. SQL Basics and Microsoft excel basic sometimes

Interview Preparation Tips

Topics to prepare for Relyon Softech Implementation Engineer interview:
  • SLQ
  • HR Operations
  • Payroll Processing
  • Compliance
  • Operating Systems
  • Excel
Interview preparation tips for other job seekers - be smart just, and do salary negotiation on extreame level

Implementation Engineer Jobs at Relyon Softech

View all

Interview questions from similar companies

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per the norms of our institute’s placement cell. For Oracle I laid emphasis on my programming skills and projects related to it.

Round: Test
Experience: The first round was the written test that comprised of 5 sections – vocabulary, aptitude, pattern matching, logical reasoning and programming. The questions in the programming section were asked from data structures and C++. The questions in the programming section were mainly from trees (from data structures). Around 400 students appeared for their written test out of which around 100 were shortlisted.

Round: HR Interview
Experience: The next round was the interview round. They gave me some puzzles to solve and a program to write. One of the puzzles that I remember was that if I were to be given an egg then how would I determine its durability, i.e. how would I determine that from which floor do I need to throw the egg from so that the egg does not break if thrown from any floor below it.
For the coding question I was given a mathematical formula and I was asked to devise a code such that the program uses the formula and gives the output.
Tips: Prepare for Data Structures as well as the commonly asked puzzles for Oracle.

College Name: IIT ROORKEE
Motivation: Oracle is a reputed company in the space of software and ITeS. It had come to our campus with five profiles. The best means to know about all of them is to attend the pre-placement talk of the company.

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Test
Experience: First section had questions on object oriented programming concepts and some basic questions related to c++
In the second section tables were given and we were asked to write the queries for the given questions.
Duration: 1 hour
Total Questions: 20

College Name: IIITDM Jabalpur

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Interview Questionnaire 

2 Questions

  • Q1. About what we worked in previous company project
  • Q2. General C programming questions and previous company project questions

I applied via Recruitment Consultant and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is your day to day work?
  • Q2. What new you have to offer the organization?
  • Q3. The most recent issues that you faced in the organization?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true to yourself and the interviewer, he/she doesn't want you to be full of all technical skills. He/she wants you to be atleast good at the things mentioned in your resume. Showcase that you're ready to switch to any language even if it is uncomfortable for you

Relyon Softech Interview FAQs

How many rounds are there in Relyon Softech Implementation Engineer interview?
Relyon Softech interview process usually has 1-2 rounds. The most common rounds in the Relyon Softech interview process are Technical, Resume Shortlist and HR.
How to prepare for Relyon Softech Implementation 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 Relyon Softech. The most common topics and skills that interviewers at Relyon Softech expect are SQL, Accounting, Implementation, PDF and Payroll Software.
What are the top questions asked in Relyon Softech Implementation Engineer interview?

Some of the top questions asked at the Relyon Softech Implementation Engineer interview -

  1. Name any 5 defect tracking tool and explain anyo...read more
  2. How to troubleshoot the P1 issu...read more
  3. Knowledge of Operation Systems, HR processes, and Payroll bas...read more

Tell us how to improve this page.

Relyon Softech Implementation Engineer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 860 Interviews
KPIT Technologies Interview Questions
3.4
 • 284 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
Salesforce Interview Questions
4.0
 • 226 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
NICE Interview Questions
3.6
 • 81 Interviews
View all
Relyon Softech Implementation Engineer Salary
based on 102 salaries
₹1.8 L/yr - ₹5.4 L/yr
33% less than the average Implementation Engineer Salary in India
View more details

Relyon Softech Implementation Engineer Reviews and Ratings

based on 23 reviews

3.1/5

Rating in categories

2.5

Skill development

2.9

Work-life balance

2.7

Salary

3.0

Job security

2.6

Company culture

3.0

Promotions

2.7

Work satisfaction

Explore 23 Reviews and Ratings
Implementation Engineer

New Delhi,

Pune

+2

2-7 Yrs

Not Disclosed

Explore more jobs
Implementation Engineer
102 salaries
unlock blur

₹1.8 L/yr - ₹5.3 L/yr

Technical Support Engineer
60 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Software Developer
47 salaries
unlock blur

₹2 L/yr - ₹9.1 L/yr

Sales Officer
33 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Software Engineer
23 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Explore more salaries
Compare Relyon Softech with

Oracle

3.7
Compare

KPIT Technologies

3.4
Compare

Intellect Design Arena

3.9
Compare

Oracle Cerner

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