Upload Button Icon Add office photos

Filter interviews by

Livedigital Technologies Interview Questions and Answers

Updated 29 Apr 2023

Livedigital Technologies Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement

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 

(5 Questions)

  • Q1. What is Array List and hot to create Array list
  • Ans. 

    ArrayList is a dynamic array that can grow or shrink in size during runtime.

    • To create an ArrayList, import java.util.ArrayList and create an instance of it.

    • Add elements to the ArrayList using the add() method.

    • Access elements using the get() method and remove elements using the remove() method.

    • Example: ArrayList<String> names = new ArrayList<String>();

    • names.add("John"); names.add("Mary"); names.remove(0);

  • Answered by AI
  • Q2. What is String and String buffer
  • Ans. 

    String is a sequence of characters. String buffer is a mutable sequence of characters.

    • String is immutable while String buffer is mutable

    • String buffer is more efficient for concatenating multiple strings

    • String buffer has methods to insert, append, and delete characters

    • Example: String str = "Hello"; StringBuffer sb = new StringBuffer("World");

    • Example: str.concat("!"); sb.append("!");

  • Answered by AI
  • Q3. What is the difference between "==" and "===" in Js
  • Ans. 

    The '==' operator checks for value equality, while '===' checks for both value and type equality.

    • The '==' operator performs type coercion, which can lead to unexpected results.

    • The '===' operator is more strict and does not perform type coercion.

    • For example, 1 == '1' returns true, but 1 === '1' returns false.

    • It is generally recommended to use '===' for more predictable and reliable code.

  • Answered by AI
  • Q4. Tell me about your recent projects
  • Q5. Write the queries in SQL for CRUD operation
  • Ans. 

    SQL queries for CRUD operations

    • CREATE: INSERT INTO table_name (column1, column2, ...) VALUES (value1, value2, ...)

    • READ: SELECT column1, column2, ... FROM table_name WHERE condition

    • UPDATE: UPDATE table_name SET column1 = value1, column2 = value2, ... WHERE condition

    • DELETE: DELETE FROM table_name WHERE condition

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Explain what ever you mentioned in your resume

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
5d (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 Livedigital Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Everything in your resume questions from your domain and 1 quizzes

Interview Preparation Tips

Interview preparation tips for other job seekers - Completely prepare your resume

Interview Preparation Tips

Round: TECHNICAL ROUND TEST
Experience: A 45 mins round which consisted of 30 mins of core questions and 15 mins of data structures.  It was a mix of test on our knowledge .

Round: HR Interview
Experience: Most of the questions were based on general knowledge and many of them were from the resume provides by me

General Tips: It is always advisable to be prepared with certain set of general questions which make it easier to answer.
Skill Tips: Focus on your Study.. Revise the subject that you have studied at the time of Interview
Skills: Technical Skills
College Name: IIT MADRAS

Interview Preparation Tips

Round: Test
Experience: Questions were on Aptitude, English, Probability, Permutations andCombinations and Programming (C, C++). NO Group Discussion was held.Candidates were shortlisted on the basis of their test scores.

Round: Technical Interview
Experience: Total time of this round was 45 minutes.First 30 minutes, questions on core programming were asked and in the remaining 15 minutes questions were asked on data structures.

Round: HR Interview
Experience: This was a 5 minute round where questions were put up, some based on the resume and other were general questions.

Skills: Knowledge in MATLAB.
College Name: IIT MADRAS

I appeared for an interview in Mar 2018.

Interview Preparation Tips

General Tips: This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher.
You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.
Skills: Communication, Problem Solving, Leadership, Decision Making Skills

I applied via Recruitment Consultant and was interviewed before Apr 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Multiple technical round questions around devops, python program development, kubernetes and linux. ( Question can be different based on job requirements)

Interview Preparation Tips

Interview preparation tips for other job seekers - Multiple technical (5 rounds) interview need some preparation.
Hr interview was formality if are really liked by technical panel you will pass hr round easily.

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. It was mostly puzzles.
  • Q2. One algo question invoving recursive function .
  • Ans. 

    Recursive functions solve problems by breaking them down into smaller subproblems, often leading to elegant solutions.

    • A recursive function calls itself with modified parameters.

    • Base case is crucial to prevent infinite recursion.

    • Example: Factorial function - factorial(n) = n * factorial(n-1) with base case factorial(0) = 1.

    • Example: Fibonacci sequence - fib(n) = fib(n-1) + fib(n-2) with base cases fib(0) = 0, fib(1) = 1.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers - prepare puzzles and basic computer science fundamentals
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What does BA will do
  • Ans. 

    A Business Analyst (BA) will analyze business processes, identify areas for improvement, and recommend solutions to enhance efficiency and productivity.

    • Analyze business processes

    • Identify areas for improvement

    • Recommend solutions to enhance efficiency and productivity

    • Collaborate with stakeholders to gather requirements

    • Create and maintain project documentation

    • Facilitate communication between technical and non-technical te...

  • Answered by AI
  • Q2. What is analytics
  • Ans. 

    Analytics is the process of analyzing data to gain insights and make informed decisions.

    • Analytics involves collecting, processing, and interpreting data

    • It can be used in various fields such as business, healthcare, and sports

    • Examples of analytics tools include Google Analytics, Tableau, and SAS

    • Analytics can help identify patterns, trends, and opportunities for improvement

    • It can also be used for predictive modeling and ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its verygood

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

Interview Questionnaire 

1 Question

  • Q1. In resume about our stream of study

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the resume complete ly and your stream of study

Interview Questionnaire 

1 Question

  • Q1. Conceps

Livedigital Technologies Interview FAQs

How many rounds are there in Livedigital Technologies interview?
Livedigital Technologies interview process usually has 3 rounds. The most common rounds in the Livedigital Technologies interview process are Resume Shortlist, Technical and HR.
How to prepare for Livedigital 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 Livedigital Technologies. The most common topics and skills that interviewers at Livedigital Technologies expect are Azure, Docker, GIT, Groovy and Hibernate.
What are the top questions asked in Livedigital Technologies interview?

Some of the top questions asked at the Livedigital Technologies interview -

  1. What is the difference between "==" and "===" in...read more
  2. What is Array List and hot to create Array l...read more
  3. What is String and String buf...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

GAO Tek Interview Questions
4.4
 • 277 Interviews
Bhanzu Interview Questions
3.9
 • 152 Interviews
Tutopia Interview Questions
4.2
 • 150 Interviews
BCD Travel Interview Questions
4.3
 • 113 Interviews
View all

Livedigital Technologies Reviews and Ratings

based on 19 reviews

3.1/5

Rating in categories

3.2

Skill development

3.7

Work-life balance

3.2

Salary

3.0

Job security

3.1

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 19 Reviews and Ratings
Associate Software Engineer
21 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Software Engineer
18 salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Java Developer
5 salaries
unlock blur

₹1.9 L/yr - ₹6.3 L/yr

Softwaretest Engineer
4 salaries
unlock blur

₹3.6 L/yr - ₹4.5 L/yr

Test Engineer
3 salaries
unlock blur

₹4.5 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Livedigital Technologies with

Reliance Communications

4.0
Compare

Henry Harvin Education

3.8
Compare

GAO Tek

4.4
Compare

Tata Teleservices

3.9
Compare
write
Share an Interview