Upload Button Icon Add office photos

Filter interviews by

Tagit Pte Lead Software Engineer Interview Questions and Answers

Updated 2 Aug 2024

Tagit Pte Lead Software Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain about Blocking queue
  • Ans. 

    Blocking queue is a data structure that supports operations for adding and removing elements, with the added feature of blocking when the queue is full or empty.

    • Blocking queue is a thread-safe queue that supports operations like put() and take().

    • When the queue is full, put() operation will block until space is available.

    • When the queue is empty, take() operation will block until an element is available.

    • Blocking queue is...

  • Answered by AI

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in May 2024.

Round 1 - Group Discussion 

Questions about resume and web browsers in particular

Round 2 - Assignment 

Implement a logger using web sockets

Round 3 - Assignment 

Start/stop web browser using rest API using 2 web browsers

Interview Preparation Tips

Interview preparation tips for other job seekers - The assignment questions are fixed and is asked for everyone. The 3rd round interviewer was very rude and had a very bad experience with him.

Did not give time to implement code, continuously interrupting and talking nonsense in between, very inexperienced..
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2023. 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 - One-on-one 

(2 Questions)

  • Q1. Authentication Jwt Classloaders
  • Q2. Implementation of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap uses a hash function to map keys to indices in an array.

    • Collision handling is important in HashMap implementation.

    • Java's HashMap class is a popular implementation of this data structure.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basics and microservices

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Aptitude Had around 50 Questions which cover Logical,Quantitative, Code snippets

Round 2 - Technical 

(3 Questions)

  • Q1. Two Sum in Coding
  • Ans. 

    Find two numbers in an array that add up to a specific target value.

    • Use a hashmap to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the two numbers that add up to the target value.

  • Answered by AI
  • Q2. Differences in final,Finally,Finalize
  • Ans. 

    final, finally, and finalize are related terms in programming but have different meanings and usage

    • final is a keyword in Java used to restrict inheritance, method overriding, and variable reassignment

    • finally is a block of code in exception handling that always executes, regardless of whether an exception is thrown

    • finalize is a method in Java used for cleanup operations before an object is garbage collected

  • Answered by AI
  • Q3. Basic Sql operations
Round 3 - Technical 

(3 Questions)

  • Q1. Array List Implementation in Stack for Push and pop
  • Ans. 

    Array List can be implemented in a stack by using an array and keeping track of the top element.

    • Create an array to store the elements of the stack.

    • Keep track of the top element using a variable.

    • For push operation, add the element to the top of the stack and increment the top index.

    • For pop operation, remove the top element and decrement the top index.

  • Answered by AI
  • Q2. Finding 3rd Largest Number in an Array without using Sort
  • Ans. 

    Find 3rd largest number in array without sorting

    • Iterate through array to find largest, 2nd largest, and 3rd largest numbers

    • Keep track of these numbers as you iterate

    • Return the 3rd largest number found

  • Answered by AI
  • Q3. Finding the min number of Swap in Sorting of Array
  • Ans. 

    To find the minimum number of swaps needed to sort an array

    • Use graph theory to find cycles in the array

    • Count the number of swaps needed to fix each cycle

    • Add up the swaps needed for all cycles to get the total minimum swaps

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn About a PL clearly and Do more of DSA.

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Fibonacci, swap without 3rd var
  • Q2. Non repetitive char in string
  • Ans. 

    Find the first non-repetitive character in a string.

    • Iterate through the string and count the occurrences of each character.

    • Return the first character with a count of 1.

  • Answered by AI
Round 2 - Case Study 

Scenario based questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at Amrita School of Engineering, Bangalore

Round 1 - Coding Test 

Basic DSA linked list, stack etc

Round 2 - Coding Test 

System design food delivery application

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Why Appviewx and what do u know about it

Interview Preparation Tips

Topics to prepare for AppViewX Software Developer interview:
  • DSA
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Sql related questions were asked
  • Q2. Manual testing questions were asked
  • Q3. Joins questions
  • Q4. Where clause questions
  • Q5. Manual testing questions
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is content security Policy
  • Ans. 

    Content Security Policy (CSP) is a security standard that helps prevent cross-site scripting (XSS) attacks by allowing website owners to control which resources can be loaded on their site.

    • CSP is implemented using an HTTP header that specifies approved sources of content such as scripts, stylesheets, images, fonts, and more.

    • It helps protect against XSS attacks by restricting the sources from which certain types of cont...

  • Answered by AI
  • Q2. React question to have directory sturcture listing

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. How to identify if a queue is circular
  • Ans. 

    A circular queue can be identified by checking if the rear pointer is one position behind the front pointer.

    • Check if rear pointer is one position behind front pointer

    • Check if front pointer is at index 0 and rear pointer is at index n-1 in an array of size n

    • Check if front pointer is at index rear+1 modulo n in an array of size n

  • Answered by AI
Round 2 - System design 

(1 Question)

  • Q1. Design notification system
  • Ans. 

    Design a notification system for a software application.

    • Identify the types of notifications needed (e.g. email, SMS, in-app)

    • Consider the frequency and urgency of notifications

    • Implement a notification queue to handle multiple notifications

    • Include user preferences for notification settings

    • Utilize push notifications for real-time updates

  • Answered by AI
Round 3 - Coding Test 

Write multiple polyfills for array

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is let, const and var?
  • Ans. 

    let, const, and var are keywords used for variable declaration in JavaScript.

    • let is block-scoped and can be reassigned.

    • const is block-scoped but cannot be reassigned.

    • var is function-scoped and can be reassigned.

  • Answered by AI

Skills evaluated in this interview

Tagit Pte Interview FAQs

How many rounds are there in Tagit Pte Lead Software Engineer interview?
Tagit Pte interview process usually has 1 rounds. The most common rounds in the Tagit Pte interview process are Technical.
How to prepare for Tagit Pte Lead Software 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 Tagit Pte. The most common topics and skills that interviewers at Tagit Pte expect are Javascript, Application Development, Core Java, JQuery and MySQL.

Tell us how to improve this page.

Tagit Pte Lead Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Ramco Systems Interview Questions
3.9
 • 64 Interviews
BrowserStack Interview Questions
3.7
 • 48 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
Backbase Interview Questions
4.1
 • 21 Interviews
Mentor Graphics Interview Questions
4.0
 • 19 Interviews
View all
Tagit Pte Lead Software Engineer Salary
based on 13 salaries
₹14 L/yr - ₹20 L/yr
28% less than the average Lead Software Engineer Salary in India
View more details

Tagit Pte Lead Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
101 salaries
unlock blur

₹7 L/yr - ₹16.7 L/yr

Software Engineer
74 salaries
unlock blur

₹3 L/yr - ₹11.2 L/yr

Senior Product Engineer
48 salaries
unlock blur

₹6.2 L/yr - ₹14.7 L/yr

Product Engineer
23 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Senior Business Analyst
17 salaries
unlock blur

₹9 L/yr - ₹21.2 L/yr

Explore more salaries
Compare Tagit Pte with

MobiQuest Mobile Technologies

3.1
Compare

Capillary Technologies

3.5
Compare

Vinculum Solutions

3.0
Compare

Unicommerce Esolutions

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