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

Polaris Interview Questions
Questions Answers Views Company eMail

WHAT IS FACT LESS FACT TABLE?

6 14784

HOW MANY TABLES ARE EXISTED IN WEBI REPORT?

3 7874

source name sal aaaa 2000 bbbb 3000 abcd 5000 Target name sal aaaa 2000 bbbb 3000 abcd 5000 total 10000 how to get total as new row and sum as 10000 thanks

4 6689

i have two sources two flatfiles same structure one flatfile contain 100 million recs another flatfile contain 10 million recs i have to connect single target(performance oriented answer) what are the steps we have to do this scenario

4 7108

what is agile testing with example

3 8153

I faced following questions in Polaris Interview. 1. Tell me about u r current organization 2. what is Black box testing? 3. what is white box testing? 4. What is Functional Testing? 5. What is difference between Black box & functional ? 6. what is test plan? 7. what is test strategy? 8. what is difference between Test plan & test strategy? 9. What is smoke testing ? 10 what is sanity testing? 11. who will perform smoke testing? 12. Explain about Agile process? 13. How much you know about QTP? ( I mentioned in my resume as Exposure on QTP) 14. Explain about u r current project? 15. What is the Requirement Traceability Matrix? 16. Can u draw the template for Requirement Traceability Matrix? 17. What is Ad-hoc Testing? 18. What is difference between ReTesting and Regression Testing. 19. Can u explain about Bug life cycle? 20. How can u make sure whether all requirements are covered or not? 21. Can u explain biggest complexity in current project? 22. what is difference between bug severity and priority? 23. Which bug tracking tool is u r using? 24. can u give one example for High severity and low priority bug? 25. can u give one example for High priority and low severity bug? 26. What is security Testing?

5 14153

Main diff between varray and nested tablea

3 8512

What is the difference between static synchronize() metod and synchronize() method?

1 2857

How to retrieve a second highest salary from a table? Note:Suppose salaries are in duplicate values eg: Name Sal Malli 60000 Pandi 60000 Rudra 45000 Ravi 45000

10 13084

why Bean class implements all business method of Remote interface but bean bean class not implements the remote interface

2012

what is the use of module in weblogic

1 2568

difference between smoke and sanity testing? help me with the clear answer...

5 8168

How to replace the exact word in vi editor?? suppose a file contains words like amaze,amazed,amazement in some of the line.But i want to replace only 'amaze' with delight but don't wanna replace amazed or amazement. thanks

6 10643

Difference between Function and Sub routine?

1912

if source contain 10records how you identify header and footer

2 6014

Post New Polaris Interview Questions


Polaris Interview Questions


Un-Answered Questions

mutarotation is observed when phenol and pyridine both are present but phenol or pyridine alone cannot show mutarotation-explain why?

3700


How is the performance of tapestry?

67


What is pirate 2.0 update?

453


What is a merge in datastage?

756


explain sub-type and sub class? atleast u have differ it into 4 points?

1822






Ledger Enteries

1844


How do you declare a variable in c#?

509


What is the importance of hibernate mapping file?

158


What is the primary aspect of CICS?

646


Name some cache memory components?

3


How long does a scrum cycle last? Who are involved in scrum cycle?

5


What is a cpa?

693


Mention how you can view the Books of Accounts in Tally ERP 9?

667


What is $$ in sql?

541


Question 5 [15] Consider the following classes, illustrating the Strategy design pattern: import java.awt.*; abstract class Text { protected TextApplet tA; protected Text(TextApplet tApplet) { tA = tApplet; } abstract public void draw(Graphics g); } class PlainText extends Text { protected PlainText(TextApplet tApplet) { super(tApplet); } public void draw(Graphics g) { g.setColor(tA.getColor()); g.setFont(new Font("Sans-serif", Font.PLAIN, 12)); g.drawString(tA.getText(), 20, 20); } } class CodeText extends Text { protected CodeText(TextApplet tApplet) { super(tApplet); } public void draw(Graphics g) { g.setColor(tA.getColor()); g.setFont(new Font("Monospaced", Font.PLAIN, 12)); g.drawString(tA.getText(), 20, 20); } } public class TextApplet extends java.applet.Applet { protected Text text; protected String textVal; protected Color color; public String getText() { return textVal; } public Color getColor() { return color; } public void init() { textVal = getParameter("text"); String textStyle = getParameter("style"); String textColor = getParameter("color"); if (textStyle == "code") text = new CodeText(this); else text = new PlainText(this); if (textColor == "red") color = Color.RED; else if (textColor == "blue") color = Color.BLUE; else color = Color.BLACK; } public void paint(Graphics g) { text.draw(g); 10 } } The Text class is more complicated than it should be (there is too much coupling between the Text and TextApplet classes). By getting rid of the reference to a TextApplet object in the Text class and setting the colour in the paint() method, one could turn the Text class into an interface and simplify the strategy classes considerably. 5.1 Rewrite the Text and PlainText classes to do what is described above. (6) 5.2 Explain the consequent changes that are necessary to the TextApplet class. (4) 5.3 Write an additional strategy class called FancyText (to go with your simplified strategy classes) to allow fancy text to be displayed for the value "fancy" provided for the style parameter. It should use the font Font ("Serif", Font.ITALIC, 12). (3) 5.4 Explain what changes are necessary to the TextApplet class for this. (2)

1814