- Q What is project planning?
- Q The name Europe comes from where
- Q What are the build phases in Maven?
- Q GOI restricted travel to
- Q Why do you think people resist change and what is it anyway?
- Q For which does this Codebehind="MyCode.aspx.cs" is relevent to ?
- Q Do you think that your grades are indication of your academic achievement?
- Q What is the signification of S.T.P.?
- Q Sasan , Krishnapatnam & Tilaiya Ultra Mega Power Projects have been won by which company ?
- Q Can you explain how could anyone drop the index before loading the data in target in Datastage?
- Q What will be the result when you try to compile and run the following code? private class Base{ Base(){ int i = 100; System.out.println(i); } } public class Pri extends Base{ static int i = 200; public static void main(String argv[]){ Pri p = new Pri(); System.out.println(i); } } 1) Error at compile time 2) 200 3) 100 followed by 200 4) 100