What command is used to request the name and address information from a dns server?

Answers

Answer 1
nslookup is deprecated in favor of dig

Related Questions

To change the overall design of an entire document to include colors, fonts, and effects, a user should apply a?

Answers

Answer:

Theme

Explanation:

To change the overall design of an entire document to include colors, fonts, and effects, you should apply a theme. Theme comprise of color, fonts and effects.

Cheers.

Ascii is the encoding standard used to represent _____ in digital form.

Answers

It is needed to represent character encoding, so letters and numbers.

ASCII is the encoding standard used to represent keyboard characters in digital form.

What is ASCII?

The most used character encoding system for text data in computers and on the internet is ASCII (American Standard Code for Information Interchange). Unique values exist in normal ASCII-encoded data for 128 alphabetic, numeric, or special extra characters and control codes.

The ASCII character encoding is based on wireless character encoding. In 1963, the American National Standards Institute established it as a computer standard.

As per the question,

ASCII is the encoding standard used to represent keyboard characters in digital form.

For example, the code for the letter "A" is 65, and the code for the digit "1" is 49.

Thus, the required fill-in-the-blank would be "keyboard characters".

To learn more about the keyboard characters click here:

https://brainly.com/question/14882003

#SPJ5

Is a small file that a web server writes to the disk drive of the client computer, containing information about the user?

Answers

Is a Cookie is a small file that a web server writes to the disk drive of the client computer, containing information about the user?

What is the name of a popular high-level computer programming and scripting language that is the name of a snake?

Answers

The name of the programming language is PYTHON.
Python is a popular, high level programming language that is used for general purpose programming. Python is objected oriented  and it uses dynamic typing for memory management. The programming language was created in the late 80's by Guido Van Rossum.

A bookmarking site is a website that enables members to manage and share media such as photos, videos, and music. true or false

Answers

The answer is False. 

Can't expand stack segment by 8 bytes to 524288 bytes.

Answers

try to clear your cashe its possible on a good computer but on a old its not possible for that hardware

Final answer:

The message “Can’t expand stack segment by 8 bytes to 524288 bytes” suggests a stack overflow issue in a program that has reached the maximum size limit for the stack memory allocated by the operating system.

Explanation:

In the context of programming and software development, encountering an error message such as “Can’t expand stack segment by 8 bytes to 524288 bytes” usually indicates that the program is attempting to use more stack memory than is allowed. The stack is a region of memory used for the temporary storage of variables, return addresses, and for managing function calls. This type of error is often termed a stack overflow, which occurs when there is an attempt to push more onto the stack than it can handle. This could be due to excessive or infinite recursion, allocating too much space for variables on the stack, or a lack of proper memory management in the code. To resolve this issue, a programmer would need to review the code for functions that may be using excessive stack space, and modify the code to use the stack more efficiently or allocate memory on the heap instead.

Installing an operating system onto a hard drive with no previous os installed is known as

Answers

a clean install. Actually as long as the drive has a new filesystem, it's a clean install.

What does a linear bus topology used to connect all network devices?

Answers

A linear bus topology uses a common background cable to connect all network devices.

Final answer:

A linear bus topology connects all network devices to a single cable backbone. Device B shows a linear, ohmic relationship, meaning it follows Ohm's Law. High voltage is used in power lines to reduce current and therefore minimize line losses over long distances.

Explanation:

A linear bus topology is a network design in which all network devices are connected to a single continuous length of cable, often referred to as the backbone. Each device is directly connected to this backbone through a branching cable. In a scenario where device B displays a linear relationship and is ohmic, it means that the device obeys Ohm's Law, where voltage is directly proportional to the current across a conductor at a constant temperature, resulting in a straight-line graph when voltage is plotted against current.

Furthermore, in electrical power transmission, it is beneficial to use high voltage to reduce currents over long distances due to resistance in the lines. Although the conductors have low resistance, long distance lines can accumulate significant losses. Higher voltage leads to lower current and therefore, reduces line losses, making for more efficient transmission of power over kilometers long distances from the power company.

