Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

GE Interview Questions
Questions Answers Views Company eMail

Tell about automation object model(Aom) in qtp?

6 19545

Tell about descriptive programing in qtp8.2?

4 10476

what is the abbrivation of .mtr in action reposirtory?

8 15363

How is Siebel 7.x data model is different from Siebel 6.0 data model?

3 6392

where you maintain the test cases for the project in automation Testing using Test director?

2 7388

how does you configure test cases in testdirector in automation Testing?

1 7274

how does you execute the test cases in Testdirector?

1 9633

What is Performance tuning in Informatica?

1 43647

What types of CMOS memories have you designed? What were their size? Speed? Configuration Process technology?

3702

How many rounds of interviews has the USA company conducted? what are they?

2555

What are the technical reasons for soaking transformers for various times before allowing them to pick load after a fault ?

4 55519

validation code / function to allow only NUmbers in a text box

3 11423

The table tbl_sites contains the following data: ----------------------------------------------------- Userid sitename country ------------------------------------------------------ 1 sureshbabu indian 2 PHPprogrammer andhra 3 PHP.net usa 4 PHPtalk.com germany 5 MySQL.com usa 6 sureshbabu canada 7 PHPbuddy.com pakistan 8. PHPtalk.com austria 9. PHPfreaks.com sourthafrica 10. PHPsupport.net russia 11. sureshbabu australia 12. sureshbabu nepal 13. PHPtalk.com italy Write a select query that will displayed the duplicated site name and how many times it is duplicated?

4 9782

what is the winrunner framework?

1 5007

How we load the test script into testdirector

2 10541

Post New GE Interview Questions


GE Interview Questions


Un-Answered Questions

What is the syntax for offline project creation?

200


Have you set up a back ground job ? How to create a background job without a variant ?

1055


Contrast oop and soa. What are tenets of each16. How does the xmlserializer work? What acl permissions does a process using it require?

995


What language is used in mysql?

1001


Explain what is conversion optimizer in adwords?

287


what are the software and hardware requirements for installing mq on windows?

1011


Please colleagues I need to choice a proper hopper shape for a Fertilizer bulk blender flowing throut a high humidity raw material like zeolite, so we are in doubt whether use squard or rectangular hopper shape to avoid the so call voul effect that can create obstruction

1795


Why can't I invoke the ResultSet methods afterLast and beforeFirst when the method next works?

1225


Which keyword is used to accept variable number of parameters?

1133


How to increase stack limit in w3wp.exe?

1062


What is the difference between select and selectmany?

953


I have 5 save buttons in 5 tabs . The tabs are placed one after the other. My object repository have these added as 5 save buttons with name sav1, save 2, save 3 , save 4, save 5 .all are getting highlighted from OR but they are not getting clicked. After spying each button all the properties are same except First button Index 0 html id:=btnSaveTab1 outerhtml:=", Second button "html id:=btnSave "outerhtml:=", Third button "html id:=", outerhtml:=",

1890


How node.js and javascript are related?

461


What is e-r model in the dbms?

1066


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)

2985