- Q How many nominated members are there in the Rajya Sabha?
- Q Find which is greater? -8/5 or -7/4
- Q What is the use of Router and {{outlet}} tag in ember.js?
- Q The Law of Large Numbers is a principle which seeks to explain what, commonly considered inexplicable?
- Q The word ‘Citius’ in the motto of the Olympics ‘Citius, Altius, Fortius’ means:
- Q What are the risk factors need to be kept in mind while flying an aircraft?
- Q What do you think makes you different than other candidates?
- Q What is the requirement in MIMD ?
- Q What is Elocution?
- Q Is it necessary to register controller command in cmdreg table?
- Q Given the following code, what test would you need to put in place of the comment line? //place test here to result in an output of Equal public class EqTest{ public static void main(String argv[]){ EqTest e=new EqTest(); } EqTest(){ String s="Java"; String s2="java"; //place test here { System.out.println("Equal"); }else { System.out.println("Not equal"); } } } 1) if(s==s2) 2) if(s.equals(s2) 3) if(s.equalsIgnoreCase(s2)) 4)if(s.noCaseMatch(s2))