You have 2 light bulbs. You are in multistory building such that if you drop a bulb from a floor of a certain height or higher the bulb will break: for ex: if the bulb will break at a minimum height of 10th floor, then the bulb will break if dropped only if dropped from a floor higher than tenth floor. it will not break if dropped from ninth floor or less. using the two bulbs how will you figure out at which floor will the bulb break?
Technical Applications Specialist Interview Questions
15,330 technical applications specialist interview questions shared by candidates
Write a Java program to count the number of occurances of each number in a series of numbers.
If a 3x3 white cube is painted blue on its face and then cut into 1x1 cube, what are the chances of picking a cube with a blue side from a bag
how much hours u can work a day?
Basic HR questions in the Video Interview. 1. Why does this position interest you? 2. What about you experience makes you fit for this position? 3. Give an example how you tackled multiple responsibilities? 4. GPA 5 . Visa status
You have 20 balls all equal in size. They all weigh the same except for one. How do you identify the one that weighs less or more?
What is your weakness?
What type of TV shows do you watch? Why do you think you can become an Application Specialist? Do you have what it takes to become an Applications Specialist? What makes you special? If you have no IT background, do you feel you can bring your talents to Meditech? Do you like to give presentations?
What is mutex, semaphore? What is best sorting algorithm, its time complexity? Fibonacci which skips one digit eg: 5!=5x3x1 Exceptional handling Function overriding Inheritance concepts Race condition, life stages of thread A lot of code snippets asking to predict output Birthday Paradox problem How to check if a number can be expressed in powers of 2? Using bitwise op OO model for a college including professor students etc
The first 12 digits of pi are 314159265358. We can make these digits into an expression evaluating to 27182 (first 5 digits of e) as follows: 3141 * 5 / 9 * 26 / 5 * 3 - 5 * 8 = 27182 or 3 + 1 - 415 * 92 + 65358 = 27182 Notice that the order of the input digits is not changed. Operators (+,-,/, or *) are simply inserted to create the expression. Write a function to take a list of numbers and a target, and return all the ways that those numbers can be formed into expressions evaluating to the target For example: f("314159265358", 27182) should print: 3 + 1 - 415 * 92 + 65358 = 27182 3 * 1 + 4 * 159 + 26535 + 8 = 27182 3 / 1 + 4 * 159 + 26535 + 8 = 27182 3 * 14 * 15 + 9 + 26535 + 8 = 27182 3141 * 5 / 9 * 26 / 5 * 3 - 5 * 8 = 27182
Viewing 1 - 10 interview questions