Upload Button Icon Add office photos

Filter interviews by

Marolix Technology Solutions Technical Lead Interview Questions and Answers

Updated 26 Sep 2022

Marolix Technology Solutions Technical Lead Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed before Sep 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 - HR 

(2 Questions)

  • Q1. Please do not join this fraud company.
  • Q2. You will get cheated in the end, trust me.

Interview Preparation Tips

Interview preparation tips for other job seekers - This is a fraud company. They will be pumped to take your interview but then they will cheat employees by not giving salaries. The 5-star google reviews are paid reviews and the reply under the genuine 1-star reviews are made-up stories. Do not invest in them and ruin your career. The people who are currently working under this company are a bunch of fraudulent and ruthless people who would stoop down to any level to cheat their employees. They gave the old employees work from home and absconded with the money and now they are hiring new employees without informing the old employees.

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. The questions were around Microservices and Java also a bit of NodeJS was asked sounded ok except this was rescheduled twice
Round 2 - Technical 

(1 Question)

  • Q1. 2 People Mostly Architects Interviewed me and asked me on Websockets and when they are used Node JS and its advantages. I goto know this was a Project/ Position specific hire and a lot of questions around ...
Round 3 - Behavioral 

(1 Question)

  • Q1. The manager was very rude he as i had a break of 1 year he was kind of refusing to take interview for the first 5-10 mins asking reasons for the gap and i did explain him i had taken sabbatical due to heal...

Interview Preparation Tips

Interview preparation tips for other job seekers - Sr Management seems to be not very open
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java Collections
  • Q2. Java8 Stream program
  • Ans. 

    Java8 Stream program to filter even numbers and double them

    • Use Stream to filter even numbers

    • Use map to double the filtered numbers

    • Use collect to collect the results into a list

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Completable future
  • Q2. Microservice architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Salary discussion and project informations

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Core java ,java 8 coding questions,multiarray coding questions
  • Q2. Microservices, securities, rabbitmq,cloud
Round 2 - HR 

(1 Question)

  • Q1. Compensation joining

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. No projects after joining.. they forced us to join saying client is asking n then no projects.. no process.
No bench policy they have documented .hr will suddenly come one day n ask u to leave saying we dont have Matching skillset opportunities.
Worst process ,nobody connect with you after joining ..not even ur manager..
Manager connected once to us in six months.


Hire n fire policy.
Big no.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SOA vs Micro Service
  • Ans. 

    SOA focuses on large, monolithic services while Microservices are small, independent services.

    • SOA is a centralized architecture with shared services, while Microservices are decentralized with each service having its own database.

    • SOA is typically implemented using ESB (Enterprise Service Bus), while Microservices communicate via lightweight protocols like HTTP or messaging queues.

    • SOA is more suitable for large enterpri...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How did you get selected to wipro
  • Q2. What area of work are you good at
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Is live data is life cycle aware. If it's aware what does ViewModel do?
  • Ans. 

    Yes

    • LiveData is lifecycle aware and can be used to observe changes in data.

    • ViewModel provides a way to store and manage UI-related data across configuration changes.

    • ViewModel can hold LiveData objects to provide data to the UI.

    • LiveData and ViewModel work together to ensure data consistency and prevent memory leaks.

  • Answered by AI
  • Q2. How does viewmodel survive when activity is destroyed on configuration?
  • Ans. 

    The ViewModel survives configuration changes by being retained by the system.

    • ViewModels are designed to survive configuration changes like screen rotations or language changes.

    • When an activity is destroyed and recreated, the ViewModel is not destroyed and retains its data.

    • The ViewModel is associated with the activity's lifecycle and is retained until the activity is finished.

    • The retained ViewModel instance can be acces...

  • Answered by AI
  • Q3. Advantage of mvp over mvc.
  • Ans. 

    MVP offers better separation of concerns and easier unit testing compared to MVC.

    • MVP separates the presentation layer from the business logic, making it easier to maintain and modify the codebase.

    • MVP allows for easier unit testing as the presenter can be tested independently from the view.

    • MVP provides better decoupling between components, enabling easier code reuse and scalability.

    • MVP promotes a clear separation of con...

  • Answered by AI
  • Q4. How does SSL pinning works?
  • Ans. 

    SSL pinning is a security technique that ensures a client only communicates with a server using a pre-defined public key.

    • SSL pinning involves hardcoding the server's public key in the client's code or configuration.

    • During the SSL handshake, the client checks if the server's public key matches the pinned key.

    • If the keys match, the connection is established; otherwise, it is rejected.

    • Pinning prevents man-in-the-middle at

  • Answered by AI
  • Q5. How do you achieve data security when saving data persistanly.
  • Ans. 

    Data security can be achieved through encryption, access controls, backups, and regular security audits.

    • Encrypt sensitive data using strong encryption algorithms.

    • Implement access controls to restrict unauthorized access to the data.

    • Regularly backup the data to prevent data loss.

    • Conduct regular security audits to identify and fix vulnerabilities.

    • Use secure protocols and communication channels for data transfer.

    • Implement...

  • Answered by AI
  • Q6. Where to save encription key?
  • Ans. 

    Encryption keys should be securely stored in a separate key management system.

    • Encryption keys should not be stored alongside the encrypted data.

    • Use a dedicated key management system (KMS) to store and manage encryption keys.

    • Implement strong access controls and authentication mechanisms for the KMS.

    • Consider using hardware security modules (HSMs) for added security.

    • Regularly rotate encryption keys to minimize the impact

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare your current implementation projected thoroughly.

Skills evaluated in this interview

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

I was interviewed in Jan 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Spring batch questions Questions related to asynch process
  • Q2. Java 8 stream api questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Java 8-related questions and project-related topics.

Technical Lead Interview Questions & Answers

IBM user image vishnu sarathi

posted on 10 Jul 2024

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

Java 8 based programming

Round 2 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Q2. Microservices architecture
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Kafka details about producer and consumer

Marolix Technology Solutions Interview FAQs

How many rounds are there in Marolix Technology Solutions Technical Lead interview?
Marolix Technology Solutions interview process usually has 2 rounds. The most common rounds in the Marolix Technology Solutions interview process are Resume Shortlist and HR.
What are the top questions asked in Marolix Technology Solutions Technical Lead interview?

Some of the top questions asked at the Marolix Technology Solutions Technical Lead interview -

  1. You will get cheated in the end, trust ...read more
  2. Please do not join this fraud compa...read more

Tell us how to improve this page.

Marolix Technology Solutions Technical Lead Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Software Developer
128 salaries
unlock blur

₹1.2 L/yr - ₹7.1 L/yr

Softwaretest Engineer
116 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Devops Engineer
73 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Test Engineer
52 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Java Developer
51 salaries
unlock blur

₹1.3 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Marolix Technology Solutions with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview