Join Regular Classroom : Visit ClassroomTech

interview coding question

Exxon Mobil Overall Interview Questions – codewindow.in

Hot Topics Exxon Mobil Solution Technical Round Question 1 Tell us about your final year project and what was your role? Answer Tell about the project you did and your role in that project. Question 2 What is static variable? What is its use? Answer A static variable creates a single copy of the variable […]

Exxon Mobil Overall Interview Questions – codewindow.in Read More »

PayU overall Interview Questions + Coding Solutions – codewindow.in

Hot Topics PayU Solution Technical Round Question 1 Remove all the duplicate elements from string array. Answer #include <stdio.h> #include <string.h> int main() { char string_array[][10] = {"apple", "banana", "apple", "orange", "banana"}; int n = sizeof(string_array) / sizeof(string_array[0]); int i, j, k; for (i = 0; i < n; i++) { for (j = i

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

ZOHO Overall Interview Questions + Coding Solutions – codewindow.in

Hot Topics ZOHO Solution Technical Round Question 1 What is the difference between interface and abstract class? Answer Interface Abstract class 1.    Interface supports the concept of multiple inheritance. Abstract class doesn’t support the concept of multiple inheritance. 2.    Interface has only abstract methods. Abstract class can have non-abstract method but it must have at

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

New Coding Program | Set-6 SOLVED | codewindow.in

Previous Question Program 1. Geological Sorting A team of geologists attempting to measure the difference in carbon-dated volcanic materials and non-volcanic materials of the same carbon-dated age in order to establish a base for testing.You are given 2 arrays, volcanic and nonVolcanic. Write a program to find a list of materials with identical dates between

New Coding Program | Set-6 SOLVED | codewindow.in Read More »

Anagrams | Coding Problem Solve | codewindow.in

Anagram An anagram is a word, phrase or name formed by rearranging the letters of another word, phrase or name.Write a function to check if two given strings are anagrams or not. Return “yes” if they are anagrams, otherwise return “no”. Input Specifications:input1: the first stringinput2: the second string Output Specification:Return “yes” if they are

Anagrams | Coding Problem Solve | codewindow.in Read More »