1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
lions [1.4K]
3 years ago
6

Are routers better for internet connection rather than a WiFi modem?

Engineering
2 answers:
sleet_krkn [62]3 years ago
8 0

Answer:

Depends

Explanation:

The modem connects you to the Internet via ISP. Without a modem, your router will only allow you to connect to a LAN. A modem will provide connections for just a single wired device. If you want to go wireless you need a router.

bulgar [2K]3 years ago
5 0

Answer:

I don't exactly know the answer, but i found a  helpful website that could help you.

www.tomsguide.com

just copy and paste it.

search up modem vs router.

Explanation:

You might be interested in
What is the magnitude of the maximum stress that exists at the tip of an internal crack having a radius of curvature of 2.5×10-4
krok68 [10]

Answer:

1788.9 MPa

Explanation:

The magnitude of the maximum stress (σ) can be calculated usign the following equation:

\sigma = 2\sigma_{0} \sqrt{\frac{a}{\rho}}

<u>Where:</u>

<em>ρ: is the radius of curvature = 2.5x10⁻⁴ mm (0.9843x10⁻⁵ in)</em>

<em>σ₀: is the tensile stress = 100x10⁶ Pa (14500 psi) </em>

<em>2a: is the crack length = 4x10⁻² mm (1.575x10⁻³ in) </em>

Hence, the  maximum stress (σ) is:

\sigma = 2*100\cdot 10^{6} Pa \sqrt{\frac{(4 \cdot 10^{-2} mm)/2}{2.5 \cdot 10^{-4} mm}} = 1.79 \cdot 10^{6} Pa = 1788.9 MPa    

Therefore, the magnitude of the maximum stress is 1788.9 MPa.

I hope it helps you!

5 0
3 years ago
This is a new technology meant to reduce vehicle roll-overs A. Lane-departure warning B. Anti-lock brakes C. Inspection reports
Naily [24]

Answer:

(b) Anti-lock brakes

Explanation:

The short form of Anti-lock Braking System commonly known as ABS. Its working is based on the fact that the user will be in safe condition when he apply sudden brakes. It usually happens when a in vehicle moving with high speeds on highways encounter anything before them, they hit brakes suddenly which may lead to the tires loosing traction and contact with the roads and rolling over due to inertia as a result of the high speeds. These conditions result in very serious mishaps. Anti-lock system  aims to reduce the mishaps and losses which arise solely due to the locking of tires when brakes are applied. Anti-lock system significantly reduces speed and maintains a safer environment for the user and the vehicle.

5 0
3 years ago
Two technicians are discussing the intake air temperature (IAT) sensor. Technician A says that the computer uses the IAT sensor
mart [117]

Both the technicians are correct.

Explanation

Intake air temperature sensor is used in engines of vehicles to monitor the temperature of air entering the engine.

They are basically made of thermistors whose electrical resistance changes according to temperature.

Depending upon the reading and accuracy of intake air temperature sensor, the power-train control module (PCM) will decide about the air and fuel mixture ratio in the engine.

The hot air in engine requires less fuel to operate the engine parts while cold air requires more fuel to operate the engine.

The ratio of air and fuel mixture should be maintained in the engine and it is done by PCM only after getting the input from IAT. So technician B is saying correct.

Also the IAT works as a backup to support the engine coolant temperature sensor by the computer.

As the IAT checks the temperature of outside air, it will help to change the coolant temperature of the engine based on the environment.

Thus technician A is also correct. So both the technicians are correct.

6 0
3 years ago
Amanda and Tyler opened a business that specializes in shipping liquids, such as milk, juice, and water, in cylindrical containe
USPshnik [31]

Answer:

circleType.h

#ifndef circleType_H

#define circleType_H

class circleType

{

public:

void print();

void setRadius(double r);

//Function to set the radius.

//Postcondition: if (r >= 0) radius = r;

// otherwise radius = 0;

double getRadius();

//Function to return the radius.

//Postcondition: The value of radius is returned.

double area();

//Function to return the area of a circle.

//Postcondition: Area is calculated and returned.

double circumference();

//Function to return the circumference of a circle.

//Postcondition: Circumference is calculated and returned.

circleType(double r = 0);

//Constructor with a default parameter.

//Radius is set according to the parameter.

//The default value of the radius is 0.0;

//Postcondition: radius = r;

private:

double radius;

};

#endif

circleTypeImpl.cpp

#include <iostream>

