- Q Two forces are successfully influencing the education of a cultivated man: art and science. Both are united in the book.
- Q What is excise & service tax? what is the difference?
- Q What is salary computation? how to file the salary returns?
- Q What is formed when white phosphorus is heated at 540 K in the absence of air?
- Q How will you decide how many storage arrays can be attached to a single host?
- Q Exists clause is used for a) Testing whether a given set is empty or not b) Testing whether given set is valid c) Testing whether a given set is invalid d) Testing whether a given set is exists
- Q Grave's disease is caused due to?
- Q Name the method, to expand & collapse nodes in a Jtree?
- Q How can you change the current working directory using an instance of the File class called FileName? a. FileName.chdir("DirName"). b. FileName.cd("DirName"). c. FileName.cwd("DirName"). d. The File class does not support directly changing the current directory.
- Q Can JavaScript do change the current browser window size, location, or options ?
- Q Given a number 'N' and an array a[ ], find the number of possibilities of a[i]-a[j]=N such that i>j. (Could be solved in O( n ) using a HashMap).