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
Len [333]
1 year ago
12

which of the following statements are true about client-side DNS? (Choose all that apply). a. If an APIPA address is assigned, t

hen DNS is the problem b. Client-side DNS should be configured to point towards the DNS server that is authoritative for the domain that client wants to join C.Check out DNS settings using the NSLookup command d.Check out DNS settings using the DIG command e.The cache.dns file has the IP addresses of the 13 root DNS servers f.If a web site can be reached by IP address and not by host name, then DNS or the Hosts file would be the problem
Engineering
1 answer:
Brums [2.3K]1 year ago
5 0

The statements which are true about client-side DNS include all of the following;

B. Client-side DNS should be configured to point towards the DNS server that is authoritative for the domain that client wants to join.

C. Check out DNS settings using the NSLookup command.

D. Check out DNS settings using the DIG command.

E. The cache.dns file has the IP addresses of the 13 root DNS servers.

B. If a web site can be reached by IP address and not by host name, then DNS or the Hosts file would be the problem.

<h3>What is a DNS server?</h3>

In Computer technology, a DNS server can be defined as a type of server that is designed and developed to translate domain names into IP addresses, so as to allow end users access websites and other internet resources through a web browser.

This ultimately implies that, a DNS server simply refers to a type of server that is designed and developed to translate requests for domain names into IP addresses for end users.

Read more on a domain names here: brainly.com/question/19268299

#SPJ1

You might be interested in
A car accelerates from rest with an acceleration of 5 m/s^2. The acceleration decreases linearly with time to zero in 15 s, afte
Tpy6a [65]

Answer: At time 18.33 seconds it will have moved 500 meters.

Explanation:

Since the acceleration of the car is a linear function of time it can be written as a function of time as

a(t)=5(1-\frac{t}{15})

a=\frac{d^{2}x}{dt^{2}}\\\\\therefore \frac{d^{2}x}{dt^{2}}=5(1-\frac{t}{15})

Integrating both sides we get

\int \frac{d^{2}x}{dt^{2}}dt=\int 5(1-\frac{t}{15})dt\\\\\frac{dx}{dt}=v=5t-\frac{5t^{2}}{30}+c

Now since car starts from rest thus at time t = 0 ; v=0 thus c=0

again integrating with respect to time we get

\int \frac{dx}{dt}dt=\int (5t-\frac{5t^{2}}{30})dt\\\\x(t)=\frac{5t^{2}}{2}-\frac{5t^{3}}{90}+D

Now let us assume that car starts from origin thus D=0

thus in the first 15 seconds it covers a distance of

x(15)=2.5\times 15^{2}-\farc{15^{3}}{18}=375m

Thus the remaining 125 meters will be covered with a constant speed of

v(15)=5\times 15-\frac{15^{2}}{6}=37.5m/s

in time equalling t_{2}=\frac{125}{37.5}=3.33seconds

Thus the total time it requires equals 15+3.33 seconds

t=18.33 seconds

3 0
2 years ago
What is the governing ratio for thin walled cylinders?
Ann [662]

Answer:

The governing ratio for thin walled cylinders is 10 if you use the radius. So if you divide the cylinder´s radius by its thickness and your result is more than 10, then you can use the thin walled cylinder stress formulas, in other words:

  • if \frac{radius}{thickness} >10 then you have a thin walled cylinder

or using the diameter:

  • if \frac{diameter}{thickness} >20 then you have a thin walled cylinder
3 0
3 years ago
A 600 MW power plant has an efficiency of 36 percent with 15
ololo11 [35]

Answer:

401.3 kg/s

Explanation:

The power plant has an efficiency of 36%. This means 64% of the heat form the source (q1) will become waste heat. Of the waste heat, 85% will be taken away by water (qw).

qw = 0.85 * q2

q2 = 0.64 * q1

p = 0.36 * q1

q1 = p /0.36

q2 = 0.64/0.36 * p

qw = 0.85 *0.64/0.36 * p

