Upload Button Icon Add office photos

Filter interviews by

Livedigital Technologies Associate Software Engineer Interview Questions and Answers

Updated 29 Apr 2023

Livedigital Technologies Associate Software Engineer 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
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 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

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more

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

Interview Questionnaire 

1 Question

  • Q1. Conceps

Interview Questionnaire 

4 Questions

  • Q1. About your self
  • Q2. About java
  • Q3. Phython
  • Q4. Project details

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong ont losse ur hope

Interview Questionnaire 

1 Question

  • Q1. Concepts

I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. More on technical and design part

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on your experise
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Why Cognizant ?
  • Ans. 

    Cognizant offers innovative projects, a collaborative culture, and growth opportunities, making it an ideal place for aspiring engineers.

    • Cognizant is known for its commitment to innovation, working on cutting-edge technologies like AI and cloud computing.

    • The company fosters a collaborative work environment, encouraging teamwork and knowledge sharing among employees.

    • Cognizant provides extensive training and development ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and learn the requirements

I applied via Recruitment Consultant and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Java questions
  • Q2. Stream questions
  • Q3. Collections sorting

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java, spring, spring boot microservices

Interview Questionnaire 

1 Question

  • Q1. Concepts

Livedigital Technologies Interview FAQs

How many rounds are there in Livedigital Technologies Associate Software Engineer 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.
What are the top questions asked in Livedigital Technologies Associate Software Engineer interview?

Some of the top questions asked at the Livedigital Technologies Associate Software Engineer 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
Livedigital Technologies Associate Software Engineer Salary
based on 21 salaries
₹2 L/yr - ₹3.6 L/yr
57% less than the average Associate Software Engineer Salary in India
View more details

Livedigital Technologies Associate Software Engineer Reviews and Ratings

based on 4 reviews

3.4/5

Rating in categories

3.4

Skill development

4.1

Work-life balance

3.4

Salary

4.0

Job security

4.0

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 4 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