Skip to main content

[Humor] Call Centre Jobs

Call Centre Jobs: People often wonder why they are paid so much...for just being on the phone. Take a look...

  1. Tech Support: "I need you to right-click on the Open Desktop."
    Customer "Ok."
    Tech Support: "Did you get a pop-up menu?"
    Customer: "No."
    Tech Support: "Ok. Right click again. Do you see a pop-up menu?"
    Customer "No."
    Tech Support:: "Ok, si r. Can you tell me what you have done up until
    this point?"
    Customer: "Sure, you told me to write 'click' and I wrote 'click'."
  2. Customer: "I received the software update you sent, but I am still getting the same error message."
    Tech Support:: "Did you install the update?"
    Customer: "No. Oh, am I supposed to install it to get it to work?"
  3. Customer:: "I'm having trouble installing Microsoft Word."
    Tech Support:: "Tell me what you've done."
    Customer: "I typed 'A:SETUP'."!
    Tech Support:: "Ma'am, remove the disk and tell me what it says."
    Customer:: "It says '[PC manufacturer] Restore and Recovery disk'."
    Tech Support:: "Insert the MS Word setup disk."
    Customer:: "What?"
    Tech Support: "Did you buy MS word?"
    Customer: "No..."
  4. Customer:: "Do I need a computer to use your software?"
    Tech Support:: ?!%#$
  5. Tech Support:: "Ok, in the b ottom left hand side of the screen, canyou see the 'OK' button displayed?"
    Customer: "Wow. How can you see my screen from there?"
  6. Tech Support:: "What type of computer do you have?"
    Customer:: "A white one."
  7. Tech Support:: "Type 'A:' at the prompt."
    Customer:: "How do you spell that?"
  8. Tech Support: "What's on your screen right now?"
    Customer: "A stuffed animal that my boyfriend got me at the grocery store."
  9. Tech Support:: "What operating system are you running?"
    Customer: "Pentium."
  10. Customer: "My computer's telling me I performed an illegal abortion."
  11. Customer: "I have Microsoft Exploder."
  12. Customer: "How do I print my voicemail?"
  13. Customer: "You've got to fix my computer. I urgently need to print document, but the computer won't boot properly."
    Tech Support: "What does it say?"
    Customer: "Something about an error and non-system disk."
    Tech Support: "Look at your machine. Is there a floppy inside?"
    Customer: "No, but there's a sticker saying there's an Intel inside."
  14. Tech Support: "Just call us back if there's a problem. We're open 24 hours."
    Customer: "Is that Eastern time?"
  15. Tech Support:: "What does the screen say now?"
    Customer: "It says, 'Hit ENTER when ready'."
    Tech Support:: "Well?"
    Customer: "How do I know when it's ready?"
  16. A plain computer illeterate guy rings tech support to report that his computer is faulty.
    Tech: What's the problem?
    User: There is smoke coming out of the power supply.
    Tech: You'll need a new power supply.
    User: No, I don't! I just need to change the startup files.
    Tech: Sir, the power supply is faulty. You'll need to re place it.
    User: No way! Someone told me that I just needed to change the startup and it will fix the problem! All I need is for you to tell me the command.

    10 minutes later, the User is still adamant that he is right. The tech is frustrated and fed up.
    Tech: Sorry, Sir. We don't normally tell our customers this, but there is an undocumented DOS command that will fix the problem.
    User: I knew it!
    Tech: Just add the line LOAD NOSMOKE.COM at the end of the CONFIG.SYS. Letme know how it goes.

    10 minutes later.
    User: It didn't work. The power supply is still smoking.
    Tech: Well, what version of DOS are you using?
    User: MS-DOS 6.22.
    Tech: That's your problem there. That version of DOS didn't come with NOSMOKE. Contact Microsoft and ask them for a patch that will give you ! the file. Let me know how it goes.

    1 hour later.
    User: I need a new power supply.
    Tech: How did you come to that conclusion?
    User: Well, I rang Microsoft and told him about what you said, and he started asking questions about the make of power supply.
    Tech: Then what did he say?
    User: He told me that my power supply isn't compatible with NOSMOKE

Which one is the best u like :)

Comments

Popular posts from this blog

Installing Bugzilla on Windows

Bugzilla is the Bugs/Issues Tracking Tool from The Mozilla Organization. Version 2.18 is the latest stable release. There are couple of resources which guide a User installing Bugzilla on a Unix/linux machine. However, this entry describes a way to install Bugzilla on a Windows machine (W2K to be precise). This document guides you step by step through the installation process. First, get Administrative access to the machine on which you want to install Bugzilla. It should be a simple step. Usually, Users are given Administrative rights on Windows machine. However, if you dont have, contact your Administrator. Get Bugzilla Then download the Bugzilla from http://bugzilla.org/download.html . There are two ways of gettng it - through CVS or direct downloading the tar file. Remember there are no Zip files. However, any zip utility should be able to untar the Bugzilla. I download the tar file and untarred it using WinZip. I placed the untarred 'bugzilla' directory in my c: drive. So...

Online Hindi Radio Stations

Here is the list of Online Hindi Radio Stations. Copy the URL in your media player and enjoy !! 106.2 HUMFM - UAE ==> http://www.humfm.com/humfm.asx AajKal - Asian Network ==> http://stream.servstream.com/ViewWeb/BBCRadio_music/Event/BBCAsianNetwork_hi.asx Amrit Bani - UK ==> http://62.25.97.192/amritbani?MSWMExt=.asf ApnaRadio - USA ==> http://www.apnaradio.com/live/media24/ApnaRadio.asx Asian Gold Radio - UK ==> http://62.25.96.7/asiangold Asian Sound Radio - UK ==> http://www.vtuner.com/vtunerweb/mms/mms15278.asx BBC News ==> http://www.bbc.co.uk/worldservice/meta/tx/nb/live_news_au_nb.asx BombayBeats FM ==> http://www.1.fm/player/energybbfm32k.asx City 101.6 FM - Dubai ==> http://asx.abacast.com/arabian_radio-city-24.asx DDLive Video - India ==> http://164.100.51.209/ddlive?MSWMExt=.asf DesiSoundz - India ==> http://desisoundz.com:8000 Haagstad Radio - Holand ==> mms://81.205.146.32:21/haagstadradio kismatradio.com ==> http://www.kismatradio....

What are the different type of JDBC drivers?

There are four types of JDBC database driver: The JDBC/ODBC bridge driver (Type 1) A piece of native C-code that translates a JDBC call to an ODBC call. Use this driver for development, not for industrial-strength application environments. Note that you have to have an ODBC database driver manager + an ODBC database driver installed on the server in addition to the JDBC/ODBC bridge. Though useful for learning JDBC and quick testing, bridging solutions are rarely appropriate for production environments. Native API partly java driver (Type 2) A piece of native C-code that translates a java JDBC call to a native database call level API. Use this driver for development and deployment. Due to its native code, this driver can only be used by Java Applications with full computer access (i.e. not Applets). Type 2 drivers generally provide the best performance, but they require the installation of native libraries on clients that need to access the database. Applications using Type 2 drivers ...