Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 2369 points

choke_throat_ugliness

Favorite Answers33%
Answers42
  • should I join NISG in DOP project from CMC Ltd(current employer)?

    Greetings to all. I am a B.TECH in C.S.E 5 years experience as a java developer and I am currently working as IT Engineer in CMC Ltd.(A TATA group of companies). My current CTC is 4.37 Lacks per year. I have a job offer for NISG for Department of Post project for CTC 5.10 Lack per year and this is a contractual position. I have heard that the contracts are renewed and they pool their internal resource for new projects.

    I am in a dilemma if I should join considering the following criterias. Job security, Work life balance, Future career impact or growth (in NISG or elsewhere). Please advise if I should take the offer. Regarding CMC what I have to say I am grossly underpaid (I have over 5 years of technical experience) and there is a lot of organizational bureaucracy and policy paralysis and decision making is at its worst. There is a lot of hassle to get things done (i.e. Simple settlement of claim becomes nightmare as everyone points finger to someone else and plays dumb). I have been deprived of my rightful financial benefits. There is a lot of work pressure as well.

    Please advise.

    1 AnswerTechnology8 years ago
  • ajax submit a form (when a select box changes) and load the result in the same page?

    hi all!

    greetings to everyone!

    I am sorry if I missed the solution

    of this problem given here already

    but I searched for quite some time.

    here is my problem

    I have written a form with only a select box

    which, when changed, should submit

    its form and load the response from the

    server in the same page under a specific

    <div></div> so that the user doesn't have to navigate

    away from that page when he wants to

    change that select box again.

    So far I am trying with a submit button

    and when I click on submit after changing the

    select box, it works.

    code::

    <script language='javascript'>

    $(document).ready(function() {

    var options = {

    target: '#content', // target element(s) to

    be updated with server response

    beforeSubmit: function() { document.body.style.cursor

    = 'wait'; }, // pre-submit callback

    success: function() { document.body.style.cursor

    = 'default'; } // post-submit callback

    };

    // bind to the form's submit event

    $('form').submit(function() {

    $(this).ajaxSubmit(options);

    return false;

    });

    });

    </script>

    <div id='content' style='border:1px solid black'>

    <form id="publicationform" id="publicationform" action="show.jsp"

    method="POST">

    <select name="publication" id="pubitemlist" >

    ......

    <input type="submit" value="Select"/>

    </form>

    how can I make it work without the submit button?

    (I have tried <select name="publication" id="pubitemlist"

    onChange="this.form.submit();">

    which causes it to load a new page

    what I want is to load the response (page) in the <div> specified in

    AJAX fashion!

    Thanks in advance!

    Regards,

    loco

    1 AnswerProgramming & Design1 decade ago
  • Please explain this C program?

    The program is

    ....

    #include <stdio.h>

    main()

    {

    int x,y=2,z,a;

    x=(y*=2)+(z=a=y);

    printf("\n%d\n",x);

    }

    Output: 8

    Why?????? Please explain!

    5 AnswersProgramming & Design1 decade ago