Your crt monitor flickers. what should you do

Answers

To stop your CRT screen from flickering, you need to change the rate (Hertz) at which your monitor refreshes. To do this in Windows 7, begin by clicking on Start>Control Panel>Display. This will bring up your computer's displaysettings.

A _____ is a search engine that combines internet technology with traditional library methods of cataloguing and assessing data.

Answers

The correct answer would be a Virtual Library.

What does API stand for

Answers

API stands for Application programming interface.

API stands for "Application programming interface". API (Application Programming Interface) is defined as a computing interface that defines the interaction between multiple software intermediaries.

What is API?

API stands for "Application programming interface".

API in computer helps computer technology interact with each other

API (Application Programming Interface) is defined as a computing interface that defines the interaction between multiple software intermediaries.

API key is the specific identifier use authenticate the developer user and call programs for the API.

The API keys often serve as a specific identifier and a secret token for authentication and which usually have a set of access rights to the API associated with it.

It is used to authenticate a project with an API instead of a human user. Different platforms can execute and use API keys in different ways.

Learn more about API here;

https://brainly.com/question/17257153

#SPJ2

Ethan is responsible for writing the dialogue in a movie. Which role is he playing? Ethan is playing the role of a(n).....''BLANK''..... and is responsible for writing the dialogue in the movie.

Answers

Screenwriter! A screenwriter's role is to pen the script for a film.

Answer:

Screenwriter

Explanat

Assigning ____ to a field means that no other classes can access the field’s values.

Answers

classes in theb assigned

Powerpoint increased the weight of a line in ____ increments.

Answers

One-fourth increments

Which type of software is created and updated by a worldwide community of programmers and is available for​ free?

Answers

Open source is created and updated by a worldwide community of programmers and is available for​ free. Many students are in luck, as they can easily study publicly accessible codes and have a possibility to make better software. It also has lots of advantages, such as getting high-quality results when the source code is passed around, tested and fixed.The most important thing - it is a valuable learning opportunity for programmers and opportunity to improve their skills.

The motherboard is considered the "brain” of a computer because it controls
a computer’s speed.
performs specific tasks.
connects a system’s components.
processes stored information.

Answers

Its connect a system’s components .

Answer:Its connect a system’s components .

Explanation:

took test on edge 2020

import java.util.Scanner;

public class Grade
{
public static void main (String[] args)
{
// Declare constants
final double IN_WEIGHT = 0.6; // in-class weight is 60%
final double OUT_WEIGHT = 0.4; // out-of-class weight is 40%

// Declare variables
int preLabPts; //number of points earned on the pre-lab assignment
int preLabMax; //maximum number of points possible for pre-lab
int labPts; //number of poitns earned on the lab
int labMax; //maximum number of points possible for lab
int postLabPts; //number of points earned on the post-lab assignment
int postLabMax; //maximum number of points possible for the post-lab
int outClassAvg; //average on the out of class (pre and post) work
int inClassAvg; //average on the in-class work
double labGrade; //final lab grade

Scanner scan = new Scanner(System.in);

// Get the input
System.out.println("\nWelcome to the Grade Calculator\n");
System.out.print("Enter the number of points you earned on the pre-lab: ");
preLabPts = scan.nextInt();
System.out.print("What was the maximum number of points you could have earned? ");
preLabMax = scan.nextInt();
System.out.print("Enter the number of points you earned on the lab: ");
labPts = scan.nextInt();
System.out.print("What was the maximum number of points for the lab? ");
labMax = scan.nextInt();
System.out.print("Enter the number of points you earned on the post-lab: ");
postLabPts = scan.nextInt();
System.out.print("What was the maximum number of points for the post-lab? ");
postLabMax = scan.nextInt();
System.out.println();

// Calculate the average for the out of class work
outClassAvg = (preLabPts + postLabPts) / (preLabMax + postLabMax) * 100;

// Calculate the average for the in-class work
inClassAvg = labPts / labMax * 100;

// Calculate the weighted average taking 40% of the out-of-class average
// plus 60% of the in-class
labGrade = OUT_WEIGHT * outClassAvg + IN_WEIGHT * inClassAvg;

// Print the results
System.out.println("Your average on out-of-class work is " + outClassAvg + "%");
System.out.println("Your average on in-class work is " + inClassAvg + "%");
System.out.println("Your lab grade is " + labGrade + "%");
System.out.println();
}
}

