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

Cαяℓo Muriyon ☠️

Favorite Answers43%
Answers62
  • Configuration for DHCP and NAT on home network?

    I have the DSL connection cable(RJ11) from the splitter connected to an ADSL2+ modem which has only ONE output internet/network socket(RJ45). From the modem i've given the connection to a D-Link smart wireless router and use all my devices through WAN using DHCP allocation on the router. Both my modem and router have NAT ENABLED.

    I'm just wondering that my connection from modem to router is through one static IP right? only the router handles multiple clients using NAT and DHCP; so is it really necessary to keep the modem NAT enabled since it only connects with the router and uses one IP?

    3 AnswersComputer Networking8 years ago
  • Need help with a MySql query regarding increasing the price of multiple items by 5%?

    ill make this simple, how do i increase the price of all the items(eg: Toys) by 5% which belonges to one category(eg: Toy ISA wooden Toy) using MySql Queries. i only need to know how to use the Aggregate Keywords here to make this happen.

    Im usign Double(15,2) for storing prices and Not Currency

    Thnx in Advance

    1 AnswerProgramming & Design8 years ago
  • Android phones (HTC or Samsung)?

    Want to buy an android platform mobile and can't decide between these ones that which one is better?

    have 3 phones in mind (HTC Wildfire S, HTC Explorer, Samsung Galaxy Ace)...

    already checked the specs and compared them but i need pros and cons from those who handled these phones, thnx in advance

    PS: was using an iphone 3g and recently sold it, i know its way better but which of these phones can give me a similar experience (in performance, multitasking & browsing). don't play games much but im slightly more than a moderate user. my budget is 320 USD tell me if there is other better choices.

    2 AnswersMobile Phones & Plans9 years ago
  • How to draw/put a Circle or other mathematical shapes in C++?

    i can draw some shapes using cout function but is there any other methods too?? , and specially for drawing circles, ovals ..

    PS: i use borland C++ and visual C++ compilers

    1 AnswerProgramming & Design10 years ago
  • Switching from Borland C++ to Visual C++ ?

    I'm currently using Borland c++ v5.02 and getting errors specially when using string header files such as <string.h> <sstream.h> and so, the most frustrating one is "namespace name expected" error when compiling. i want to switch to Visual C++ completely becuz of borland errors and not recognizing some header files too, help me with syntax changes when compiling the same code in visual c++...

    #include<iostream.h>

    #include<conio.h>

    int main(){

    double avg,next,tot,count;

    cout<<"Enter a nonnegative number: ";cin>>next;cout<<endl;

    tot=next;

    while(next>=0){

    cout<<"Enter a nonnegative number: ";cin>>next;cout<<endl;

    tot=tot+next;

    count++;

    if(next<0){

    tot=tot-next;}

    }

    avg=tot/count;

    cout<<"Your average is: "<<avg<<endl;

    getch();

    return 0;

    }

    Thankyou in Advance

    Im posting a simple Program which i done in borland, can someone help me with what are the areas and syntax's to change to compile it in visual c++.

    1 AnswerProgramming & Design10 years ago
  • Borland C++ question: write a program that asks a user to type an integer between 0 & 20(both included)?

    and writes the value of that integer+17, if a wrong integer is typed the program writes "error" and must ask for another input?

    #include<iostream.h>

    #include<conio.h>

    void main(){

    int x;

    while(x>=0||x<=20)

    {cout<<"Enter a Number: ";cin>>x;

    if(x>-1 && x<21)

    {x=(x+17); cout<<"\n\t\t\t\tYOUR ANSWER (N+17) IS: "<<x<<endl<<endl;}

    else{cout<<"\n\t\t\t\tERROR"<<endl<<endl;}

    x++;

    }

    getch();

    }

    the problem in my coding is even if i type a valid number between 0 & 20(both included) its showing the answer and again asking another value, but if the integer is between 0 & 20(both included) it shouldn't ask for another value again. can somebody help... thnx in advance

    4 AnswersProgramming & Design10 years ago