my 1st friend gave me 1000 and 2nd gave me 500 i have loos
1000 rupees then i purchase some thing with the cost of 300
and gave 100 100 both friends 1st friend remaining 900 and
2nd remaining 400 900+400+300=1600 why
Answers were Sorted based on User's Feedback
Answer / vissu
Don't count what u spent because 300 rs including in your total amount
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / raashid
just count money left and money to left for giving
money left=900+400=1300
money to be given=200
total money=1300+200=1500
hence proved
| Is This Answer Correct ? | 3 Yes | 5 No |
Answer / jhansi
this is reverse calculation
if we take any numbers
ex:900 200
he lost 900
take 200 from one more friend
now he spent 100 for marketing
remaining 100 give to each friend 50
now 850+150+200=1200
but the original amount is 900+200=1100
100 variation is there
here the question is correct
the approach for calculation is wrong
if we take any number like above we saw 100 variation
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / gokilakarthi
This is based on average...
As two persons had given and his exps include rs. 1600
Avg= n/2
=1600/2=800
The amount will be 800+800
First person the amount to be given is
Rs. 900
900-800 = 100 yet to be paid
With another 800 he could pay this 100 to first friend
800-100=700
Balance he has 700
For second friend he has to give 400
700-400=300
Briyani cost 300... So nil balance...
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / hana
A=1000
B=500
Now just less 1000-100=900
Now less 500 -300 =200
100 +200 =300
I gave 100 to A and I gave 100 to B
Now want give 900 to A want to give 400
900 +400=1300
now add 1300+300 =1600/= simple
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / surya
in total u got 1500. then u lost 1000 which means u have 500 left.then u purchased for 300. so u have 200 left.now u gave 100 to each friend.now u owe 900 to the first one and 400 to the second. which means u have to give 1300 and not 1600. u shouldnt add that 300 as u spent it from the money that u already got from ur friends.
| Is This Answer Correct ? | 3 Yes | 6 No |
Answer / moron
let me break it down for you :
500-300=200 now three hundred what you spent
500-200= 300 three hundred what you have to pay him & it doesn't mean that he will give another 300, what if he does i.e 500+300=800 & 800-200=600 and he's moron if you think he'll pay you another extra 100.
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / spm
lemme give u an suggestion god sake pls try to find out the lost 1000 rupess. so that all ur prob;ems will be settled.
| Is This Answer Correct ? | 0 Yes | 3 No |
How to Recognize List Boxes in WinRunner 7.5 while Recording...
I have got one job selection order from DECON ENGG(HRD), he told me to send 2000 rs of demand draff i have send the demand draff after some time a got a job selection order in banglore but he have written that u have to give 550 rs of Guidency fees in bangalore i dont understant what to do
Answers for Complete This Song B_C_A_A _IL K_A KA_E, S__AN J__E B__D_ J__E
I want singal maintainer(iii& ii) solved question paper in every year in every board in rrb. If you collect these and sent these my mail-id i shall very grateful to you.
who was first "woman" cheaf-minister in india and which state ?
4 Answers Hindustan Unilever Limited,
U have 8 balls, all have the same in size, 7 have same weight & 8th have weight slightly more.How can u find the ball which have slightly more weight by using a balance & only 2 weightings ?
Flow of fluid takes place due to its?
what is employee MAPPING in recruitment...?
hii..i am doin a project called Forecaster..wat it does is it asks user to enter a zip code..then it establishes urlconnection with a weather website n fetches data n data is converted into graphical representation..but it doesnt show any output..i am not able it figure out the reason..can u plzzzz help me out..i am givin u code import java.io.*; import java.awt.*; import java.net.*; import java.awt.image.*; import java.awt.event.*; public class Forecast extends Frame { OkCancelDialog textDialog; BufferedImage image = null; public static void main(String[] args) { new Forecast(); } public Forecast() { String zip =""; File zipFile = new File("zip.txt"); String hiTemperature[] = new String[4]; String loTemperature[] = new String[4]; try { if(zipFile.exists()){ FileReader filereader = new FileReader("zip.txt"); BufferedReader bufferedreader = new BufferedReader(filereader); zip = bufferedreader.readLine(); } else { textDialog = new OkCancelDialog(this, "Enter your five-digit zip code", true); textDialog.setVisible(true); zip = textDialog.data.trim(); FileOutputStream fileoutputstream = new FileOutputStream("zip.txt"); fileoutputstream.write(zip.getBytes()); } int character; URL url = new URL ("http://www.srh.noaa.gov/zipcity.php?inputstring=" + zip); URLConnection urlconnection = url.openConnection(); InputStream in = urlconnection.getInputStream(); String input = ""; String hiSearch; String loSearch; String inchar; char[] cc = new char[1]; while ((character = in.read()) != -1) { char z = (char)character; cc[0] = z; inchar = new String(cc); input += inchar; } in.close(); if(input.indexOf("Hi <font color=\"#FF0000\">") >= 0){ hiSearch = "Hi <font color=\"#FF0000\">"; } else{ hiSearch= "Hi: <span class=\"red\">"; } int currentPosition = 0; for(int loopIndex = 0; loopIndex < 4; loopIndex++){ int location = input.indexOf(hiSearch, currentPosition); int end = input.indexOf("°", location); hiTemperature[loopIndex] = input.substring(location + hiSearch.length(), end); currentPosition = end + 1; } if(input.indexOf("Lo <font color=\"#0033CC\">") >= 0){ loSearch = "Lo <font color=\"#0033CC\">"; } else{ loSearch= "Lo: <span class=\"blue\">"; } currentPosition = 0; for(int loopIndex = 0; loopIndex < 4; loopIndex++){ int location = input.indexOf(loSearch, currentPosition); int end = input.indexOf("°", location); loTemperature[loopIndex] = input.substring(location + loSearch.length(), end); currentPosition = end + 1; } boolean evening = false; if(input.indexOf(loSearch) < input.indexOf(hiSearch)){ evening = true; hiTemperature[3] = hiTemperature[2]; hiTemperature[2] = hiTemperature[1]; hiTemperature[1] = hiTemperature[0]; } image = new BufferedImage(225, 201, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.setColor(Color.white); g.fillRect(0, 0, 224, 201); g.setColor(Color.gray); for(int loopIndex = 0; loopIndex < 21; loopIndex++){ g.drawLine(25, loopIndex * 10, 224, loopIndex * 10); g.drawLine(loopIndex * 10 + 25, 0, loopIndex * 10 + 25, 199); } g.setColor(Color.blue); Font font = new Font("Courier", Font.PLAIN, 18); g.setFont(font); for(int loopIndex = 20; loopIndex < 200; loopIndex += 20){ g.drawString(String.valueOf(100 - loopIndex / 2), 0, loopIndex + 5); } g.setColor(Color.red); if(!evening){ g.drawOval(65 - 4, 200 - (Integer.parseInt( hiTemperature[0]) * 2) - 4, 8, 8); } g.drawOval(105 - 4, 200 - (Integer.parseInt( hiTemperature[1]) * 2) - 4, 8, 8); g.drawOval(145 - 4, 200 - (Integer.parseInt( hiTemperature[2]) * 2) - 4, 8, 8); g.drawOval(185 - 4, 200 - (Integer.parseInt( hiTemperature[3]) * 2) - 4, 8, 8); if(!evening){ g.drawLine(65, 200 - (Integer.parseInt( hiTemperature[0]) * 2), 105, 200 - (Integer.parseInt(hiTemperature[1]) * 2)); } g.drawLine(105, 200 - (Integer.parseInt(hiTemperature[1]) * 2), 145, 200 - (Integer.parseInt(hiTemperature[2]) * 2)); g.drawLine(145, 200 - (Integer.parseInt(hiTemperature[2]) * 2), 185, 200 - (Integer.parseInt(hiTemperature[3]) * 2)); g.setColor(Color.blue); g.drawOval(65 - 4, 200 - (Integer.parseInt( loTemperature[0]) * 2) - 4, 8, 8); g.drawOval(105 - 4, 200 - (Integer.parseInt( loTemperature[1]) * 2) - 4, 8, 8); g.drawOval(145 - 4, 200 - (Integer.parseInt( loTemperature[2]) * 2) - 4, 8, 8); g.drawOval(185 - 4, 200 - (Integer.parseInt( loTemperature[3]) * 2) - 4, 8, 8); g.drawLine(65, 200 - (Integer.parseInt(loTemperature[0]) * 2), 105, 200 - (Integer.parseInt(loTemperature[1]) * 2)); g.drawLine(105, 200 - (Integer.parseInt(loTemperature[1]) * 2), 145, 200 - (Integer.parseInt(loTemperature[2]) * 2)); g.drawLine(145, 200 - (Integer.parseInt(loTemperature[2]) * 2), 185, 200 - (Integer.parseInt(loTemperature[3]) * 2)); g.setColor(Color.white); g.fillRect(55, 160, 140, 30); g.setColor(Color.blue); g.drawRect(55, 160, 140, 30); font = new Font("Courier", Font.PLAIN, 12); g.setFont(font); g.drawString("Four-Day Forecast", 65, 172); font = new Font("Courier", Font.PLAIN, 9); g.setFont(font); g.drawString("Source: Nat. Weather Srvce.", 58, 185); setTitle("The Forecaster"); setResizable(false); setSize(250, 240); setVisible(true); this.addWindowListener(new WindowAdapter(){ public void windowClosing( WindowEvent e){ System.exit(0); } } ); } catch (Exception e) { System.out.println(e.getMessage()); } } public void paint(Graphics g) { if(image != null){ g.drawImage(image, 10, 30, this); } } } class OkCancelDialog extends Dialog implements ActionListener { Button ok, cancel; TextField text; public String data; OkCancelDialog(Frame hostFrame, String title, boolean dModal) { super(hostFrame, title, dModal); setSize(280, 100); setLayout(new FlowLayout()); text = new TextField(30); add(text); ok = new Button("OK"); add(ok); ok.addActionListener((ActionListener)this); cancel = new Button("Cancel"); add(cancel); cancel.addActionListener(this); data = new String(""); } public void actionPerformed(ActionEvent event) { if(event.getSource() == ok){ data = text.getText(); } else { data = ""; } setVisible(false); } }
I am addicted towards facebo0k, pls suggest some way to leave it, it disturb my study :-(
sentence- the teacher told that the students should have gone to the library instead of having wasted their time.
osgelvaitre arrange it which make 1 romantic word