2. What do you enjoy about your work place? 3. What is your work ethic? Give an example when your work ethic was challenged and how you dealt with it.
3763Post New Baidu Interview Questions
Name some python libraries?
q)what are the validations in sql*loader
How can we overcome by loops? And also is it possible, one user can different universe? : sap bobi
How does fertilizers can be made?
What is different between the data warehouse and data mart?
How to add a system menu item for the "right click" of the application's task bar icon?
Explain is it the job of a business analyst or systems analyst to draw the class diagram?
What is meant by LDAP users?
Explain Structural characterization of soundness?
What is cli in linux?
What is short-end fiscal year?
How can I remove the leading spaces from a string?
Give an algorithm for the following problem. Given a list of n distinct positive integers, partition the list into two sublists, each of size n/2, such that the difference between the sums of the integers in the two sublists is minimized. You may assume that n is a multiple of 2.
What is difference between placeholder and variable ?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }