answersLogoWhite

0

📱

Windows XP

MS Windows XP operating system that was released for PC computers in 2001

9,737 Questions

How do you install the gps update on an Infiniti ex35?

That depends on ythe year of the car. I believe it is 2008 and on you have to have the dealer do it. Before the dealer can do it you have to call a number, pay, get a code, and the Infiniti service centre will do it for a price.

Pre-2008 you cna do it on your own.

You just reset your stat password on your gateway Pentium manufactured 8 21 99 how do you reset your BIOS settings?

On windows? Wrong category. But if it's your computer, just take the battery out of the computer's motherboard and the BIOS will reset leaving no password for the BIOS login. If its a phone then it's not possible.

Is there a bios update for asus p5sd2 FM or a Fujitsu Siemens Scaleo p 6405?

I've looked everywhere. The only way I can seem to get any information is to have a serial number for the original computer. I got the board only aftermarket from GEEKS.com and it came with no drivers or information. I found an MSI Neo-V board that has the same chipset so those drivers work. Unfortunatly the BIOS is not the same. This board has been unstable in Windows XP for a while. I gave Windows 7 Professional a shot, but the problem hangs around.

When your computer Is in safe mode you can use?

To the extent that the computer will let you use it in safe mode, yes, but likely you are going to find that many things you normally use are "not available" in safe mode.

How can you adjust the Windows 7 UAC options?

Start->Control Panel->All Control Panel Items->User Accounts-> you will have 4 options...

How can you delete pictures from the Desktop tab in display properties?

actually you can't delete pictures or wallpaper in desktop in display property, but if you want to delete those default picture, you can manually delete it, just go to C:\WINDOWS\Web\Wallpaper, there you can delete those default wallpaper or add wallpaper.

What is difference between Remote Assitance and Remote desktop?

remote desktop allows only one user either local user or expert user., remote desktop assistance allows both the novice and expert.

Can a task manager be used to terminate a process?

Yes, but be careful as terminating the wrong process can crash the system.

What is registry file?

A registry file, or most would called it "Windows Registry" is a database that stores hardware, software settings and options of Microsoft Windows Operating System.

Disadvantages of using windows that not genuine?

1. no automatic updates

2. slow processing

3. may loose some features which are added on update.

4. you cant upgrade

installing a genuine iso copy which is untouched will be better.

the modified iso files will have some bugs. slow processing and sometimes computer stuck or fail. due to this you may have to install again.

this is what happens with modified iso files of windows 7 and windows 8.

get the untouched iso file, install and activate it.

there are many activators. you can have a genuine copy.

How many types of keyboard?

there are four types of keys in keyboard. & these are as follows:-

1.functional keys.(eg. ,F1,F2,F3,..........)

2.alphabetical keys.(eg.,ABC..........)

3.numeric keys.(eg.,126............)

4.special keys.(eg.,/]window key,caps lock key................)

wish........it may help u.....

bet of luck!

Which command would you use to run a Fortran code?

Fortran is a programming language, which means you write a program in Fortran, and COMPILE it to an EXECUTABLE program. The compiler you use differs depending on which operating system platform you intend to run the program on. If you wish to run the program on a PC using Windows XP, you must first compile it using a specific Fortran-compiler for Windows XP. The result after compiling will be an executable file (with the file-ending .exe). To find a suitable compiler, check out download.com, for instance.

Given that you know it is Fortran Code, we can assume that you do not have a compiled one, but just raw Frotran Source code.

To compile it, you need a Fortan compiler suitable for both your operating system as well as the version of Fortran the code was written for.

There is a free Fortran Compiler for Fortran77 from the GNU Project:

For Windows: http://www.geocities.com/Athens/Olympus/5564/

For Unix: http://www.gnu.org/software/fortran/fortran.HTML

The above is correct assuming your question is "Given the Fortran source code, how do I run it?" However if your question is "Given the Fortran executable (ProgName.exe) how do I run it?", the is that you run it like any other program. You either: 1 - Double-click on the file name OR 2 - Open a DOS window, go to the directory where the file is and type in the filename with or without the extension .exe OR 3 - You can select Start and Run and type in the filename.

Like any "compilable" language it can be used to build an exe or a dll. But a dll MUST be called by another program to run, you can only run a .exe directly.

------------------

In addition the workflow for running a Fortran program on a *nix platform (such as Unix, Linux, or Mac OSx) would be as such:

1) Write given Fortran code with proper extension

a) Fortran 77 - *.fb) Fortran 90 - *.f90c) Fortran 95 - *.f95

2) Compile using your compiler suite (showing examples for a few different cases)

a) for gfortran as mentioned abovegfortran myfile.f90 -o myExecutableg77 myfile.f77 -o myExecutableb) for OpenMPImpif90 myfile.f90 -o myExecutablempif77 myfile.f77 -o myExecutablec) for Intel Fortranifort myfile.f90 -o myExecutable

3) To run the executable first make sure it is marked as executable, this can by going to the folder in which it was compiled then typing:

ls -l

You will then see the myExecutable file marked with permissions. Check to see if the executable permission is there. If it is not, you must change permissions to allow it to be executed. This is done by typing:

chmod a+x myExecutable

4) Finally to actually run the code you simple add the execution prefix:

./myExecutable

This will cause the file to run with output in the current terminal session. Note that if you terminate the terminal/ssh session, the code execution will halt. If you want to execute a large piece of code on lets say a remote computer (or a cluster for scientific computing) then you do the following step instead of 4

4*) To run the executable in backround and log terminal output (if you don't want to keep the terminal window open) you use the following command:

nohup ./myExecutable > terminalOuput.txt &

This will cause the executable to run in the background, it will the tell terminal not to hang up (nohup) if you close the window, and it will append the terminal output to the file terminalOutput.txt

What does the number of bits used to represent a memory address determine?

The number of bits used to represent a memory address determines the number of different addresses that can be formed. If the number of bits is N, then 2N addresses can be formed.

  • If N is 16, as it is in the 8085, then 216 = 65,536.
  • If N is 20, as it is in the 8086/8088, then 220 = 1,048,576.
  • If N is 24, as it is in the IBM 360/44, then 224 = 16,777,216.
  • If N is 32, as it is in most 32 bit modern processors, then 232 = 4,294,967,296.
  • If N is 64, as it is in most 64 bit modern processors, then 264 = 18,446,744,073,709,551,616.

Note that the amount of addressable memory is not the same as the amount of physical memory. As addressability goes up, often physical memory does not match it, which means that effective addressability is limited.

How do you open files ending in xlsx?

Use Excel 2007 (from Office 2007) or higher.

If you don't have excel you can use the XLSX viewer tool. The tool allows to view the content of Excel files. It opens XLS, XLSX and other Excel formats even if Excel is not installed at the system and also recovers corrupted files and has a built-in browser allowing you conveniently navigate through your file. See the link below.

What is a compatible file?

A compatible file is a file name extension (or format) that a program can read.

Where can PC games for Windows XP be downloaded?

PC games for Windows XP and other operating systems can be downloaded from a number of websites such as: CNET, Steam, Game Top, The Pirate Bay, My Real Games, and PC Game Pack.

How do you speed up browsing on Acer aspire one?

Many things you can check and fix such as uninstall unneeded programs, restrict startups, fix registry errors, get rid of system junks etc.