On a given day, a bank had 16000 cheques returned by customers. Inspection of the first 800 cheques indicated that 100 of those 800 had errors and were therefore the available immediately for data processing. On this basis, hwo many cheques would be available immediately for data processing on that day?
6 31018i want all the questions asked interview in tech mahindra also the written exam papers in tech mahindra what is the future in the mahindra for the fresheres in mechanical? you future visiting area for campus
3 16987A money Bill in the Indian Parliament can be introduced only with the recommendation of the (a) President (b) Prime Minister (c) Speaker of Lok Sabha (d) Union Finance Minister
14 34396The Indian National Army (I.N.A.) came into existence in 1943 in (a) Japan (b) Then Burma (c) Singapore (d) Then Malaya
7 32284Debenture holders of a company are its (a) Shareholders (b) Creditors (c) Debtors (d) Directors
4 32442The Indian Income tax is 1 Direct and proportional 2 Indirect and proportional 3 Direct and progressive 4 Indirect and progressive
5 25575Post New MAHINDRA Interview Questions
What if I even have associate existing db instance that i’d wish to cover with a reserved instance?
What is difference between vlookup and hlookup?
How do I do multiple colors of text?
How to get Retrieving the Request URI ?
Write a program to convert all strings in list to integers?
What is the purpose of store statement?
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)
Write a sql query to get the third highest salary of an employee from employee_table?
When a project is being performed under contract, the product description is provided by which of the following? A. The buyer B. The project sponsor C. The project manager D. The contractor
Is a server a virtual machine?
Explain what is an interface and what is an abstract class? Please, expand by examples of using both. Explain why?
Tell me which tool installs dll on local computer and installs the windows service in transactional manner?
What is sql table?
What is negative testing? How is it different from positive testing?
What are the inheritance mapping models in hibernate?