can anyone help fix this code?

Answers

package Hello;
import java.util.Scanner;

public class NewClass1 {
   
 public static void main (String[] args)
 {
 // Declare constants
 final double IN_WEIGHT = 0.6; // in-class weight is 60%
 final double OUT_WEIGHT = 0.4; // out-of-class weight is 40%

 // Declare variables
 int preLabPts; //number of points earned on the pre-lab assignment
 int preLabMax; //maximum number of points possible for pre-lab
 int labPts; //number of poitns earned on the lab
 int labMax; //maximum number of points possible for lab
 int postLabPts; //number of points earned on the post-lab assignment
 int postLabMax; //maximum number of points possible for the post-lab
 int outClassAvg; //average on the out of class (pre and post) work
 int inClassAvg; //average on the in-class work
 double labGrade; //final lab grade

 Scanner scan = new Scanner(System.in);

 // Get the input
 System.out.println("\nWelcome to the Grade Calculator\n");
 System.out.print("Enter the number of points you earned on the pre-lab: ");
 preLabPts = scan.nextInt();
 System.out.print("What was the maximum number of points you could have earned? ");
 preLabMax = scan.nextInt();
 System.out.print("Enter the number of points you earned on the lab: ");
 labPts = scan.nextInt();
 System.out.print("What was the maximum number of points for the lab? ");
 labMax = scan.nextInt();
 System.out.print("Enter the number of points you earned on the post-lab: ");
 postLabPts = scan.nextInt();
 System.out.print("What was the maximum number of points for the post-lab? ");
 postLabMax = scan.nextInt();
 System.out.println();

 // Calculate the average for the out of class work
 outClassAvg = (preLabPts + postLabPts) / (preLabMax + postLabMax) * 100;

 // Calculate the average for the in-class work
 inClassAvg = labPts / labMax * 100;

 // Calculate the weighted average taking 40% of the out-of-class average
 // plus 60% of the in-class
 labGrade = OUT_WEIGHT * outClassAvg + IN_WEIGHT * inClassAvg;

 // Print the results
 System.out.println("Your average on out-of-class work is " + outClassAvg + "%");
 System.out.println("Your average on in-class work is " + inClassAvg + "%");
 System.out.println("Your lab grade is " + labGrade + "%");
 System.out.println();
 }
 }

 

What color typically indicates the speaker port on a sound card?

Answers

The answer to this question would be: Lime green

The lime green color code is for audio output for speaker or headphones. Color coding is greatly helpful to make sure that the port you are using is correct. Using the color you can determine what kind of input or output the port is for. There is a few others color coding like pink for analog microphone input, or light blue for audio input of analog line.
Lime Green was color typically indicates the speaker port on a sound card

What feature sets Macs apart from other operating systems?

desktop
Finder
mouse
GUI

Answers

Desktop, a mac doesn't have a separate power system
Trick question!

Desktop and mouse are NOT a part of the operating system. They are operating system although mac is the only one to use a one button mouse

The GUI and finder feature are only used with apple but the apple operating system is built on top of the unix operating system. Similar to Linux and other systems that do have similar features but just with different names.

If the question was what sets apple systems apart from others it would be the mouse with the one button.

Is a computer network that spans a relatively small area, allowing all computer users to connect with each other to share data and peripheral devices, such as printers. enterprise network wide area network campus area network local area network value-added network?

