Upload Button Icon Add office photos
Premium Employer

i

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

UST Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

UST Senior Systems Analyst and Technical Lead Interview Questions, Process, and Tips

Updated 19 Dec 2021

UST Senior Systems Analyst and Technical Lead Interview Experiences

1 interview found

Interview Questionnaire 

19 Questions

  • Q1. Difference between java singleton and Spring Singleton?scenario you used to write Java Singletone, Why you dont beleive Spring Singltone in that scenario
  • Q2. How to resolve if singleton pattern break by below scenarios, File Serializations,Reflection and Cloning
  • Q3.  How Concurrent Hashmap work internally, why you dont use other synchronized structure instead
  • Ans. 

    ConcurrentHashMap is a thread-safe implementation of Map interface in Java.

    • ConcurrentHashMap allows multiple threads to read and write concurrently without blocking each other.

    • It internally divides the map into segments and locks each segment separately to allow concurrent access.

    • Other synchronized structures like Hashtable and synchronizedMap lock the entire map, causing performance issues.

    • ConcurrentHashMap is preferr...

  • Answered by AI
  • Q4. Write immutable class with List /Date Type property.
  • Ans. 

    Immutable class with List/Date Type property

    • Create a final class with private final fields

    • Use unmodifiableList() to create immutable List

    • Use defensive copying for Date property

    • No setters, only getters

    • Override equals() and hashCode() methods

  • Answered by AI
  • Q5. How to make singleton class thread safe, what is volatile?
  • Ans. 

    To make a singleton class thread safe, use synchronized keyword or double-checked locking. Volatile keyword ensures visibility of changes across threads.

    • Use synchronized keyword to ensure only one thread can access the instance at a time

    • Use double-checked locking to avoid unnecessary synchronization

    • Declare the instance variable as volatile to ensure visibility of changes across threads

    • Example: public static synchronize...

  • Answered by AI
  • Q6. SpringInterceptor, Dis advantage of micro Service, Global Exception handling in Spring
  • Q7. Stream, Lambda and Functional interface Combination to write functional programming
  • Ans. 

    Stream, Lambda and Functional interface can be combined to write functional programming in Java

    • Streams provide a functional way to process collections of data

    • Lambda expressions allow for functional programming by providing a way to pass behavior as an argument

    • Functional interfaces define the contract for a lambda expression

    • Example: using a stream to filter a list of integers and then using a lambda expression to map ea

  • Answered by AI
  • Q8. @Asynch, @Scheduler
  • Q9. How to access rest endpoint in Asynchronous manner
  • Ans. 

    To access rest endpoint in asynchronous manner, use AJAX or fetch API with async/await or promises.

    • Use AJAX or fetch API to make asynchronous requests to the REST endpoint

    • Use async/await or promises to handle the asynchronous response

    • Ensure that the endpoint supports asynchronous requests

  • Answered by AI
  • Q10. Advantage and disadvantage of Static method
  • Ans. 

    Static methods are useful for utility functions but can't access instance variables.

    • Advantage: Can be called without creating an instance of the class

    • Advantage: Useful for utility functions that don't require access to instance variables

    • Disadvantage: Can't access instance variables

    • Disadvantage: Can't be overridden in subclasses

  • Answered by AI
  • Q11. Use of helm file and use of kubernate
  • Ans. 

    Helm is a package manager for Kubernetes while Kubernetes is an open-source container orchestration platform.

    • Helm is used to manage Kubernetes applications and their dependencies

    • Helm charts are used to define, install, and upgrade Kubernetes applications

    • Kubernetes is used to automate deployment, scaling, and management of containerized applications

    • Kubernetes uses declarative configuration to manage applications and the

  • Answered by AI
  • Q12. How to decide NoSql is sufficient in your project
  • Ans. 

    NoSql is sufficient when data is unstructured and requires high scalability and performance.

    • Consider the type of data and its structure

    • Evaluate the scalability and performance requirements

    • Assess the need for complex queries and transactions

    • Examples: social media data, IoT data, real-time analytics

  • Answered by AI
  • Q13. How to listen S3 has a fileChange, how can you manage multiple insertion of same file..
  • Ans. 

    To manage multiple insertions of the same file in S3, use versioning and object locking.

    • Enable versioning on the S3 bucket to keep track of changes to the file.

    • Use object locking to prevent multiple insertions of the same file at the same time.

    • Implement a notification system to alert users when a file has been updated.

    • Consider using a unique identifier for each file to avoid confusion.

    • Implement a backup and recovery pl

  • Answered by AI
  • Q14. Leaders and Followers in Cassandra
  • Ans. 

    In Cassandra, leaders are responsible for handling read and write requests while followers replicate data.

    • Leaders are chosen based on their proximity to the client and their ability to handle requests efficiently.

    • Followers replicate data from the leader and can take over as leader if the current leader fails.

    • Cassandra uses a gossip protocol to ensure that all nodes are aware of the current leader and follower status.

    • Le...

  • Answered by AI
  • Q15. Kafka topic, replication and offset
  • Q16. Different AWS commands you used in aws cli
  • Ans. 

    AWS CLI commands used as Senior Systems Analyst and Technical Lead

    • aws s3 ls - List all S3 buckets

    • aws ec2 describe-instances - Describe all EC2 instances

    • aws rds describe-db-instances - Describe all RDS instances

    • aws lambda list-functions - List all Lambda functions

    • aws cloudformation describe-stacks - Describe all CloudFormation stacks

  • Answered by AI
  • Q17. How to make a db entity un modify or immutable
  • Ans. 

    To make a db entity unmodifiable, use constraints or triggers to prevent updates or deletes.

    • Use a constraint to prevent updates or deletes on the entity

    • Create a trigger to roll back any update or delete operation on the entity

    • Grant read-only access to the entity to prevent modifications

    • Use database permissions to restrict modification access to the entity

    • Consider using a separate read-only database for the entity

  • Answered by AI
  • Q18. Different Repo implemented in spring Data
  • Ans. 

    Spring Data supports various repositories for different data sources

    • Spring Data JPA for relational databases

    • Spring Data MongoDB for NoSQL databases

    • Spring Data Redis for key-value stores

    • Spring Data Cassandra for column-family stores

    • Spring Data Neo4j for graph databases

  • Answered by AI
  • Q19. String pool, stack overFlow error, ClassCast and classDefenition Error

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare programming with Array operations, compare,Thread creation with sleep, Immutable, Singleton, map iteration, stream with map,fibnocii

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)

