Upload Button Icon Add office photos
Engaged Employer

i

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

Liveketo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Liveketo Interview Questions and Answers

Updated 9 Apr 2024

Liveketo Interview Experiences

Popular Designations

2 interviews found

HR Specialist Interview Questions & Answers

user image Anonymous

posted on 17 Apr 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(2 Questions)

  • Q1. What has been some of your significant achievements
  • Q2. Why do you want to join?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and honest while presenting your work experience

HR Specialist Interview Questions asked at other Companies

Q1. How can you check whether your candidate has guven intetview properly in clients office by reqjesting office visits from your office
View answer (1)

Assistant Manager Interview Questions & Answers

user image Snehil Tiwari

posted on 9 Apr 2024

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

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

Round 1 - HR 

(1 Question)

  • Q1. Basic Screening about Qualification &

Interview Preparation Tips

Interview preparation tips for other job seekers - All Good All Well

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (88)

Jobs at Liveketo

View all

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. About sdlc
  • Q2. About web development

Software Engineer Interview Questions & Answers

Medlife user image nerella saikrishna

posted on 9 Jan 2016

Interview Questionnaire 

12 Questions

  • Q1. Insert a node in a Linked List, if a pointer to a node(it's not a head pointer) of Linked List is given.
  • Q2. What is the Time Complexity of Binary Search and it's derivation
  • Ans. 

    Binary Search has a time complexity of O(log n) and is derived from dividing the search space in half at each step.

    • Binary Search is a search algorithm that works on sorted arrays.

    • It starts by comparing the target value to the middle element of the array.

    • If the target value is smaller, the search continues on the lower half of the array.

    • If the target value is larger, the search continues on the upper half of the array.

    • T...

  • Answered by AI
  • Q3. Write code for QuickSort
  • Ans. 

    QuickSort is a sorting algorithm that uses divide and conquer approach.

    • Choose a pivot element from the array

    • Partition the array into two sub-arrays, one with elements less than the pivot and one with elements greater than the pivot

    • Recursively apply the above steps to the sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI
  • Q4. Write code for Fibonacci Series using Recursion, Iteration and Dynamic Programming
  • Ans. 

    Code for Fibonacci Series using Recursion, Iteration and Dynamic Programming

    • Recursion: Define a function that calls itself with the previous two numbers in the series as arguments

    • Iteration: Use a loop to calculate the series by adding the previous two numbers in each iteration

    • Dynamic Programming: Store the previous two numbers in variables and use them to calculate the next number in the series

  • Answered by AI
  • Q5. How to implement an operation with Stacks which will be similar to Queue
  • Ans. 

    Implementing a Queue using Stacks

    • Use two stacks to implement a queue

    • Push elements onto the first stack

    • When dequeuing, pop all elements from the first stack and push onto the second stack

    • Pop the top element from the second stack to dequeue

    • If the second stack is empty, pop all elements from the first stack and push onto the second stack

  • Answered by AI
  • Q6. Write code for MergeSort
  • Ans. 

    MergeSort is a divide and conquer algorithm that sorts an array of strings.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q7. 2 types of detective ball puzzles
  • Q8. 25 Horses, 5 Tracks, 3 Fastest Puzzle
  • Q9. How the letters of a text are determined(Basically about OCR)
  • Q10. Write code for Insertion Sort and Selection Sort and find their time complexities and also the cases where their usage is efficient
  • Q11. Explain about Counting Sort
  • Ans. 

    Counting Sort is a sorting algorithm that sorts elements by counting the number of occurrences of each unique element.

    • Count the occurrences of each element in the array

    • Calculate the cumulative sum of the counts

    • Place each element in the sorted array based on its count and cumulative sum

    • Time complexity is O(n+k) where n is the number of elements and k is the range of input

    • Example: Sort an array of strings based on their

  • Answered by AI
  • Q12. When we type a part of a word in chrome, how is it able to show all the types of words, which are consisted of that part
  • Ans. 

    Chrome uses an algorithm to predict and suggest words based on user input.

    • Chrome's algorithm uses a combination of user history, bookmarks, and popular searches to predict and suggest words.

    • The algorithm also takes into account the frequency and recency of the user's input.

    • Chrome's suggestion feature is powered by Google's Autocomplete API, which uses machine learning to predict and suggest words.

    • The suggestions are di...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: First Question, at the start I was not able to answer and he gave me an hint(He asked me the insertion in an array). So, I got the idea for the insertion in Linked List and was able to answer it.
Remaining questions, I was able to answer confidently.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I was able to answer all the questions confidently, since I know the answers for them, But the last question was out of my scope and I explained based on my intuition and knowledge.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I have given the answers for 1&2 questions with clear explanation. And the third question is again out of my scope and I explained this also based intuition.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

General Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skill Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skills: Logical Puzzles, Algorithms And DataStructures
College Name: IIT Madras
Motivation: 1. Primary Reason: Passionate about Programming and Problem solving.
2. The profile is software Engineer.
3. You can see your idea, having an impact on the society which is possible with this type of company.
4. And a good package.
Funny Moments: Nothing Really...

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The questions were on front end web development questions with managerial interview

Interview Preparation Tips

Interview preparation tips for other job seekers - The overall experience was good. The interview was on technical and managerial skills based on the experience gained.

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Referral and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. My expected tenure, education, technical insights

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Toefl score
  • Q2. Ielts score

Interview Preparation Tips

Interview preparation tips for other job seekers - easy to crack. good work atmosphere.

I applied via Walk-in and was interviewed before Oct 2019. There were 5 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Tell us about your self ?
  • Q2. What you know about TCS?
  • Q3. What is your biggest achievement till now?
  • Q4. Do you have any weakness?
  • Q5. Any break between your study ?
  • Q6. How long you will serve for our company?
  • Q7. What you have decided for you further studies?
  • Q8. How you will be benefit for our company? Why we hire you?
  • Q9. Why you want to join TCS only?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Present your self formally. Answer every question in your words don't speak line you have read from somewhere.

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.

Liveketo Interview FAQs

How many rounds are there in Liveketo interview?
Liveketo interview process usually has 1-2 rounds. The most common rounds in the Liveketo interview process are HR and Resume Shortlist.
How to prepare for Liveketo 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 Liveketo. The most common topics and skills that interviewers at Liveketo expect are Accounting, Accounts Receivable, OTC, Financial Reporting and Cash Applications.

Tell us how to improve this page.

Liveketo Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
PharmEasy Interview Questions
3.7
 • 80 Interviews
Practo Interview Questions
3.1
 • 74 Interviews
HealthifyMe Interview Questions
2.9
 • 48 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Medlife Interview Questions
3.7
 • 27 Interviews
HealthKart Interview Questions
4.0
 • 25 Interviews
Possible Health Interview Questions
3.4
 • 12 Interviews
CURE India Interview Questions
4.7
 • 2 Interviews
View all

Liveketo Reviews and Ratings

based on 10 reviews

4.3/5

Rating in categories

4.2

Skill development

4.2

Work-life balance

4.4

Salary

4.1

Job security

4.3

Company culture

4.3

Promotions

4.3

Work satisfaction

Explore 10 Reviews and Ratings
Assistant Manager/Sr. Executive - Supply Chain Management

Gurgaon / Gurugram

2-7 Yrs

Not Disclosed

Explore more jobs
Assistant Legal and Compliance Manager
5 salaries
unlock blur

₹7 L/yr - ₹7 L/yr

Assistant Manager
4 salaries
unlock blur

₹7 L/yr - ₹9.4 L/yr

Senior Executive - Finance
3 salaries
unlock blur

₹4.6 L/yr - ₹8 L/yr

Senior Accounts Executive
3 salaries
unlock blur

₹4.6 L/yr - ₹7 L/yr

Deputy Manager - Finance
3 salaries
unlock blur

₹12.1 L/yr - ₹14.2 L/yr

Explore more salaries
Compare Liveketo with

HealthifyMe

2.9
Compare

CURE India

4.7
Compare

Growfit

4.7
Compare

Possible Health

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