
eBook - ePub
Software Development for Engineers
C/C++, Pascal, Assembly, Visual Basic, HTML, Java Script, Java DOS, Windows NT, UNIX
- 674 pages
- English
- ePUB (mobile friendly)
- Available on iOS & Android
eBook - ePub
Software Development for Engineers
C/C++, Pascal, Assembly, Visual Basic, HTML, Java Script, Java DOS, Windows NT, UNIX
About this book
Specialisation in software has become a thing of the past. With the move towards graphical user interface programming, engineers must have a sound knowledge of several programming languages and for the first time most of the main technical languages are introduced in a single volume.All the example programs included relate to real life applications to provide a long needed reference that students will find invaluable throughout their studies, and a definitive guide for professional developers requiring an insight into other languages. Using C++ and Pascal to provide a basic grounding in software development the author then goes on to introduce more advanced concepts such as object-orientated design through the development of C++. Sections on Visual Basic and 80X86 Assembly Language follow before Java, Windows, NT and DOS are introduced, finishing with an overview of the UNIX system.
Frequently asked questions
Yes, you can cancel anytime from the Subscription tab in your account settings on the Perlego website. Your subscription will stay active until the end of your current billing period. Learn how to cancel your subscription.
No, books cannot be downloaded as external files, such as PDFs, for use outside of Perlego. However, you can download books within the Perlego app for offline reading on mobile or tablet. Learn more here.
Perlego offers two plans: Essential and Complete
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes! You can use the Perlego app on both iOS or Android devices to read anytime, anywhere — even offline. Perfect for commutes or when you’re on the go.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Yes, you can access Software Development for Engineers by William Buchanan in PDF and/or ePUB format, as well as other popular books in Computer Science & Programming. We have over one million books available in our catalogue for you to explore.
Information
PART I
UNIX
35
Introduction to UNIX
35.1 Introduction
UNIX is an extremely popular operating system and dominates in the high-powered, multi-tasking workstation market. It is relatively simple to use and to administer, and also has a high degree of security. UNIX computers use TCP/IP communications to mount disk resources from one machine onto another. Its main characteristics are:
• Multi-user.
• Pre-emptive multitasking.
• Multi-processing.
• Multi-threaded applications.
• Memory management with paging (organizing programs so that the program is loaded into pages of memory) and swapping (which involves swapping the contents of memory to disk storage).
The two main families of UNIX are UNIX System V and BSD (Berkeley Software Distribution) Version 4.4. System V is the operating system most often used and has descended from a system developed by the Bell Laboratories and was recently sold to SCO (Santa Cruz Operation). Popular UNIX systems are:
• AIX (on IBM workstations and mainframes).
• HP-UX (on HP workstations).
• Linux (on PC-based systems).
• OSF/1 (on DEC workstations).
• Solaris (on Sun workstations).
An initiative by several software vendors has resulted in a common standard for the user interface and the operation of UNIX. The user interface standard is defined by the common desktop environment (CDE). This allows software vendors to write calls to a standard CDE API (application specific interface). The common UNIX standard has been defined as Spec 1170 APIs. Compliance with the CDE and Spec 1170 API is certified by X/Open, which is a UNIX standard organization.
35.2 Login into the system
In order to connect to the system a valid user ID and a password are required. These are assigned initially by the system manager. In Sample session 35.1 the user bill_b logs in with the correct password. If the user ID and password a...
Table of contents
- Cover image
- Title page
- Table of Contents
- Dedication
- Copyright
- Preface
- PART A: C/PASCAL
- PART B: C++
- PART C: Assembly Language
- PART D: Visual Basic
- PART E: HTML/Java
- PART F: DOS
- PART G: Windows 3.x
- PART H: Windows 95/NT
- PART I: UNIX
- APPENDIX A: Java Classes
- APPENDIX B: ANSI-C Functions
- APPENDIX C: Turbo Pascal Reference
- APPENDIX D: Assembly Language Reference
- APPENDIX E: ASCII Character Set
- Index