Join Regular Classroom : Visit ClassroomTech

Interview Questions

Morgan Stanley Interview Questions + Coding Solutions – codewindow.in

Hot Topics Morgan Stanley Solution Technical Round Question 1 Difference between C++ and Java. Answer C++ Java 1.     C++ is a platform dependent language. Java is a platform independent language. 2.     C++ supports multiple inheritance. Java does not support multiple inheritance but it can be achieved using interfaces.  3.     C++ supports operator overloading. Java does […]

Morgan Stanley Interview Questions + Coding Solutions – codewindow.in Read More »

Flipkart – Overall Interview Questions + coding Solutions- codewindow.in

Hot Topics Filpkart Solution Technical Round Question 1 Find the second maximum element in an unsorted array of integers, using single for loop. Answer #include <iostream> using namespace std; int main() { int n; cin >> n; int arr[n]; for (int i = 0; i < n; i++) { cin >> arr[i]; } int first

Flipkart – Overall Interview Questions + coding Solutions- codewindow.in Read More »

Amazon Interview Questions + Coding Solutions – codewindow.in

Hot Topics Amazon Solution Technical Round Question 1 Given a string “aaabbbcc”, compress it, = “a3b3c2”. Given that output string’s length is always smaller than input string, you have do it in place. No extra space Answer #include <iostream> using namespace std; void compress(string str) { int len = str.length(); for (int i = 0;

Amazon Interview Questions + Coding Solutions – codewindow.in Read More »

Code Nation – Overall Interview Questions + coding Solutions – codewindow.in

Hot Topics Code Nation Solution Technical Round Question 1 You’re given a string that (may) be appended with a number at last. You need to find whether the length of string excluding that number is equal to that number. Answer You can check if a given string ends with a number and extract the number,

Code Nation – Overall Interview Questions + coding Solutions – codewindow.in Read More »

Bridgei2i Analytics – Overall Interview Questions + Coding Solutions – codewindow.in

Hot Topics Bridgei2i Analytics Solution Technical Round Question 1 (x-a).(x-b)…..(x-z)=? Answer The expression (x-a)(x-b) … (x-z) is the expanded form of a polynomial with degree equal to the number of terms, where each term is of the form (x-k) for some constant value “k”. The result of the expression would be a polynomial with degree

Bridgei2i Analytics – Overall Interview Questions + Coding Solutions – codewindow.in Read More »

D.E Shaw Interview Questions + Coding Solutions – codewindow.in

Hot Topics D.E Shaw Solutions Technical Round Question 1 Given 9 balls all of which weigh the same except for one, what is the minimum of weighings necessary to find the ball weighs more (or less). Answer The minimum number of weighings required to find the ball that weighs differently from the others is 3.

D.E Shaw Interview Questions + Coding Solutions – codewindow.in Read More »

Tiger Analytics – Overall Interview Questions + Coding Solutions – codewindow.in

Hot Topics Tiger Analytics Solution Technical Round Question 1 What software and design skills do you have? Answer Tell about the software and design skills with which you are confident enough to answer. Question 2 How to reverse strings with changing position? Answer #include <bits/stdc++.h> using namespace std; int main() { string s,str; cout<<"Enter the

Tiger Analytics – Overall Interview Questions + Coding Solutions – codewindow.in Read More »

Incture Interview Questions +Coding Solutions – codwindow.in

Hot Topics Incture Solution Technical Round Question 1 What is the base class of Exceptions and error? Answer In Python, the base class for exceptions and errors is the Exception class. It is defined in the builtins module and is the root of the exception hierarchy in Python. All exceptions and errors in Python are

Incture Interview Questions +Coding Solutions – codwindow.in Read More »

Commvault Systems Overall Interview Questions + Coding Solution – codewindow.in

Hot Topics Commvault Systems Solution Technical Round Question 1 Address arithmetic in K &amp. Answer Address arithmetic in C refers to the manipulation of pointers, which are variables that hold memory addresses. The main use of address arithmetic is to traverse arrays and other data structures in memory. Question 2 Find the smallest number, greater

Commvault Systems Overall Interview Questions + Coding Solution – codewindow.in Read More »

Teg Analytics Overall Interview Questions + Coding Solutions – codewindow.in

Hot Topics Teg Analytics Solution Technical Round Question 1 Mostly about projects and sql basics Answer SQL (Structured Query Language) is a standard language used to interact with relational databases, allowing you to manipulate and query data stored in tables. Some basic SQL concepts include: SELECT – used to retrieve data from a database table

Teg Analytics Overall Interview Questions + Coding Solutions – codewindow.in Read More »