#include "circleType.h"

using namespace std;

void circleType::print()

{

cout << "Radius = " << radius

<< ", area = " << area()

<< ", circumference = " << circumference();

}

void circleType::setRadius(double r)

{

if (r >= 0)

radius = r;

else

radius = 0;

}

double circleType::getRadius()

{

return radius;

}

double circleType::area()

{

return 3.1416 * radius * radius;

}

double circleType::circumference()

{

return 2 * 3.1416 * radius;

}

circleType::circleType(double r)

{

setRadius(r);

}

cylinderType.h

#ifndef cylinderType_H

#define cylinderType_H

#include "circleType.h"

class cylinderType: public circleType

{

public:

void print();

void setHeight(double);

double getHeight();

double volume();

double area();

//returns surface area

cylinderType(double = 0, double = 0);

private:

double height;

};

#endif

cylinderTypeImpl.cpp

#include <iostream>

#include "circleType.h"

#include "cylinderType.h"

using namespace std;

cylinderType::cylinderType(double r, double h)

: circleType(r)

{

setHeight(h);

}

void cylinderType::print()

{

cout << "Radius = " << getRadius()

<< ", height = " << height

<< ", surface area = " << area()

<< ", volume = " << volume();

}

void cylinderType::setHeight(double h)

{

if (h >= 0)

height = h;

else

height = 0;

}

double cylinderType::getHeight()

{

return height;

}

double cylinderType::area()

{

return 2 * 3.1416 * getRadius() * (getRadius() + height);

}

double cylinderType::volume()

{

return 3.1416 * getRadius() * getRadius() * height;

}

main.cpp

#include <iostream>

#include <iomanip>

using namespace std;

#include "cylinderType.h"

int main()

{

double radius,height;

double shippingCostPerLi,paintCost,shippingCost=0.0;

 

cout << fixed << showpoint;

cout << setprecision(2);

cout<<"Enter the radius :";

cin>>radius;

 

cout<<"Enter the Height of the cylinder :";

cin>>height;

 

 

cout<<"Enter the shipping cost per liter :$";

cin>>shippingCostPerLi;

 

 

//Creating an instance of CylinderType by passing the radius and height as arguments

cylinderType ct(radius,height);

 

double surfaceArea=ct.area();

double vol=ct.volume();

 

 

shippingCost+=vol*28.32*shippingCostPerLi;

 

char ch;

 

cout<<"Do you want the paint the container (y/n)?";

cin>>ch;

if(ch=='y' || ch=='Y')

{

cout<<"Enter the paint cost per sq foot :$";

cin>>paintCost;    

shippingCost+=surfaceArea*paintCost;    

}    

cout<<"Total Shipping Cost :$"<<shippingCost<<endl;

 

return 0;

}

3 0
3 years ago
The air in a room has a pressure of 1 atm, a dry-bulb temperature of 24C, and a wet-bulb temperature of 17C. Using the psychrome
TEA [102]

Answer:

(a) Relative Humidity = 48%,

Specific humidity = 0.0095

(b) Enthalpy = 65 KJ/Kg of dry sir

Specific volume = 0.86 m^3/Kg of dry air

(c/d) 12.78 degree C

(e) Specific volume = 0.86 m^3/Kg of dry air

8 0
3 years ago
Other questions:
  • The spring has a stiffness k=200 N/m and is unstretched when the 25 kg block is at A. Determine the acceleration of the block wh
    6·1 answer
  • CNG is a readily available alternative to
    5·1 answer
  • When using levers like scissors or hedge clippers, what can be done to increase the cutting force so that you don’t have to sque
    5·1 answer
  • All of the following are categories for clutch covers except
    11·1 answer
  • A pool of contaminated water is lined with a 40 cm thick containment barrier. The contaminant in the pit has a concentration of
    11·1 answer
  • A force is a push or pull in? A.a circle B.an arc C.a straight line
    5·1 answer
  • A moving-coil instrument, which gives full-scale deflection with 0.015 A has a copper coil having resistance of 1.5 Ohm at 15°C
    7·1 answer
  • Rosbel or Janette lol baakkaaa
    11·2 answers
  • Consider the formation of p-nitrophenol from p-nitrophenyl trimethyl acetate. The process is known as enzymatic hydrolysis and i
    7·1 answer
  • From the top of a vertical cliff 80m high, the angles of depression of 2 buoys lying due west of the cliff are 23° and 15° respe
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!