Joke Collection Website - Talk about mood - What is the operating environment?

What is the operating environment?

Question 1: What is the running environment of the software? The running environment includes software and hardware.

1. software: mainly only the operating system, such as windows or Linux. , including other software, such as office, and third-party runtime, such as DotNet and DirectX.

2. Hardware, mainly computer configuration, such as CPU, memory, graphics card, hard disk and so on.

Question 2: What does the running environment mean? To browse ASP files, it must be parsed by the server before browsing. If you upload an asp file to a server that supports asp, you can browse it directly. But if you are on this machine, you must set your computer as a server. Our stand-alone computer doesn't need to be set as a local area network, just as a stand-alone server.

The environment required for ASP to run is as follows:

? Microsoft Internet Information Server Version 3.0/4.0 on Windows NT Server

? Microsoft Peer Web Services Edition on Windows NT W Compensation Workstation

? Microsoft Personal Web Server on Windows 95/98

In other words, Windows 95/98/2000/XP that we often use can run asp, just set it as a stand-alone server.

To sum up: windows 95/98 needs PWS;; ; Windows 2000/XP requires IIS to be installed. In order to play the role of asp.

It can be said that PWS of WIN95/98 and IIS of WIN2000/XP/2003 are the running environments of ASP.

Question 3: What does the computer running environment mean? In the computer field, it refers to a software system that runs on the computer hardware and drives the computer and its peripheral devices to achieve a certain purpose. It also mainly refers to the running environment of software, such as XP, Linux, peripheral software needed for software running, etc. In addition, it also includes application software other than the target software, which often has a great influence on software interaction.

software environment

It also mainly refers to the running environment of software, such as XP, Linux, peripheral software needed for software running, etc. In addition, it also includes application software other than the target software, which often has a great influence on software interaction.

In the field of geographical science, the software environment is the humanistic environment, which refers to the environment constructed by the intangible conditions and the sum of intangible conditions required for communication activities. Such as the quality of citizens, political system, public opinion and so on.

Question 4: What does the running environment mean? Software and hardware configuration required for the game

For example, can the configuration of your computer meet the requirements of the game?

The game has some special requirements for the system, and some system software needs to be installed.

Question 5: What is the running environment of assembly language? The general assembly language is edited under ma * * * * and the requirements for generating exe execution files are not high. Assembly language is transformed from machine language. The earliest computer system has no available high-level language, so it is inconvenient for most users to program directly with binary codes such as 0 10 1, because it requires a very good understanding of the software and hardware resources of the computer system. The memory is also very large. Later, people used some symbols instead of some binary codes to facilitate identification. For example, the original code 10 1 1 means addition, but now101is not written. We can improve some efficiency by programming with the symbol add, which is easy for everyone to recognize. But computer execution still only recognizes binary code, so we need to convert the code written in assembly language into machine language again.

Assembly language is a low-level language. The advantage is that you can directly control the software and hardware resources of the computer. The disadvantage is that the requirements for programmers are very high. When a computer executes, the code written in assembly language has the highest execution efficiency, which is as high as the machine language code.

Question 6: Want to install this system! What does the running environment mean? Don't care about this running environment.

You have a ghost version of win7 64-bit system.

After downloading, you can burn it directly into a CD or install it with a USB flash drive and PE.

Question 7: Operating environment: What does WinAll mean? All operating systems.

Question 8: What is the running environment of the game? Right-click My Computer-Properties

Then you can check the system you are using.

But don't worry, you can definitely play because you are surfing the Internet.

IE browsers all need XP.

Don't worry, hope to adopt!

Question: What is the running environment of java? Java platform consists of two parts: one is Java virtual machine, and the other is Java application programming interface (Java API), which constitutes the basic running environment of Java. Java API is a large and well-made software * * *, in which there are many controls needed for development to assist development. Java API and JVM are integrated on the machine hardware. In other words, the Java platform separates a Java application from the hardware system to ensure the independence of the program. In order to better meet the needs of development, Java designers have provided us with three Java platforms: Java 2 Micro Editio Dan (J2ME), Java 2 Standard Edition (J2SE) and Java 2 Enterprise Edition (J2EE). Each version provides a rich development toolbox to meet different development needs.

Let's take a concrete look at the concrete structure of the core JVM of the Java platform.

In order to better interpret and execute the bytecode generated by compilation, I divide the JVM into six main blocks: JVM interpreter, instruction system, register, stack, storage area and fragment recovery area.

The JVM interpreter is the CPU that processes the domain code of this virtual machine.

The JVM instruction set is very similar to a hardware computer. An instruction consists of two parts: an operation code and an operand. The operation code is an 8-bit binary number, and the operands can be determined as required. Opcode is the function of interpreting an instruction, so the JVM can have as many as 256 different operation instructions.

The JVM has its own virtual registers, so it can quickly exchange data with the JVM interpreter. For functional needs, the JVM has set four commonly used 32-bit registers: pc (program counter), optop (operand stack top pointer), frame (current execution environment pointer) and vars (pointer to the first local variable in the current execution environment).

JVM stack is the place and control center where data and information are stored when instructions are executed, and it provides the JVM interpreter with the information needed for operation.

The JVM storage area is used to store compiled bytecodes and other information.

JVM fragment recycling refers to recycling concrete instances of used Java classes from memory, which saves the trouble and danger of developers programming and controlling memory themselves. With the continuous upgrading of JVM, the technology and algorithm of debris recovery are more reasonable. Classical algorithms include reference counting, copying, tag clearing and tag sorting. After JVM version 1.4. 1, a technology called generational collection came into being. Simply put, it is to divide the time of an object in the program into several generations, and use this as a standard to recycle fragments. Debris recovery will be explained in a later article.

Question10: What is the best running environment for C language? That's a bad question, and my answer is also suspected of watering. Hey, just saying.

C language is only the language end, and has nothing to do with the running environment. Your question is which C language developed the integrated environment?

For beginners, it's best to use the system you are most familiar with, windows or linux, which is the best one for you. Under this operating system, when a compiler writes code corresponding to it, it can be any text editor, as long as you remember to change the extension to *. When saving in c c++, you can use *. Cpp to write a header file instead of code and save it as *. h.

You need to use an integrated environment when compiling links and debugging. Under the window platform, there are VC and TC, and there are also compilers such as gcc under linux.

There is no best, only the most suitable. There are different tools under different operating platforms and different development objects.

Freshmen who are unfamiliar with computers only use the most convenient window platform +TC 3.0 as a tool to learn C language.

In the past, TC (2.0, 3.0) was the most commonly used under DOS.

VC(6, 7, 9 ...) is the most commonly used under WINDOWS, and C++builder was also commonly used before.

There is no interface under Linux. I only know that gcc and cc are not clear about anything else.

Unix is similar to linux, and different versions have related C compilers.

Can you get two points for answering so many questions?