Answers

The answer is a Local Area Network

What is the main scientific weakness in watson and crick's paper?

Answers

When writing a scientific paper, it's ethical to refer to those who helped you in your paper and to cite all the references you used in order to give credits to the owners of these references.

In Watson and Crick's paper, they did not refer to those who assisted them in their research neither gave them credit. This is somehow considered as stealing someone's work and referring it to yourself.
This was the major scientific error in their paper.
One weakness of their paper is that much of the work was drawn by Crick's wife and she was not credited. They also do not answer the concern of what makes complementary nucleotides rotate in space, thereby producing a DNA spiral.

When you save a file to the cloud, it means your file was stored _____. Question 1 options: on the internet on your hard drive on your computer's RAM on a flash drive

Answers

Answer:

Option a. On the internet

When you save a file to the cloud, it means your file was stored on the internet.

Explanation:

Cloud storage can be defined as the remotely working service model that manages, maintains, backups all the data and make it available to the users over the network all the time.

This means all the data is accessed and modified when needed, without the availability of some specific hardware device. Moreover cloud computing expels the problem of  low space on the drive.

Storage on cloud computing is much easier and secure now-a-days and has many advantages including mobility and all time access and fear free environment regarding loosing of data.

i hope it will help you!

Which of the following is important when using technology? A) Governance B) Credentialing C) Ethical conduct D) Preparation

Answers

It is important to have some sort of preparation when using technology. In order to use technology it will take a large amount of time to prepare and understand what the peace of equipment, (technology) is able to unfold.

Important factors while using technology are:

A) Governance

B) Credentialing

C) Ethical conduct

D) Preparation

Briefly,

A)

Governance: Governance refers to the establishment of rules, regulations, and policies that guide the appropriate and responsible use of technology.

It involves creating structures and processes to ensure that technology is used in a fair and equitable manner, and that any potential risks or issues are properly managed.

B)

Credentialing: Credentialing involves obtaining and maintaining the necessary qualifications and certifications to use specific technologies or perform certain tasks.

It can include obtaining degrees, certifications, or licenses that demonstrate a person's expertise and competence in using technology effectively and safely.

C)

Ethical conduct: Ethical conduct is crucial when using technology. It involves behaving in a responsible and moral manner, respecting the privacy and rights of others, and using technology for positive purposes.

Ethical conduct includes things like avoiding plagiarism, respecting intellectual property rights, and being mindful of the impact of technology on individuals and society.

D)

Preparation: Preparation is indeed important when using technology. It involves acquiring the necessary knowledge and skills to effectively utilize technology. This can include learning how to operate specific devices, understanding software applications, and staying updated with the latest technological advancements.

Know more about technology,

https://brainly.com/question/9171028

#SPJ6

Anti-bullying laws in most states are designed to provide

A. guidelines for appropriate online behavior.
B. reasons for why people bully others online.
C. schools with ways to punish online bullying.
D. advice for preventing online bullying.

Answers

i would put it as c but that what i think 

Okay. Anti-bullying laws aren't exactly designed to specifically say why people bully others online nor to give advice for preventing online bullying.. Therefore, B and D are out. It doesn't fully give guidelines for appropriate online behavior, but more of reasons with helping schools find ways to punishing those who bully online. The answer is C.

Which of the following statements is the least abstraction of the World Wide Web?

A. a bunch of Web pages

B.documents, images, and other data you can access by providing a URL (Web address)

C.the Internet

D.Wikipedia, Facebook, and other cool sites

Answers

B.documents, images, and other data you can access by providing a URL (Web address)

What command should you use to determine the fqdn of a computer with ip address 172.31.209.5?

Answers

I use host -a

dig and nslookup could do it, I forget the switches and arguments.

What actually changes the value excel stores to a user determined number of decimal places?

Answers

