Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Stupid Interview Questions and Answers

  • 22-05-2014 6:30pm
    #1
    Closed Accounts Posts: 376 ✭✭


    I`ve been on a few interviews over the last few months and I swear to jazus the questions you get asked at interviews wreck my head. Some examples


    Where do you see yourself in five years?

    Ill be your boss, and I`ll fire you

    Why are you interested in this job/company?

    Because I need the money and your not too far of a drive from home

    Do you have any questions for us?

    Can I use the toilet before I leave?

    What is your greatness weakness?

    I eat too much food

    What is your dream job?

    Ladies Volleyball referee


    Any more examples please


Comments

  • Registered Users, Registered Users 2 Posts: 9,153 ✭✭✭everdead.ie


    Explain the difference between an Abstract class and an Interface.
    Seriously?


  • Registered Users, Registered Users 2 Posts: 984 ✭✭✭ViveLaVie


    They are not stupid questions. They are stupid answers.


  • Registered Users, Registered Users 2 Posts: 5,496 ✭✭✭SCOOP 64


    Did you hear anything back with your answers?


  • Registered Users, Registered Users 2 Posts: 9,203 ✭✭✭dodderangler


    Q.What would you bring to the company?

    A.What like food or something


  • Closed Accounts Posts: 376 ✭✭sawfish


    ViveLaVie wrote: »
    They are not stupid questions. They are stupid answers.

    Even the dream job one?


  • Advertisement
  • Closed Accounts Posts: 3,516 ✭✭✭wazky


    Interviewer:Do you have any weaknesses?

    Me: Honesty

    Interviewer: I don't think that's a weakness

    Me: I don't give a fcuk what you think


  • Registered Users, Registered Users 2 Posts: 94 ✭✭JohnPPP


    Explain the difference between an Abstract class and an Interface.
    Seriously?

    Java++


  • Registered Users, Registered Users 2 Posts: 1,806 ✭✭✭D1stant


    JohnPPP wrote: »
    Java++

    > GeekJokes Forum


  • Registered Users, Registered Users 2 Posts: 1,829 ✭✭✭Nemeses


    D1stant wrote: »

    > GeekJokes Forum

    You forgot the dot com after that....


  • Registered Users, Registered Users 2 Posts: 1,806 ✭✭✭D1stant


    Nemeses wrote: »
    You forgot the dot com after that....


    > Unfunny Forum.blx


  • Advertisement
  • Closed Accounts Posts: 2,537 ✭✭✭Arthur Beesley


    How many eyes has 4 flies and a geefer?

    Do you know where the 5 lamps are?


  • Closed Accounts Posts: 2,537 ✭✭✭Arthur Beesley


    wazky wrote: »
    Interviewer:Do you have any weaknesses?

    Me: Honesty

    Interviewer: I don't think that's a weakness

    Me: I don't give a fcuk what you think

    Brilliant.


  • Closed Accounts Posts: 2,226 ✭✭✭boobar


    Question
    What's the first thing you'd change if you got the job?

    Answer
    Probably the car.


  • Closed Accounts Posts: 2,226 ✭✭✭boobar


    Question
    What's your weakness?

    Answer
    Women with big arses.


  • Closed Accounts Posts: 970 ✭✭✭yawhat!


    If you had a super power what would it be? (Stupid question)

    Invisibility so I could burn your company to the ground.

    Name something you love the smell of and why? (Stupidest question ever)

    Your mothers flange


  • Banned (with Prison Access) Posts: 3,126 ✭✭✭Santa Cruz


    Where do you see yourself in five years?

    Hopefully in Barbados but if I'm caught probably doing ten in Mountjoy


  • Closed Accounts Posts: 976 ✭✭✭Kev_2012


    Explain the difference between an Abstract class and an Interface.
    Seriously?

    public abstract class Person{
    String name;
    public function breathe (){
    inhale();
    exhale();
    }
    }


    public class Woman extends Person{
    public function bleedOnceAMonth(){
    yock();
    }
    }

    public interface JetPack{
    public function fly(){
    weeeeeeeee();
    }
    }

    public class Man extends Person implements JetPack{

    }

    Person person = new Person();//Doesnt work
    Man man = new Man();
    Woman man = new Woman();

    man.fly();//man has a great time
    woman.fly();//doesnt work but she COULD fly if she implemented the jetpack

    woman.bleedOnceAMonth();//everyone gets head for a week
    man.bleedOnceAMonth();//NOPE! doesn't work

    Men and Woman are both people and both have to breathe, but only women have periods and only men that have jetpacks can fly.


  • Registered Users, Registered Users 2 Posts: 9,153 ✭✭✭everdead.ie


    Kev_2012 wrote: »
    public abstract class Person{
    String name;
    public function breathe (){
    inhale();
    exhale();
    }
    }


    public class Woman extends Person{
    public function bleedOnceAMonth(){
    yock();
    }
    }

    public interface JetPack{
    public function fly(){
    weeeeeeeee();
    }
    }

    public class Man extends Person implements JetPack{

    }

    Person person = new Person();//Doesnt work
    Man man = new Man();
    Woman man = new Woman();

    man.fly();//man has a great time
    woman.fly();//doesnt work but she COULD fly if she implemented the jetpack

    woman.bleedOnceAMonth();//everyone gets head for a week
    man.bleedOnceAMonth();//NOPE! doesn't work

    Men and Woman are both people and both have to breathe, but only women have periods and only men that have jetpacks can fly.
    So an interface shouldn't have any code in it weeeeeeeee() should be called in the method implementing it not the interface.

    Also you should probably set up a getter an setter for the name in person. Actually scratch that you don't need them in an abstract class

    Also don't forget main .......:D


  • Closed Accounts Posts: 976 ✭✭✭Kev_2012


    I wasn't talking about Java strictly, more a pseudocode example and just though of it on the spot.

    I wasn't be expecting that to compile! haha :D


Advertisement