TECH MAHINDRA Interview Exp
1) Self Intro.
2) Project.
3) Qns on Project.
4) Which Programming Language
you r Familiar with It.
5) What is Primarykey, Foreignkey.
6) Views in SQL.
7) Syntax of View.
8) Rank.
9) External Table.
10) Method Overloading.
11) Method Overriding.
12) Inheritance.
13) Explain Types of Inheritance
14) Why Multiple Inheritance is not
Supported.
15) Is Multiple Inheritance.
Supported injava and wha is it.
16) Relocation.
17) Night Shifts.
18) Why you Choose TechM.
19) About TechM.
1) Self Intro.
2) Project.
3) Qns on Project.
4) Which Programming Language
you r Familiar with It.
5) What is Primarykey, Foreignkey.
6) Views in SQL.
7) Syntax of View.
8) Rank.
9) External Table.
10) Method Overloading.
11) Method Overriding.
12) Inheritance.
13) Explain Types of Inheritance
14) Why Multiple Inheritance is not
Supported.
15) Is Multiple Inheritance.
Supported injava and wha is it.
16) Relocation.
17) Night Shifts.
18) Why you Choose TechM.
19) About TechM.
๐ฅ1
List<Map<Integer,Integer>>
Q. I have a list of map consist of key and value now using stream Api & parallel stream filter the value & key which value is 10 and key number is 10
Q. I have a list of map consist of key and value now using stream Api & parallel stream filter the value & key which value is 10 and key number is 10
๐2๐ฅ1
https://docs.google.com/document/d/10_90bjT5Ygcw6PMOALAzoJlmOrajiasljBLsba2WITU/edit?usp=sharing
Microservices
Microservices
Google Docs
Microservices explained
1. Introduction to Microservices Architecture Definition and Evolution of Microservices Origins and Evolution: Tracing the history from monolithic applications, SOA (Service-Oriented Architecture), to the rise of microservices. Comparison with SOA: Differencesโฆ
Anyone here who is experienced want to land a job of around 15-40 LPA ?
Anonymous Poll
94%
Yes
6%
No
Freshers who need 5-15 LPA job placement assistance ? drop me a message
Anonymous Poll
95%
Yes
5%
No
Will update you with one Google form tomorrow just fill that with these details
Aman Raj
Share their mail id and phone no
no updates from their team seems position gets on hold
We're Hiring! Join Xpressbees as an SDE1 - Java & Spring Boot** ๐
Are you a passionate Java developer with around 3 years of experience in building robust applications using Spring Boot? Do you want to be part of a dynamic team that's driving innovation in the logistics and supply chain industry? Xpressbees is looking for talented individuals like you!
Position: Software Development Engineer I (SDE1)
Location: Bangalore(WFO)
Experience Required: 1-3 years
Skills Required: Java, Spring Boot
Why Xpressbees?
- Innovative Environment: Work on cutting-edge technology in a fast-paced, growth-oriented company.
- Growth Opportunities: Be part of a team where your ideas and contributions can make a real impact.
- Collaborative Culture: Join a group of dedicated professionals who thrive on teamwork and innovation.
Key Responsibilities:
- Develop, test, and maintain high-quality Java applications using Spring Boot.
- Collaborate with cross-functional teams to design and implement new features.
- Troubleshoot and resolve technical issues, ensuring the delivery of scalable solutions.
- Participate in code reviews and contribute to best practices for software development.
Qualifications:
- Bachelor's degree in Computer Science or a related field.
- 3 years of hands-on experience in Java and Spring Boot development.
- Strong understanding of software engineering principles and design patterns.
- Experience with RESTful APIs, microservices architecture, and SQL databases.
If you're ready to take your career to the next level and make a significant impact, we want to hear from you! Apply now and be part of our exciting journey at Xpressbees. ๐
Are you a passionate Java developer with around 3 years of experience in building robust applications using Spring Boot? Do you want to be part of a dynamic team that's driving innovation in the logistics and supply chain industry? Xpressbees is looking for talented individuals like you!
Position: Software Development Engineer I (SDE1)
Location: Bangalore(WFO)
Experience Required: 1-3 years
Skills Required: Java, Spring Boot
Why Xpressbees?
- Innovative Environment: Work on cutting-edge technology in a fast-paced, growth-oriented company.
- Growth Opportunities: Be part of a team where your ideas and contributions can make a real impact.
- Collaborative Culture: Join a group of dedicated professionals who thrive on teamwork and innovation.
Key Responsibilities:
- Develop, test, and maintain high-quality Java applications using Spring Boot.
- Collaborate with cross-functional teams to design and implement new features.
- Troubleshoot and resolve technical issues, ensuring the delivery of scalable solutions.
- Participate in code reviews and contribute to best practices for software development.
Qualifications:
- Bachelor's degree in Computer Science or a related field.
- 3 years of hands-on experience in Java and Spring Boot development.
- Strong understanding of software engineering principles and design patterns.
- Experience with RESTful APIs, microservices architecture, and SQL databases.
If you're ready to take your career to the next level and make a significant impact, we want to hear from you! Apply now and be part of our exciting journey at Xpressbees. ๐
Forwarded from Aman Raj
3. Java - Concurrency
Which two statements are true?
1. Deadlock will not occur if wait()/notify() is used
2. A thread will resume execution as soon as its sleep duration expires.
3. Synchronization can prevent two objects from being accessed by the same thread.
4. The wait () method is overloaded to accept a duration.
5. The notify() method is overloaded to accept a duration.
6. Both wait() and notify() must be called from a synchronized context.
Pick ONE option
1 and 2
3 and 5
4 and 6
1 and 3
Clear Selection
Which two statements are true?
1. Deadlock will not occur if wait()/notify() is used
2. A thread will resume execution as soon as its sleep duration expires.
3. Synchronization can prevent two objects from being accessed by the same thread.
4. The wait () method is overloaded to accept a duration.
5. The notify() method is overloaded to accept a duration.
6. Both wait() and notify() must be called from a synchronized context.
Pick ONE option
1 and 2
3 and 5
4 and 6
1 and 3
Clear Selection
Forwarded from Aman Raj
. Java Cyclic Barrier
Given this code segment:
Final Cyclicรarrier barrter new CyclicBarrier (3, () System.out.println("Let's play")); // LINE ONE
Runnable(){
System.out.println("Awaiting"); // LINE TWO
try( barrier.await();
catch (Exception e) ( ignore/1
Thread 11 new Thread();
Thread 12 new Thread(); Thread 11 new Thread(r);
tl.start(); t2.start();
t3.start();
Choose the correct option based on this code segment.
Pick ONE option
This code segment results s in a compiler error in line marked with the comment LINE ONE
This code segment results in a compler error in line marked with the comment LINE TWO
This code prints
Let's play
This code prints
Awaiting Awaiting
Awaiting
Let's play
This code segment does not print anything on the console
Clear Selecrich
Given this code segment:
Final Cyclicรarrier barrter new CyclicBarrier (3, () System.out.println("Let's play")); // LINE ONE
Runnable(){
System.out.println("Awaiting"); // LINE TWO
try( barrier.await();
catch (Exception e) ( ignore/1
Thread 11 new Thread();
Thread 12 new Thread(); Thread 11 new Thread(r);
tl.start(); t2.start();
t3.start();
Choose the correct option based on this code segment.
Pick ONE option
This code segment results s in a compiler error in line marked with the comment LINE ONE
This code segment results in a compler error in line marked with the comment LINE TWO
This code prints
Let's play
This code prints
Awaiting Awaiting
Awaiting
Let's play
This code segment does not print anything on the console
Clear Selecrich
Forwarded from Aman Raj
5. Java - PQ Example
public class PriorityQueueTest (
public static void main(String[] args) (
PriorityQueue<Integer> queue new PriorityQueue();
queue.add(11);
queue.add(18);
queue.add(22);
queue.add(S);
queue.add(12);
queue.add(2)1
while (queue.isEmpty() false) ( System.out.printf("d", queue.remove());
Pick ONE option
11 10 22
5 122
Random Order as no Comparator provided.
25 10 11
12 22
22 12 11 1052
Gear Selection
public class PriorityQueueTest (
public static void main(String[] args) (
PriorityQueue<Integer> queue new PriorityQueue();
queue.add(11);
queue.add(18);
queue.add(22);
queue.add(S);
queue.add(12);
queue.add(2)1
while (queue.isEmpty() false) ( System.out.printf("d", queue.remove());
Pick ONE option
11 10 22
5 122
Random Order as no Comparator provided.
25 10 11
12 22
22 12 11 1052
Gear Selection