The ROUND function can be used to do this. The function, in its final argument, has a section that allows for the exact number of digits that the returned value should be truncated at, which will set the exact number of decimal digits stored in that cell.

You can block logical ports from invaders and make your computer invisible to others on the internet by installing ________. a firewall a packet sniffer antivirus software a packet filter

Answers

A firewall is the best choice. This will help protect your computer from being seen on a network and being invaded by snoopers who are wanting to do damage to your system or files. Having a firewall is the first line of defense against hacking and sabotage.

a personal naratiation is like a autobiography in that it

A tells your whole life story, from birth to present
B is a story about something in the author life written by the author
C is written in third person
D is a story about a person written by another person

Answers

B is correct...

Please vote my answer brainliest. thanks!

A(n) ________ device facilitates file sharing and data backup.

Answers

A NAS device facilitates file sharing and data backup.

NAS stands for "Network Attached Storage". It a device design specially to store and manage files and within a network. It provides centralized data access and storage.
NAS is somehow considered as a specialized external hard drive.
network sharing device This usually acts like a router and when the process is initiated activities like printing, surfing the internet or even files that were in a device that can shared, stored, retrieved on the other device that the network is being shared with. An example of this can be a wireless printer, a mobile phone that the internet is shared with the computer or even a normal router which acts as a switch for sharing network activity.
Other Questions
what are found on the right side of the arrow in a chemical reaction Researchers had students wear a sleep-monitoring device overnight. students who were most sleep deprived subsequently showed a greater incidence of ________ during a 42-minute video lecture. Evaluate the extent of change in ideas about american independence between 1763 and 1783 What the answer to this Mientras ___________, yo me ca dos veces. camina caminaba camino caminan To many who opposed it, shays's rebellion was a reminder that: Based on how the metabolic rates of ectotherms and endotherms respond to temperature, at which temperature would you expect the differences in metabolic rates between ectotherms and endotherms to be largest? (hint: think about the response curve of each type of animal to environmental temperature.) What is the relationship between marginal cost and marginal revenue when profit is at its maximum value? All BUT one is an example of a invasive species. That is A)zebra mussels introduced into the Great Lake region from Russia that have affected the local species of mussels. B)the brown tree snake that was introduced to Guam from Australia and has led to the devastation of the local bird population. C)tomato plants brought into a garden and given the opportunity to grow and thrive without any harm to any other plant species. Eliminate D)kudzu imported from China as a ornamental plant that has grown to cover native forests throughout the southeastern United States. Solve for y: 10y + 3.8 = 38.8 Steven bagged 52 pounds of potatoes. About what is that measure in kilograms? Round to the nearest hundredth which of the following should have a hyphen If we are moving from a large value to a small value we move the decimal point to the Ruth was in a car accident that resulted in a head injury. she cannot remember the events that occurred several hours prior to the accident. ruth is experiencing: Write a brief description of at least five sentences, in Spanish, describing yourself and what you like. Use the adjectives from this lesson and the verb gustar. You are offered an item for $17.85. If the seller states he normally sells the same item for $19.95, what percentage discount is he offering you? You claim to have a magic coin that will land on heads whenever you want. Your friend dares you to prove it by tossing 4 heads in a row. Assuming the coin is fair, what is the probability that your magic will fail? A) 50%B) 62.5% C) 75% D) 93.75% Your extra credit assignment is to watch the movie "Erin Brockovich" closely and write a review paper discussing concepts we are covering in the class that can be related to the context of this movie. The review paper should be in a typed write-up not more than 4 pages, double spaced with 12 font size. To give you some directions, you can talk about Externality, Transaction Cost, Burden of Proof, Coase Theorem, etc. and any other concepts that you can relate to its storyline. how many people have renters insurance in new york state Last week, 4.3 inches of rain filled a rain gauge. This week, another 3.375 inches of rain filled the gauge. What was the total amount of rain that filled the rain gauge in two weeks? Enter your answer in the box. Steam Workshop Downloader