Real interview questions from Tech mahindra company. Includes theoretical concepts and coding problems.
What is the difference between monolithic architecture and microservices architecture?
Monolithic architecture is a traditional approach where all components of an application are built together as a single unit, whereas microservices architecture is a modern approach where an application is broken down into smaller, independent services that communicate with each other.
What are the benefits of using Agile methodology in software development?
The benefits of using Agile methodology include increased flexibility, faster time-to-market, improved collaboration, and enhanced customer satisfaction.
What is the purpose of a design pattern in software development?
The purpose of a design pattern is to provide a proven solution to a common problem, making it easier to develop maintainable, flexible, and scalable software systems.
What is the difference between a hash table and a binary search tree?
A hash table is a data structure that stores key-value pairs in an array using a hash function, whereas a binary search tree is a data structure that stores nodes in a tree-like structure, allowing for efficient searching, inserting, and deleting of nodes.
What are the principles of object-oriented programming?
The principles of object-oriented programming include encapsulation, inheritance, polymorphism, and abstraction.
What is the difference between a queue and a stack?
A queue is a First-In-First-Out (FIFO) data structure, whereas a stack is a Last-In-First-Out (LIFO) data structure.
What is the purpose of a database index?
The purpose of a database index is to improve the speed of data retrieval by providing a quick way to locate specific data.
What is the difference between a left join and a right join in SQL?
A left join returns all records from the left table and the matched records from the right table, whereas a right join returns all records from the right table and the matched records from the left table.
What is the purpose of a transaction in a database?
The purpose of a transaction is to ensure that a series of operations are executed as a single, all-or-nothing unit, maintaining data consistency and integrity.
What is the difference between a stored procedure and a function in a database?
A stored procedure is a set of SQL statements that can be executed repeatedly, whereas a function is a set of SQL statements that returns a value.
What are the benefits of using a version control system?
The benefits of using a version control system include tracking changes, collaborating with team members, and maintaining a history of changes.
What is the purpose of a build tool in software development?
The purpose of a build tool is to automate the process of building, testing, and deploying software applications.
What is the difference between a continuous integration and continuous deployment?
Continuous integration is the practice of automatically building and testing code changes, whereas continuous deployment is the practice of automatically deploying code changes to production.
What are the principles of test-driven development?
The principles of test-driven development include writing tests before writing code, writing tests that are independent and self-validating, and refactoring code to make it more maintainable.
What is the purpose of a mocking framework in unit testing?
The purpose of a mocking framework is to isolate dependencies and make unit tests more efficient and reliable.
What is the difference between a unit test and an integration test?
A unit test is a test that focuses on a specific unit of code, whereas an integration test is a test that focuses on how multiple units of code interact with each other.
What are the benefits of using a cloud-based infrastructure?
The benefits of using a cloud-based infrastructure include scalability, flexibility, and cost-effectiveness.
What is the purpose of a load balancer in a distributed system?
The purpose of a load balancer is to distribute traffic across multiple servers to improve responsiveness, reliability, and scalability.
What is the difference between a relational database and a NoSQL database?
A relational database is a database that uses a fixed schema and is optimized for transactions, whereas a NoSQL database is a database that uses a flexible schema and is optimized for big data and real-time web applications.
What are the principles of RESTful API design?
The principles of RESTful API design include using HTTP methods, using meaningful resource names, and using standard HTTP status codes.
What is the purpose of a message queue in a distributed system?
The purpose of a message queue is to decouple components and allow them to communicate with each other asynchronously.
What is the difference between a synchronous and an asynchronous communication?
Synchronous communication is a communication where the sender waits for a response from the receiver, whereas asynchronous communication is a communication where the sender does not wait for a response from the receiver.
Write a Java function to reverse a linked list
publicclassNode {
int data;
Node next;
publicNode(int data) {
this.data = data;
this.next = null;
}
}
publicclassLinkedList {
Node head;
publicvoidreverse() {
Nodeprev=null;
Nodecurrent= head;
Nodenext=null;
while (current != null) {
next = current.next;
current.next = prev;
prev = current;
current = next;
}
head = prev;
}
}
Write a Python function to find the maximum value in a binary tree
classNode: def__init__(self, data): self.data = data self.left = Noneself.right = Nonedeffind_max(root): if root isNone: returnfloat('-inf') else: returnmax(root.data, find_max(root.left), find_max(root.right))
Write a JavaScript function to check if a string is a palindrome
functionisPalindrome(s) {
let left = 0;
let right = s.length - 1;
while (left < right) {
if (s[left] !== s[right]) {
returnfalse;
}
left++;
right--;
}
returntrue;
}
Write a C++ function to find the minimum value in an array
intfind_min(int arr[], int n) {
int min = arr[0];
for (int i = 1;
i < n;
i++) {
if (arr[i] < min) {
min = arr[i];
}
}
return min;
}
Write a Java function to check if a number is prime
publicclassMain {
publicstaticbooleanisPrime(int n) {
if (n <= 1) {
returnfalse;
}
for (inti=2;
i <= Math.sqrt(n);
i++) {
if (n % i == 0) {
returnfalse;
}
}
returntrue;
}
}
Write a Python function to find the first duplicate in an array
deffind_first_duplicate(arr): seen = set() for num in arr: if num in seen: return num seen.add(num) returnNone
Write a JavaScript function to find the maximum sum of a subarray
functionmaxSubArraySum(a) {
let size = a.length;
let max_so_far = -Infinity;
let max_ending_here = 0;
for (let i = 0; i < size; i++) {
max_ending_here = max_ending_here + a[i];
if (max_so_far < max_ending_here) {
max_so_far = max_ending_here;
}
if (max_ending_here < 0) {
max_ending_here = 0;
}
}
return max_so_far;
}
Write a C++ function to find the minimum window substring
string minWindow(string s, string t){
unordered_map<char, int> tCount;
for (char c : t) {
tCount[c]++;
}
int required = tCount.size();
int left = 0, right = 0;
int formed = 0;
unordered_map<char, int> windowCounts;
int ans = INT_MAX;
string ansStr;
while (right < s.size()) {
char c = s[right];
windowCounts[c]++;
if (tCount.find(c) != tCount.end() && windowCounts[c] == tCount[c]) {
formed++;
}
while (left <= right && formed == required) {
c = s[left];
if (right - left + 1 < ans) {
ans = right - left + 1;
ansStr = s.substr(left, right - left + 1);
}
windowCounts[c]--;
if (tCount.find(c) != tCount.end() && windowCounts[c] < tCount[c]) {
formed--;
}
left++;
}
right++;
}
return ansStr;
}
Write a Java function to find the longest common prefix
public String longestCommonPrefix(String[] strs) {
if (strs.length == 0) {
return'';
}
for (int i = 0;
i < strs[0].length();
i++) {
char c = strs[0].charAt(i);
for (int j = 1;
j < strs.length;
j++) {
if (i == strs[j].length() || strs[j].charAt(i) != c) {
return strs[0].substring(0, i);
}
}
}
return strs[0];
}
Write a Python function to find the maximum product of three numbers