Join Regular Classroom : Visit ClassroomTech

interview experience

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

Hot Topics Latenview Analytics Solution Technical Round Question 1 Reverse a string Answer Here’s a simple implementation of a reverse string algorithm in C: #include <stdio.h> #include <string.h> void reverse(char *str) { int len = strlen(str); int i; for (i = 0; i < len / 2; i++) { char temp = str[i]; str[i] = […]

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

Adobe Overall Interview Questions + Coding Solutions – codewindow.in

Hot Topics Adobe Solution Technical Round Question 1 There is an array of size n which consists of any numbers from 1 to n .Find the numbers in the array which are appear more than once. Answer #include <stdio.h> void printDuplicates(int arr[], int n) { int i; int count[n]; // Initialize count array with 0

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

Linkedin Overall Interview Questions + Coding Solutions- codewindow.in

Hot Topics Linkedin Solution Technical Round Question 1 Find the second largest element in a Binary Search Tree. Answer The second largest element in a Binary Search Tree can be found by traversing the tree in the following steps: Start by initializing a variable to store the current node, and set it to the root

Linkedin Overall Interview Questions + Coding Solutions- codewindow.in Read More »

Optum – Overall Interview Questions + Coding Solutions – codewindow.in

Hot Topics Optum Solution Technical Round Question 1 Data structure for finding all files under a drive. Answer For finding all files under a drive, a tree-like data structure can be used, where the root node represents the drive and each child node represents a subdirectory. The data structure can be implemented as a file

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

Salesforce – Overall Interview Questions + Coding Solutions – codewindow.in

Hot Topics Salesforce Solution Technical Round Question 1 Reverse the words in a string. Answer #include <bits/stdc++.h> using namespace std; void reverseWords(string s){ vector<string> tmp; string str = ""; for (int i = 0; i < s.length(); i++) { if (s[i] == ‘ ‘) { tmp.push_back(str); str = ""; } else str += s[i]; }

Salesforce – Overall 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 »

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 »

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 »