Upload Button Icon Add office photos

Filter interviews by

Livedigital Technologies Associate Software Engineer Interview Questions, Process, and Tips

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 names = new ArrayList();

    • 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

    Interview questions from similar companies

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

    I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

    Round 1 - Coding Test 

    Given a list of integer find the longest increase sequence

    Round 2 - One-on-one 

    (2 Questions)

    • Q1. Given a list of integer find the first non repeating integer using stream API of Java 8.
    • Ans. 

      Find the first non-repeating integer in a list using Java 8 stream API.

      • Use Java 8 stream API to group integers by count

      • Filter out integers with count greater than 1

      • Return the first non-repeating integer

    • Answered by AI
    • Q2. Questions on core java like how internationally string works, hashmap etc And questions on database like what is indexing How to optimize SQL queries etc
    Round 3 - One-on-one 

    (3 Questions)

    • Q1. Given a Map of fruits with there price as a key value pair respectively, find the fruit whose price is maximum using Java 8 Stream API.
    • Ans. 

      Using Java 8 Stream API to find the fruit with maximum price in a Map of fruits.

      • Use entrySet() method to get a stream of key-value pairs from the Map.

      • Use max() method with Comparator.comparing() to find the entry with maximum price.

      • Extract the key (fruit) from the entry with maximum price.

    • Answered by AI
    • Q2. Write a program to check whether the parenthesis are properly balanced or not, means for every opening brace these should be a closing brace present.
    • Ans. 

      Program to check if parenthesis are properly balanced

      • Use a stack data structure to keep track of opening parenthesis

      • Iterate through the input string and push opening parenthesis onto the stack

      • When a closing parenthesis is encountered, pop from the stack and check if it matches the corresponding opening parenthesis

      • If stack is empty at the end and all parenthesis are matched, then the input has properly balanced parenthe

    • Answered by AI
    • Q3. Questions on core Java, Spring Boot, JPA, and Microservices you should have strong foundation in these topics questions asked like 1) what is API gateway 2) how 2 services communicate with eachother 3) ...

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be well prepared with practical coding examples. And you should have a very good understanding of foundational concepts. Give mock interviews and practice common coding problem.

    Skills evaluated in this interview

    Interview Questionnaire 

    1 Question

    • Q1. Why Cognizant ?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident and learn the requirements
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (2 Questions)

    • Q1. Don't remember so I have no
    • Q2. I can't remember it
    Round 2 - Technical 

    (2 Questions)

    • Q1. I don't know the res
    • Q2. I can't remember it
    Interview experience
    4
    Good
    Difficulty level
    Hard
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Walk-in and was interviewed in Jul 2024. There were 3 interview rounds.

    Round 1 - Coding Test 

    Advanced Java coding

    Round 2 - Technical 

    (2 Questions)

    • Q1. Entire core Java arrays and strings
    • Ans. 

      Core Java arrays and strings are fundamental data structures used for storing and manipulating data in Java programming.

      • Arrays in Java are used to store multiple values of the same data type in a single variable.

      • Strings in Java are objects that represent sequences of characters.

      • Arrays and strings in Java are both indexed collections, with arrays being mutable and strings being immutable.

      • Example: String[] names = {"Alic

    • Answered by AI
    • Q2. Java collections and Framework
    Round 3 - Technical 

    (2 Questions)

    • Q1. Some coding and framework
    • Q2. REST assured and API

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare what ever you mention in the CV If you get shortlisted

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    Not Selected

    I applied via Campus Placement

    Round 1 - Technical 

    (2 Questions)

    • Q1. Oops related questions
    • Q2. C language quizzes
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Questions on dsa, coding question, overall good experience and so on

    Round 2 - Technical 

    (2 Questions)

    • Q1. Binary search and sorting
    • Q2. Prime number coding question
    Interview experience
    5
    Excellent
    Difficulty level
    Easy
    Process Duration
    2-4 weeks
    Result
    Not Selected

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

    Round 1 - Coding Test 

    Technical aspects about linked list,trees, stacks

    Round 2 - Group Discussion 

    Topic related to humanities

    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (2 Questions)

    • Q1. Easy question on arrays
    • Q2. Easy question on arrays and trees

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Easy level dsa..is enough
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Naukri.com

    Round 1 - Technical 

    (2 Questions)

    • Q1. Basics of kotlin, sealed class, viewmodel implementation,
    • Q2. Caching mechanism

    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.

    Livedigital Technologies Associate Software Engineer Interview Process

    based on 1 interview

    Interview experience

    3
      
    Average
    View more
    Livedigital Technologies Associate Software Engineer Salary
    based on 24 salaries
    ₹2 L/yr - ₹3.6 L/yr
    55% less than the average Associate Software Engineer Salary in India
    View more details

    Livedigital Technologies Associate Software Engineer Reviews and Ratings

    based on 3 reviews

    3.6/5

    Rating in categories

    3.6

    Skill development

    4.0

    Work-life balance

    3.6

    Salary

    4.3

    Job security

    4.3

    Company culture

    2.8

    Promotions

    3.3

    Work satisfaction

    Explore 3 Reviews and Ratings
    Associate Software Engineer
    24 salaries
    unlock blur

    ₹2 L/yr - ₹3.6 L/yr

    Software Engineer
    14 salaries
    unlock blur

    ₹2 L/yr - ₹8 L/yr

    Java Developer
    4 salaries
    unlock blur

    ₹2.4 L/yr - ₹4.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

    GAO Tek

    4.5
    Compare

    Tata Teleservices

    4.1
    Compare

    Henry Harvin Education

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