qw = 0.85 *0.64/0.36 * 600 = 907 MW

In evaporation water becomes vapor absorbing heat without going to the boiling point (similar to how sweating takes heat from the human body)

The latent heat for the vaporization of water is:

SLH = 2.26 MJ/kg

So, to dissipate 907 MW

G = qw * SLH = 907 / 2.26 = 401.3 kg/s

8 0
3 years ago
Read 2 more answers
For this question you must write a java class called Rectangle and a client class called RectangleClient. The partial Rectangle
Alex Ar [27]

Answer:

Java program is given below. You can get .class after you execute java programs, You can attach those files along with .java classes given , Those .class files are generated ones.

Explanation:

//Rectangle.java class

public class Rectangle {

private int x;

private int y;

private int width;

private int height;

// constructs a new Rectangle with the given x,y, width, and height

public Rectangle(int x, int y, int w, int h)

{

this.x=x;

this.y=y;

this.width=w;

this.height=h;

}

// returns the fields' values

public int getX()

{

return x;

}

public int getY()

{

return y;

}

public int getWidth()

{

return width;

}

public int getHeight()

{

return height;

}

// returns a string such as “Coordinate is (5,12) and dimension is 4x8” where 4 is width and 8 is height. public String toString()

public String toString()

{

String str="";

//add x coordidate , y-coordinate , width, height and area to str and return

str+="Coordinate is ("+x+","+y+")";

str+=" and dimension is : "+width+"x"+height;

str+=" Area is "+(width*height);

return str;

}

public void changeSize(int w,int h)

{

width=w;

height=h;

}

}

======================

//main.java

class Main {

public static void main(String[] args) {

//System.out.println("Hello world!");

//create an object of class Rectangle

Rectangle rect=new Rectangle(5,12,4,8);

//print info of rect using toString method

System.out.println(rect.toString());

//chamge width and height

rect.changeSize(3,10);

//print info of rect using toString method

System.out.println(rect.toString());

}

}

==========================================================================================

//Output

Coordinate is (5,12) and dimension is : 4x8 Area is 32

Coordinate is (5,12) and dimension is : 3x10 Area is 30

========================================================================================

6 0
3 years ago
According to the model rules section 240.15, rules of professional conduct, licensed professional engineers are obligated to:___
Sedaia [141]

Answer:

Option C (practice by..............technical) would be the appropriate choice.

Explanation:

  • A prerogative seems to be the discipline or nature of the design process to ensure.
  • All certificates must, therefore, throughout compliance with current requirements including professional competence, express one's right and privilege of providing offers perhaps throughout the areas of qualified professionals.

Some other alternatives that are given aren't connected to a particular scenario. But that's the best solution above.

7 0
3 years ago
Other questions:
  • A DNS record that's used to redirect traffic from one domain name to another is known as a _______ record.
    11·1 answer
  • When we utilize a visualization on paper/screen, that visualization is limited to exploring: Group of answer choices Relationshi
    9·1 answer
  • A piston-cylinder device contains 0.15 kg of air initially at 2 MPa and 350 °C. The air is first expanded isothermally to 500 kP
    15·1 answer
  • (35 points) This is a legit question that I have for a device FOR my homework.
    12·1 answer
  • Wet steam at 15 bar is throttled adiabatically in a steady-flow process to 2 bar. The resulting stream has a temperature of 130°
    7·1 answer
  • Realize the function f(a, b, c, d, e) = Σ m(6, 7, 9, 11, 12, 13, 16, 17, 18, 20, 21, 23, 25, 28)using a 16-to-1 MUX with control
    13·1 answer
  • The difference in quantity between the add and full marks on an engine oil dipstick is typically
    5·1 answer
  • Make a sketch of a simple mechanically expanded brake and indicate the forces ​ ​ acting on the leading shoe when the brake is a
    10·1 answer
  • Which of the following are considered software piracy? Check all of the boxes that apply.
    5·1 answer
  • The team needs to choose a primary view for the part drawing. Three team members make suggestions:
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!