Skip to main content
Oxymorons.....

Here you will find the top 45 oxymorons. An oxymoron is a
combination of two words that are completely opposite in meaning.
You've
probably heard many of these before but didn't realize that they fall
within
this category. Read to the end.


45. Act naturally

44. Found missing

43. Resident alien

42. Advanced BASIC

41. Genuine imitation

40. Airline Food

39. Good grief

38. Same difference

37. Almost exactly

36. Government organization

35. Sanitary landfill

34. Alone together

33. Legally drunk

32. Silent scream

31. Living dead

30. Small crowd

29. Business ethics (Good One)

28. Soft rock

27. Butt head

26. Military intelligence

25. Software documentation

24. New classic

23. Sweet sorrow

22. Child Proof

21. "Now, then "

20. Synthetic natural gas

19. Passive aggression

18. Taped live

17. Clearly misunderstood

16. Peace force

15. Extinct life

14. Temporary tax increase

13. Computer jock

12. Plastic glasses

11. Terribly pleased

10. Computer security

9. Political science

8. Tight slacks

7. Definite maybe

6. Pretty ugly

5. Twelve-ounce pound cake

4. Diet ice cream

3. Working vacation

2. Exact estimate





.And the number 1 oxymoron is..




1. Microsoft works

Comments

Popular posts from this blog

Software way of milking cow: ( I got this through mail... Intersting ) Softwarism:(Ultimate....) If Client has 2 cows and u need to milk them 1 .. First prepare a document when to milk them (Project kick off) 2 .. Prepare a document how long you have to milk them (Project plan) 3 .. Then prepare how to milk them (Design) 4 .. Then prepare what other accessories are needed to milk them (Framework) 5 .. Then prepare a 2 dummy cows (sort of toy cows) and show to client the way in which u will milk them (UI Mockups & POC) 6 .. If client is not satisfied then redo from step 2 7 .. You actually start milking them and find that there are few problem with accessories. (Change framework) 8 .. Redo step 4 9 .. At last milk them and send it to onsite. (Coding over) 10. Make sure that cow milks properly ( Testing) 11. Onsite reports that it is not milking there. 12. You break your head and find that onsite is trying to milk from bulls 13. At last onsite milk them and send to client (Testing) 1...

Working for google can be mind blogging

Here are some interesting questions that Google asks you when you try a position in Google . I am not sure how legitimate they are, but here are a few for your amusement 1. How many golf balls can fit in a school bus? 2. You are shrunk to the height of a nickel and your mass is proportionally reduced so as to maintain your original density. You are then thrown into an empty glass blender. The blades will start moving in 60 seconds. What do you do? 3. How much should you charge to wash all the windows in Seattle? 4. How would you find out if a machine’s stack grows up or down in memory? 5. Explain a database in three sentences to your eight-year-old nephew. 6. How many times a day does a clock’s hands overlap? 7. You have to get from point A to point B. You don’t know if you can get there. What would you do? 8. Imagine you have a closet full of shirts. It’s very hard to find a shirt. So what can you do to organize your shirts for easy retrieval? 9. Every man ...

How to deselect all the selection in a select ( combo ) box?

In a HTML page sometimes we may have to deslect all the selection in a select control of html. but as a user we can't do anything. But using Javascript programatically we can achieve this. Here is the sample code in Javascript. function clearSelect( selectObj ){ for (var i = 0; i selectObj .options[i].selected = false; } } note: we need to pass the select object as a parameter to this function. the alternative to this code is function clearSelect( selectObj ){ selectObj.selectedIndex = -1; }