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 17 points

Nasir

Favorite Answers4%
Answers26
  • what is the solution of c# and ms access problem?

    i am developing an application in c# and ms access i have connected my to forms with ms access and i have done a task to insert data into two tables their names are 1)ingredients 2) Recipe

    the ingredient form has the following fields i.e ingredient id ,name,measure,quantity

    and the recipe form has the following fields these are recipe name,id,and the third filed which is very important i.e ingredient this is drop down list ....

    now the task is that when i click on the drop down list in recipe form this drop down list should be connect to the ingredients list and when i click on this list for example when select an ingredient i.e sugar and the second filed in recipe form quantity it will be connected to ingredient table database when i chose 2 kg ingredient it will be stored in the recipe table of ingredient filed and the ingredient will be updated from the ingredient table for example if i chose 2 kg sugar the renaming sugar will be 8 kg in ingredient table database if it has 10 kg and the 2 kg will be stored in the recipe database table.

    so plz tell me to solve this problem

    2 AnswersProgramming & Design8 years ago
  • When the user enters 'a' 0r 'A' or any Alphabets then my program will crashed?

    what is the validating code on line

    #include<iostream.h>

    int main()

    {

    int num;

    cout<<"Enter Number Do not Enter Negative Number:";

    cin>>num;

    while(num<0 )//in this line what is the validating code that users only enters numbers postitive

    {

    cout<<"Plz Do not Enter Negative Number Enter Again:";

    cin>>num;

    }

    for(int d=1;d<=num;d++)

    {

    if(num%d==0)

    cout<<d<<" ";

    }

    return 0;

    }

    1 AnswerProgramming & Design9 years ago
  • write a program in c++?

    one acre of a land is equivalent to 43560 square feet.write a program that calculates and displays the number of acre in a tract of land with 389767 square.

    1 AnswerProgramming & Design9 years ago
  • what is the solution of this question?

    Compute the cost per square foot of living space for a house, given the dimensions (Length, Width) of the house, the number of stories, the size of the non-living space (garage, closets), an the total cost of the house.

    1 AnswerOther - Science9 years ago
  • What is the scope of msc it?

    Hi..i want to ask u that what is the scope of msc it ..after doing msc it what tye of jobs can i do.mcs is better or msc it...

    2 AnswersComputer Networking9 years ago
  • What the best solution of this problem not use truth table?

    1)_show that (p→q)→(r→s) and (p→r)→(q→s) are not logically equivalent....by using logical equivalences.....

    solve this and do not use truth table

    2 AnswersMathematics10 years ago
  • Why we need software engineering?

    plese tell me?

    2 AnswersEngineering1 decade ago
  • Write a program in vbscript or asp?

    That has two text boxes (one for email id and one for password )and one register button.program display an error message if the email's length is lesser than 6 and email is other than hotmail...........

    1 AnswerProgramming & Design1 decade ago
  • Who can i do this my friends?

    Write an HTML code to represent the three text boxes and button for user name,password,and

    RE-Type password.Also write the vbscript code to check that user name must be on 5 characters and password and re-type password are same on button click

    please help me about this program

    1 AnswerProgramming & Design1 decade ago
  • OR this code is correct according to statement?

    Write a program that sums of integers.Assume that the first integer

    reads specifies the number of values remaining to be entered.your program should read only one value per input statement

    A typical input sequence might be 5 ,100,200,300,400,500

    where the 5 indicates that the subsequent 5 values are to be summed?

    #include<iostream.h>

    #include<conio.h>

    void main()

    {

    int num,n,s,c;

    cout<<"enter number?";

    cin>>num;

    s=num;

    c=1;

    while(c<=num)

    {

    cout<<"enter number?";

    cin>>n;

    s=s+n;

    c++;

    }

    cout<<"sum="<<s<<endl;

    getch();

    }

    if not then correct this

    3 AnswersProgramming & Design1 decade ago
  • Is this source code is correct according to the statement or not?

    write a program to summarize the result of a test?

    You have to ask the number of students to be tested.Next

    to each result,is written a 1 if the student is passed

    the exam and 2 if the student fail.then generate the number of

    students pass & fail

    #include<iostream.h>

    #include<conio.h>

    void main()

    {

    int tested_std,pass,fail,i,res;

    i=1,pass=0,fail=0;

    clrscr();

    cout<<"how many students you want to be tested?";

    cin>>tested_std;

    while(i<=tested_std)

    {

    cout<<"enter 1 for pass and 2 for fail";

    cin>>res;

    if(res==1)

    pass=pass+1;

    if(res==2)

    fail=fail+1;

    if((res!=1) & (res!=2))

    cout<<"please enter 1 or 2";

    i=i+1;

    }

    cout<<"pass students="<<pass<<endl;

    cout<<"fail students="<<fail<<endl;

    getch();

    }

    my question is that

    is this source code is correct according to the statement or not

    2 AnswersProgramming & Design1 decade ago
  • Is this code in c++ according to the statement is correct?

    The statement is.....write a program that extracts and print the second rightmost digit of the integral portion of a float variable.e.g.if user enter 12345.67 the output will be 4.

    #include<iostream.h>

    #include<conio.h>

    main()

    {

    int r,n,c,num,rev;

    clrscr();

    cout<<"Enter any integer value ? ";

    cin>>n;

    c=0;

    rev=0;

    while(n>0)

    {

    r=n%10;

    c=c+1;

    if(c==2)

    num=r;

    rev = rev*10+r;

    n = n/10;

    }

    cout<<num<<endl;

    getch();

    }

    now tell me that the above code is corrcet or not !!!!!!!

    5 AnswersProgramming & Design1 decade ago
  • hello any one who can solve this problem?

    Write a function multiple() which takes two integer values as arguments. This function determine that the second argument is multiple of first argument and return true if the second argument is multiple of first otherwisw false?

    3 AnswersProgramming & Design1 decade ago
  • Write a program in c++?

    Write a program to summarize the result of a test? you have to ask the number of students to be tested.Next to each result,is written a 1 if the student passed the exam and 2 if the student fail.then generate the number of students pass & fail?

    it is very very important...........................

    solve it now

    2 AnswersProgramming & Design1 decade ago
  • What is difference between architecture and installing?

    I am worry about installing and architecture ....

    i have one assightment ....that is given to me

    the assightment is that... What is ISS?and discuss its architecture ? my question is that

    i can write above assightment as.... What is ISS?and discuss its installing?

    if no...then what is difference between architecture and installing?

    1 AnswerProgramming & Design1 decade ago
  • what is difference between architecture and installing?

    I am worry about installing and architecture ....

    i have one assightment ....that is given to me

    the assightment is that... What is ISS?and discuss its architecture ? my question is that

    i can write above assightment as.... What is ISS?and discuss its installing?

    if no...then what is difference between architecture and installing?

    1 AnswerProgramming & Design1 decade ago
  • how can you help me about this program please send me code?

    design a form with two text boxes and one select control .as any

    option is selected the relevant record should show in text boxex.for this use select query

    1 AnswerSoftware1 decade ago
  • write a program in vbscript?

    it is the program of multiple of the integer 2 ..the loop should terminate on 1000.....

    or this is correct program about multiple of 2

    <html>

    <body>

    <script language="vbscript">

    dim num,c,res

    num=2

    c=1

    while(c<=1000)

    mul=num*c

    document.write(mul &"<br>")

    c=c+1

    wend

    </script>

    </body>

    </html>

    1 AnswerProgramming & Design1 decade ago
  • write a program in c++ that display?

    write a program in c++ that displaying the multiple of the integer 2 your loop should terminate on 1000.

    3 AnswersProgramming & Design1 decade ago