many functional aspects of salesforce
Software Senior Interview Questions
75,746 software senior interview questions shared by candidates
is anagram design apartment.com or redfin.com question about refactoring the code
Interviewer asked some come multithreading questions
Q1 - Opened an incomplete piece of code on Hackerrank. Some classes and functions were written incompletely - Shape, Square, Circle, Line. It involved concepts of virtual function, pointers, polymorphism, deleting an object when its scope ends, etc. Basic stuff.
This is a C++ question. Implement a class StockMarket in C++ that has the two following functions: class StockMarket { public: void addTrade(string stockName, int share); - This function keeps track the number of shares transacted for a stock by adding the trade information void printTop(int numberOfStock); - This function prints the top numberOfStock stocks that has the highest number of transacted shares } And here's a sample calling sequence that uses the above class: StockMarket stockMarket; stockMarket.addTrade("GOOGLE", 50); stockMarket.addTrade("APPLE", 150); stockMarket.addTrade("GOOGLE", 100); stockMarket.addTrade("MSFT", 250); stockMarket.addTrade("GOOGLE", 200); stockMarket.printTop(2); Expected output: GOOGLE 350 MSFT 250
Which two types of compilation can be used in Angular
Question on creating an array of first names and ordinal number combination from the input and sorting the String array chronologically, if duplicate first names found, sort based on the ordinal number (roman numerals). There were a few constraints mentioned for the sorting to be done. Another question on writing the various XPaths for a given XML files
1. Design a queue with a getMin() function
Given a class List with some virtual methods, how would I implement a sorted list?
was asked to write code in any language to go through array and find duplicate integers.
Viewing 2411 - 2420 interview questions