answersLogoWhite

0

program it right

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What tone does the authors syntax and diction create in the story my life as a bat?

The author's syntax and diction in "My Life as a Bat" creates a contemplative and introspective tone. The style conveys a sense of curiosity and wonder in exploring the experience of being a bat, blending the natural world with philosophical musings.


Which is not executable file TXT BAT COM EXE?

BAT is not an executable file in windows.


How do you create simple bat files?

First open Notepad (Start > All Programs > Accessories > Notepad) and enter in this (Without the numbers): 1. @echo off2. echo Hello, this is your first bat file!3. pause>nulAfter you have entered that in save it as "My First.bat". Now go to the location you just saved it at and open it! It should say "Hello, this is your first bat file!" If it does, you have made your first bat file!


A file with a bat file extension is called an what?

A batch file.


What is the full form of BAT?

if by bat you made the .bat file extension then the full form of bat is batch. it is a file that is created with batch script, the windows command line.


Is bat a graphic file?

no


A file with a .bat extension?

A batch file, often used by computer processes to perform a series of stored operations as a group, have the file extension .bat.


What is the extension of batch file?

the extension of a batch file is ".bat"


Where is bat file stored in xp?

.bat files can be placed anywhere.


What does the file extension .bat mean at the end of a file name?

It is a batch command file.


How many charicters can a DOS file have?

A DOS file, or .bat file can have unlimited characters.


When running commands such as ipconfig or tracert saved in a .bat file how do I save the output. FYI I am using notepad?

Use "> xxx.xxx" after the name of the .bat file on the command line to save the output in file xxx.xxx Example: myscript.bat > myoutput.txt This runs the commands in the file myscript.bat, but instead of printing the output on the screen saves the output to the file myoutput.txt Note that this command syntax is used in Unix (Unix probably copied it from Multics) and Microsoft added it to MSDOS along with lots of other Unix like features at some point, because of their usefulness (you could not do this with early versions of MSDOS which was based on CP/M-86 which borrowed the syntax of one of the DEC PDP-8 OSs; none of which could redirect program output to files).