Which British Governor-General introduced Postage Stamp in India? (a) Lord Dalhousie (b) Lord Auckland (c) Lord Canning (d) Lord William Bentinck
5 41915Which of the following is the best conductor of electricity ? (a) Copper (b) Aluminium (c) Gold (d) Silver
53 109499The largest source of revenue in India is (1) Sales tax (2) Excise duty (3) Income tax (4) Corporate tax
22 110219. In which respect have the Centre-State relations been specifically termed as ‘municipal relations’? (a) Centre’s control of the State in the legislative sphere (b) Centre’s control of the State in financial matter (c) Centre’s control of the state in the administrative sector (d) Centre’s control of the state in the planning process
2 12430Role of Finance Manager in matters of dividend policy? Alternatives and factors that you may consider before finalizing dividend policy?
4 13461Contact a system development program in your organization. Research how they analyzed their SYSTEM OF INTEREST (SOI), its OPERATING ENVIRONMENT, and their respective system elements. How was this analysis reflected in the SOI architecture?
4126how to answer - Wat will u do if not selected????? Can we say that we will go to engineering colleges.....
18 28003why the voltage transmission is always in a multiple of 11? e.g. 110 V, 220 V, 33 kVA, 11 kVA
16 45804Post New IAF Interview Questions
hi guys, pls tell me for testing institution training hub, hitech city is best or not?
how many maximum enter 2mm Dia solid cylindrical pipe into 8mm Dia hollow cylindrical pipe. give answer with calculation.
What has been your biggest achievement in life so far?
How can I open a EXCEL file from QTP Resultviewer with reporter.ReportEvent function call. Example: Test files for details click "here". And clicking "Here" in the resultviewer will open a local EXCEL FILE.
How to upgrade magento?
How we can add the CSS in ASP.Net MVC?
How is data stored in sql?
if we set slow sync as you suggest in answers on the many online forums you visit, would not we be opening ourselves up to blurred shots when the shutter speed gets significantly below 1/60? : Adobe flash
What do you understand by soa?
What is domain and gateway node?
How do I exit the wrapper?
How long should a session last?
Explain how to develop mobile applications using microsoft mobile internet toolkit (mmit) or .net mobile? : Microsoft dot net mobile
What is ole data type?
3.2 Consider the following class: public class Point { protected int x, y; public Point(int xx, int yy) { x = xx; y = yy; } public Point() { this(0, 0); } public int getx() { return x; } public int gety() { return y; } public String toString() { return "("+x+", "+y+")"; } } Say you wanted to define a rectangle class that stored its top left corner and its height and width as fields. 3.2.1 Why would it be wrong to make Rectangle inherit from Point (where in fact it would inherit the x and y coordinates for its top left corner and you could just add the height and width as additional fields)? (1) 8 Now consider the following skeleton of the Rectangle class: public class Rectangle { private Point topLeft; private int height, width; public Rectangle(Point tl, int h, int w) { topLeft = tl; height = h; width = w; } public Rectangle() { this(new Point(), 0, 0); } // methods come here } 3.2.2 Explain the no-argument constructor of the Rectangle class given above. 3.2.3 Write methods for the Rectangle class to do the following: • a toString() method that returns a string of the format "top left = (x, y); height = h; width = w " where x, y, h and w are the appropriate integer values. • an above() method that tests whether one rectangle is completely above another (i.e. all y values of the one rectangle are greater than all y values of the other). For example, with the following declarations Rectangle r1 = new Rectangle(); Rectangle r2 = new Rectangle(new Point(2,2), 1, 4); the expression r2.above(r1) should give true, and r2.above (r2) should give false. (You can assume that the height of a rectangle is never negative.) (2) (5)