answersLogoWhite

0


Best Answer

PING is what you need to use . Ping 127.0.0.1

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the output of the command used to test a nic card?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you test a Ethernet port?

to check if your Ethernet card r INTERNET is working r not, just type the following in command prompt: ping 127.0.0.1 This command is basically used for self test of NIC(Network Interface card) card


What is used as output command in basic?

PRINT


Show the advantages of redirection with example in unix?

I/O Redirection is used when you don't want the output to go to the standard output location, e.g., the screen. It can be very helpful in capturing information to be used in a later process. For example, if the command 'ls' is used the output goes to the screen. But if the command 'ls > ls.out' is used, then the ls command output will be redirected to a file called ls.out, which can be examined, edited, or used in a later process.


What command is used to test dns name resolution at windows command prompt?

Nslookup


What is the system.out.println in java program?

The correct command is System.out.println - note the uppercase "S"! Java is case-sensitive! This command is used to send data to the standard output, by default the screen. It can be used to quickly test some program. For example, you might include the following line in your main() method: System.out.println("Hello!");


What devices are used to obtain a graphical output form a computer?

The video card, or the motherboards onboard video output.


What is the command used to test your connection to another device?

ping


What is systemoutprintln means in java?

That's the command used to output text to the console. For example: System.out.println("Hello!");


What command is used to connect lines of different text files to one line?

cat input1 input2 ... > output


Can the redirection shell metacharacter be used to redirect between a command and a another command?

Only one of the redirection operators will do this - the vertical bar or "pipe" symbol (|). It takes the standard output of one command and uses it as input to the next command in sequence.


What is the name of the test card?

You aren't specific in the test card you are asking about, but perhaps you are referring to The Rorscach test, which is also called the inkblot test. This test is used in psychiatry to help determine a person's mental state.


What is use of javap command?

The javap command is used to disassemble one or more class files. Its output depends on the options used. If no options are used, javap prints out the package, protected, and public fields and methods of the classes passed to it. javap prints its output to stdout. For example: javap java.lang.String dumps all the methods for the String class.