Join Regular Classroom : Visit ClassroomTech

Interview Questions

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 »

PWC Interview Questions + Coding Solutions – codewindow.in

Hot Topics PWC Solution Technical Round Question 1 What is the result if we do following Null + 90? Answer The result of adding a null value and 90 will be null or undefined. In most programming languages, the result of an operation involving a null or undefined value is also null or undefined. This

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

Texas Instrument Interview Questions + Coding Solutions – codewindow.in

Hot Topics Texas Instrument Solution Technical Round Question 1 In how many ways one can design NOT gate? Describe them briefly. Answer There are several ways to design a NOT gate: Using a transistor: A NOT gate can be designed using a bipolar junction transistor (BJT) or a field-effect transistor (FET) in its common-emitter, common-base,

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

Deutsche Bank Interview Questions + Coding Solutions – codewindow.in

Hot Topics Deutsche Bank Solution Technical Round Question 1 I have 10 weights. 9 of them are equal, 1 is of a different weight. You only have a way to compare weights of items with other items. How many moves would it take you to determine the rogue weight? Answer To determine the rogue weight,

Deutsche Bank 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 »