Development Support Engineer Interview Questions
0of 0 votesPhone screen for a software developer role in wireless:
1) What is Fourier Transorm?
2)What is Capacitor
3)What is Nyquist frequency ?
4) what is CDMA FDMA TDMA
0of 0 voteslist the file whose size greater than 1GB
0of 0 voteslist all zombie process
0of 0 votesGiven an array of elements and a value.....see that the sum of two elements of an array are equal to the value with minimum loop
0of 0 votesQuestions based on Ad hoc networks and their behavior
0of 0 votesDescribe MIMO and how the streams are combined at the receiver side.
0of 0 votesDescribe LTE and EvDO phy layer
0of 0 votesWrite a program to print hello world without using semi colon
0of 0 votes. There are 3 people on a tower which may collapse due to fire. King(78 kg),Queen(42kg) and Prince(36kg).There is a pulley on the tower with baskets tied to it on both the sides of rope around the pulley. There is a 30kg stone in one of the baskets. There can be two persons or a person and a stone or a person or a stone in the baskets keeping in mind that the weight difference is not more than 6kg else rope would break. You have to bring all the three on ground safely.
0of 0 votesIf you were writing a function in a calculator to compute sine/cosine/tangent, and all you had was basic math operations (+, -, *, /) how would you do it? You cannot use lookup tables.
0of 0 votesYou have a fair coin. Make it unfair with win and loose probability p and (1-p) respectively, where p is greater than 0 less than 1
0of 0 votesfind the maximum of three integers using conditional operator ?
0of 0 votesWrite a C function for unsigned power(double x, unsigned int n) using minimum number of multiplications. Count the number of multiplications used.
0of 0 votesFind closest ancestor of two nodes in a binary tree.
0of 0 votes1) Find all permutations of a string.
2) Improve it so that the permutations are not repeated, Eg=> string is "aaaa"
Answer should be just aaaa once not 4! times.
0of 0 votesGive a practical scenario and code scenario (please not Producer-Consumer) where Deadlock occurs. Full detailed discussion on deadlocks only.
0of 0 votesWhat data structure to use to store all names in Sunnyvale - Hash table or Tree? When to use Hash table and when to use tree.
0of 0 votesWhat is difference between named pipes and unnamed pipes ?
0of 0 votesWhat is difference between wake_up ( ) and wake_up_interruptible ( ) APIs in linux kernel ?
When should should use which one, how it should be decided ?
0of 0 votesWhat is difference between sleep_on ( ) and interruptible_sleep_on ( ) APIs in linux kernel ?
When should should use which one, how it should be decided ?
0of 0 votesIf you have 50G of log file with timestamp messagetype and message body info find the logs that have message type "FATAL" logged between 3-5 pm
0of 0 votesGiven two sorted integer arrays A and B of size n and m respectively, find the kth smallest element in the union of A and B in O(lg(n)+lg(m)) time....
0of 0 votesGiven an array of integers(both positive and negative) divide the array into two parts(sub-arrays) such that the difference between the sum of elements in each array is minimum????
0of 0 votesWhat is a time you failed or caused a problem that impacted coworkers or customers?
0of 0 votesWhat is a bad online buying expierience?
0of 0 votesTable CustomerOrder, columns customerid, orderid, orderdate.
Give a query for customers that placed orders today
Query to get the day in the last 30 days with the most orders
What is an index?
Why not add an index to all the columns?
What data structure to store index data?
Why a btree?
* Employees
o id
o name
o department_id
o start_date
o salary
* Departments
o id
o department
get max salary
get all names and dept
get dept that spends most on salary:
Write a program/script to find a file in the current directory and sub-directories, tools like find and grep are missing.
0of 0 votesHe showed me a puzzle with some domino like rectangular blocks joined together ( he had brought the actual blocks ) and a pattern on a card that has to be formed using the given blocks. There could be any number of lines in the pattern, and building block was composed of exactly 3 rectangles.
Assume 2 hyphens(--) as 1 (domino) block
So building blocks are something like this---- -- -- -- --So each building block has 3 blocks in it..
Now using such given building blocks we have to form a pattern like this..-- ------ ----
0of 0 votesReplace a word "Old" with word "new" in all the files of the directory. Solution can be a linux script also.
0of 0 votesIn a particular directory, list the 15 recently modified files. ls -ltr | tail -15.
0of 0 votesFind the median in B-tree of order 4? Note that as the tree has order 4, it is not a binary tree.
