- Q What is the relationship between equals method and == in scala? differentiate scala’s == and java’s == operator?
- Q Who introduced Relational Database Model?
- Q What is the difference between new() and malloc()
- Q What are all the procs you know?
- Q Define handle.
- Q Difference between test object and run time object?
- Q Which function allows you to instantiate an object given its programmatic identifier or progid?
- Q What do you understand by Organization structure in SAP Sales and Distribution
- Q Illustrate the use of the Caret.
- Q What is the function of entry sequenced data set?
- Q What is the output of the prg. import java.util.*; class Ques{ public static void main (String args[]) { String s1 = "abc"; String s2 = "def"; Stack stack = new Stack(); stack.push(s1); stack.push(s2); try{ String s3 = (String) stack.pop() + (String) stack.pop() ; System.out.println(s3); }catch (EmptyStackException ex){} } } A) abcdef B) defabc C) abcabc D) defdef