I applied via Naukri.com and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java Basic questions and Git

Interview Preparation Tips

Interview preparation tips for other job seekers - After selection they haven't rolled the offer and put the profile on hold and then doesn't pick calls.

I appeared for an interview before Jun 2021.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. What is python and python interpreter
  • Ans. 

    Python is a high-level, interpreted programming language used for web development, data analysis, and artificial intelligence.

    • Python is easy to learn and has a simple syntax.

    • It supports multiple programming paradigms like object-oriented, functional, and procedural.

    • Python interpreter is a program that executes Python code.

    • It converts the code into bytecode and then runs it on the machine.

    • Python interpreter can be used ...

  • Answered by AI
Round 3 - Coding Test 
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and date of joining

Interview Preparation Tips

Interview preparation tips for other job seekers - overall good experience and good environment

Skills evaluated in this interview

I applied via Company Website and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I have cleared all interview rounds but I don't have my previous organization bank statements but in my current organization I have all the documents and current organization experience is 4.7 year and yo...

Interview Preparation Tips

Interview preparation tips for other job seekers - Team please update to candidate all the required documents before the interview
Because I didn't accept the offer from tcs due to Accenture selection and now I don't have Accenture offers

I applied via Naukri.com and was interviewed before Apr 2021. 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 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - The types of interviews modes of interviews(vedii phone,zoom,in persons etc.)

I applied via Approached by Company and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Technical and output based round

Round 2 - Technical 

(1 Question)

  • Q1. Basic JavaScript questions

Interview Preparation Tips

Interview preparation tips for other job seekers - U can google and watch YouTube videos' on JavaScript interview question mostly that will help you with clearing the interview

I applied via Campus Placement and was interviewed in Aug 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself ?
  • Q2. What is the meaning of your name?

Interview Preparation Tips

Interview preparation tips for other job seekers - If they ask you to tell me yourself mentioning your name?
you should not tell your name because, they have already mentioned it.
This question should last at least for 60 to 70 sec not more then that.
Mention the things which you have not written in your resume.
Don't talk about unnecessary things which is not required for your role.
Talk about your self learning courses, hobbies, leadership qualities if you have any.

Main thing is, you should be confident for what ever you speak out.
look straight into their eyes, but be confident.

Your answer might be wrong, but you should speak with the confident that. they might thing you are right.

All the very best for all the people who are going to attend the interviews
with best regards.


I applied via Referral and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly on core java n spring

Interview Preparation Tips

Interview preparation tips for other job seekers - It's very simple and really cool

I applied via Referral and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is a sga in oracle
  • Ans. 

    SGA stands for System Global Area, a shared memory area in Oracle database that stores data and control information.

    • SGA is a crucial component of Oracle database architecture

    • It is allocated when the database instance starts up

    • SGA contains information about database buffers, shared pool, redo log buffer, etc.

    • SGA size can be configured using initialization parameters

    • Examples of SGA initialization parameters are DB_CACHE_

  • Answered by AI
  • Q2. Sga is a system global area

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good interview in Oracle database. They give their verdict inside one weeks

Skills evaluated in this interview

UST Interview FAQs

What are the top questions asked in UST Senior Systems Analyst and Technical Lead interview?

Some of the top questions asked at the UST Senior Systems Analyst and Technical Lead interview -

  1. How to listen S3 has a fileChange, how can you manage multiple insertion of sam...read more
  2. How to make singleton class thread safe, what is volati...read more
  3. How Concurrent Hashmap work internally, why you dont use other synchronized st...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.3k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 763 Interviews
NTT Data Interview Questions
3.8
 • 627 Interviews
View all
Software Developer
2.1k salaries
unlock blur

₹3.8 L/yr - ₹15.2 L/yr

Senior Software Engineer
1.6k salaries
unlock blur

₹6.7 L/yr - ₹26 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.8 L/yr - ₹15.3 L/yr

System Analyst
1.1k salaries
unlock blur

₹6.1 L/yr - ₹18.2 L/yr

Validation Engineer
923 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Explore more salaries
Compare UST with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

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