Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

DEK Interview Questions
Questions Answers Views Company eMail

1. Questions on probability 2. Questions on statistics (mainly growth rates, market shares, etc.) 3. Questions on general logics 4. Evaluate strengths and weekness of proposed product All questions are open test

4282

Post New DEK Interview Questions




Un-Answered Questions

Why don't we write a constructor in a servlet?

586


Please explain what are an object and a class?

527


In what is the ready pin of a microprocessor used

686


Suppose I get a “blog returned invalid data” error message. What do I do?

410


Explain about message passing in RPC?

519






What is AngularUI router and how it is different from ngRoute?

1020


How and what are closures implemented in perl?

488


How can I sort items in a ListBox in WPF?

156


What is type assertions in typescript?

1


How to repeat a string to a specific number of times in php?

524


how to make concurrent program end with warning?

747


Does csrf token change?

522


Should PPC be used by big brands only?

164


How do I put text onto a picture?

137


SET is the ANSI standard for variable assignment, SELECT is not. SET can only assign one variable at a time, SELECT can make multiple assignments at once. If assigning from a query, SET can only assign a scalar value. If the query returns multiple values/rows then SET will raise an error. SELECT will assign one of the values to the variable and hide the fact that multiple values were returned (so you'd likely never know why something was going wrong elsewhere - have fun troubleshooting that one) When assigning from a query if there is no value returned then SET will assign NULL, where SELECT will not make the assignment at all (so the variable will not be changed from it's previous value) As far as speed differences - there are no direct differences between SET and SELECT. However SELECT's ability to make multiple assignments in one shot does give it a slight speed advantage over SET.

2147