Geometry.Net - the online learning center
Home  - Basic_C - Cobol Programming
e99.com Bookstore
  
Images 
Newsgroups
Page 1     1-20 of 144    1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | Next 20
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

         Cobol Programming:     more books (100)
  1. Programming In COBOL / 400 by James Cooper, Nancy Stern, et all 2001-11-01
  2. Structured COBOL Programming, Second Edition (Shelly Cashman Series) by Gary B. Shelly, Thomas J. Cashman, et all 1999-11-18
  3. Advanced COBOL for Structured and Object-Oriented Programming, 3rdEdition by Gary DeWard Brown, 1998-11-23
  4. Structured COBOL Programming, 7th Edition by Nancy Stern, Robert A. Stern, 1994-02-02
  5. COBOL: From Micro to Mainframe: Fujitsu Version (3rd Edition) by Robert T. Grauer, Carol Vasquez Villar, et all 1999-12-22
  6. Java for COBOL Programmers (2nd Edition) (Programming Series) by John C Byrne, Jim Cross, 2002-06
  7. Murach's Structured COBOL by Mike Murach, Anne Prince, et all 2000-10
  8. COBOL for Dummies by Arthur Griffith, 1997-10-30
  9. COBOL Programming Using the .NET Framework by Ronald D. Reeves, 2002-03-11
  10. DB2 for the COBOL Programmer, Part 2, 2nd Ed. by Curtis Garvin, Anne Prince, et all 1999-10
  11. Java for COBOL Programmers, Third Edition (Programming Series) by John C. Byrne, 2008-04-23
  12. CICS: A How-To for COBOL Programmers by David Shelby Kirk, 1993-09-24
  13. Introduction to COBOL: A Guide to Modular Structured Programming by David M. Collopy, 1999-09-28
  14. DB2 for the COBOL Programmer, Part 1, 2nd Ed. by Curtis Garvin, Steve Eckols, 1998-01

1. The COBOL Programming Language: Hello World!
Sample COBOL source code for beginners.
http://www.engin.umd.umich.edu/CIS/course.des/cis400/cobol/hworld.html
The COBOL Programming Language
Hello world! Example Program
Click below to go directly to a specific section:
Description
Source Code Sample Run Program Notes
Description
This program demonstrates the text output function of the COBOL programming language by displaying the message "Hello world!".
Source Code
000100 IDENTIFICATION DIVISION. 000200 PROGRAM-ID. HELLOWORLD. 000300 000400* 000500 ENVIRONMENT DIVISION. 000600 CONFIGURATION SECTION. 000700 SOURCE-COMPUTER. RM-COBOL. 000800 OBJECT-COMPUTER. RM-COBOL. 000900 001000 DATA DIVISION. 001100 FILE SECTION. 001200 100000 PROCEDURE DIVISION. 100100 100200 MAIN-LOGIC SECTION. 100300 BEGIN. 100400 DISPLAY " " LINE 1 POSITION 1 ERASE EOS. 100500 DISPLAY "Hello world!" LINE 15 POSITION 10. 100600 STOP RUN. 100700 MAIN-LOGIC-EXIT. 100800 EXIT.
Sample Run
Hello world!
Program Notes
This program was tested and run using the RM/1 COBOL compiler. Last modified: 03:37 PM on 11/09/1996

2. COBOL Programming - Tutorials, Lectures, Exercises, Examples
cobol programming site containing lecture notes, exercises with sample solutions, programming exam specifications with model answers, project specifications
http://www.csis.ul.ie/COBOL/

COBOL programming - tutorials, lectures, exercises, examples
COBOL programming site with a comprehensive set of COBOL tutorials making a full COBOL course as well as COBOL lecture notes, COBOL programming exercises with sample solutions, COBOL programming exam specifications with model answers, COBOL project specifications, and over 50 example COBOL programs. COBOL programming course (comprehensive COBOL tutorials) Report Writer Tutorials (part of the COBOL course) ... COBOL FAQ To Student Resources Evaluation Form Search CSIS Web Site Selectable Site Contents University of Limerick Home Page CSIS Home Page Courses On Offer ...Computer Systems Degree ...Graduate Diploma in Computing ...Graduate Diploma/MSc in Software Localisation ...MSc in Music Technology ...MSc in Software Reengineering Department Personnel ...CSIS Telephone Directory ...UL Internal Telephone Directory Research ...Research Centres ...Research Projects ...Research Publications ...Technical Reports ...Ph.D Theses ...M.Sc. Theses Student Resources ...Computer Systems Graduated Classes ...Final Year Project suggestions ...Final Year Projects web page ...Lab Schedules ...Module Materials ...Useful Links

3. COBOL Programming - Tutorials, Lectures, Exercises, Examples
cobol programming site containing lecture notes, exercises with sample solutions, programming exam specifications with model answers, project
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

4. COBOL Programming Course
cobol programming Course. Includes COBOL tutorials, COBOL example programs, cobol programming exercises and COBOL self assessment questions.
http://www.csis.ul.ie/COBOL/Course/Default.htm

COBOL Programming Course
Includes COBOL tutorials, COBOL example programs, COBOL programming exercises and COBOL self assessment questions. COBOL tutorial COBOL programming exercise Self assessement questions Introduction to COBOL The structure of COBOL programs (new may 2002) Declaring data in COBOL Basic Procedure Division commands Getting Started These will be self assessment questions COBOL Control structures Selection in COBOL Iteration in COBOL The Calculator and Countdown exercise These will be self assessment questions Simple Sequential Files Introduction to Sequential files Processing Sequential files Reading Sequential Files Counting records in a Sequential File Advanced data declaration Edited Pictures The USAGE clause (new may 2002) Writing records to a Sequential File Inserting records in a Sequential File Advanced Sequential Files COBOL print files and variable-length records Sorting and Merging Basic Procedure Division commands Updating a Sequential File ... Sorting a Sequential File Direct access files

5. COBOL Resources By Object-Z Systems
Lists extensive links to various COBOL resources and also includes CobolReport.com, CobolUniversity.com, COBOL Web programming, ObjectOriented cobol programming, and leading-edge COBOL books.
http://objectz.com/cobolreport/cobolResources/

6. COBOL Programming Course
cobol programming Course Includes COBOL tutorials, COBOL example programs, cobol programming exercises and COBOL self assessment questions.
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

7. The COBOL Programming Language
Like the C++ programming language, objectoriented COBOL compilers are available This is a description of an advanced cobol programming language course
http://www.engin.umd.umich.edu/CIS/course.des/cis400/cobol/cobol.html
The COBOL Programming Language
Click below to go directly to a specific section:
History
Significant Language Features Areas of Application Sample Programs ... Acknowledgments
History
Significant Language Features
  • The language that automated business Allows names to be truly connotative - permits both long names (up to 30 characters) and word-connector characters (dashes) Every variable is defined in detail - this includes number of decimal digits and the location of the implied decimal point File records are also described with great detail, as are lines to be output to a printer - ideal for printing accounting reports Offers object, visual programming environments Class Libraries Rapid Application Capabilities Integration with the World Wide Web
Areas of Application
Department of Defense (DoD)
Sample Programs
Related Links

8. The COBOL Programming Language
The cobol programming Language Click below to go directly to a specific section History Significant Language Features Areas of
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

9. The COBOL Programming Language Hello World!
The cobol programming Language
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

10. Free Cobol Compilers And Cobol Programming - Freebyte's Guide To
Free cobol compilers, free cobol programming, tutorials, resources and tools.
http://www.freebyte.com/programming/cobol/
Freebyte's Guide to...
Free Cobol
Programming Contents Free Cobol Compilers
Free Cobol Tutorials and Resources

Related Freebyte Pages

Information wanted!
...
About this page

Your browser does not support script The Freebyte menu is not visible?
Then use these links instead:
Home
Site Map Search
All-in-one, award-winning Organizer! Intuitive Tree-structured Organizer, PIM, Database, Word Processor, Photo Album, WebSite Generator (optional export to dynamic tree), with templates, multi-featured search, spellcheck in 20+ languages, thesaurus, bookmarks, character map, history, favorites, multiple import/export, xml, images, icons, sort, auto-number, password protection and advanced encryption, hyperlinks, etc. With the look and feel of the Windows Explorer, TreePad offers a highly intuitive, versatile and efficient way to edit, format, organize and store your data! Created by Freebyte! More information Download Free Cobol Compilers OpenCOBOL OpenCOBOL is an open-source COBOL compiler. OpenCOBOL implements substantial part of the COBOL 85 and COBOL 2002 standards, as well as many extensions of the existent COBOL compilers. OpenCOBOL translates COBOL into C and compiles the translated code using GCC. You can build your COBOL programs on various platforms, including GNU/Linux, Mac OS X, and Microsoft Windows. CobCy Free Cobol to C compiler. Cobcy is intended to compile ANSI COBOL sources. The current version does not yet support all the features in the ANSI Cobol specification.

11. The COBOL Center
Special Topics Web Programming Year 2000 OOCOBOL /Objects. This site is dedicated to COBOL and to those with an investment in COBOL.
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

12. The COBOL Center COBOL Bookstore
Learning resources for COBOL and cobol programming.
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

13. Kasten COBOL Page Coding Style And Techniques
My Credentials. I've been programming for a living since 1985 mostly in COBOL, mostly on IBM mainframes using OS/MVS COBOL or COBOL II.
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

14. COBOL Programming
Traditional cobol programming will never be outdated, but will be gradually be cobol programming exercises, lecture notes and example programs
http://www.unixl.com/dir/information_technology/programming/cobol/
@import "http://www.unixl.com/test.css";
Find out about?
Information Technology
Programming COBOL
COBOL Programming
COBOL is an acronym for ‘Common Business Oriented Language’. It was written in the 1960s keeping the business applications in mind. The language has a simple structure, which uses English-like sentences and paragraphs. It was generally used to create programs for the main frames in big business firms. COBOL was last upgraded in late 1999 when the Y2K problem surfaced.
The basic drawback of COBOL is its verbosity. Traditional COBOL programming will never be outdated, but will be gradually be complemented by new language features for defining classes and objects.
Reference Sites - of at least 1 University of Limerick
COBOL programming exercises, lecture notes and example programs
http://www.csis.ul.ie/COBOL/
UniXL provides students, general public and businesses with high quality and relevant education and careers related resources. About Us Link to Us / Contact Us

15. Software Case Study
Originally developed using the cobol programming language, BPB's core business application manages the entire insurance application and
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

16. COBOL Portal
resource site for Cobol developers. Cobol related news, programming tips, resources and everything Cobol.
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

17. The TinyCOBOL Project Home Page - Index
X/Open XPG3 cobol programming languages extensions. Our work is graciously hosted by SourceForge.net. Last modified July 21, 2005
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

18. COBOL: Programming: Best Web Links: Search390.com
cobol programming lectures, tutorial, examples Got COBOL and LE questions? Are COBOL migration issues keeping you up at night? Relax.
http://search390.techtarget.com/bestWebLinks/0,,sid10_tax1470,00.html
Home Best Web Links Programming COBOL ... EMAIL THIS PAGE TO A FRIEND
Best 390 Web Links:
COBOL:
1 - 10 of 28 Links Previous Page Next Page
COBOL programming - lectures, tutorials, examples

This site contains COBOL lecture notes, COBOL programming exercises with sample solutions, a large number of example COBOL programs, tutorials on the COBOL Report Writer and a comprehensive set of tutorials making a full COBOL course. It supports the COBOL programming modules taught at the University of Limerick.
Source: Department of CSIS
Bill Klein's COBOL FAQ

If you're looking for a wealth of answers to frequently asked COBOL questions, check out Bill Klein's COBOL FAQ page. (May 6, 2002) COBOLreport.com
Source: COBOLreport.com
COBOL gold mine

This is mainframe consulting company Integrated Logic Systems International's COBOL Gold Mine page. If you work with COBOL, this page is a must save. Here you'll find a bunch of information on COBOL, in particular, COBOL for the Internet and the new OO COBOL. If you think that COBOL is a "dead language", you won't after visiting this page. To learn more about COBOL products, visit the COBOL services directory. Want to chat about the future of COBOL? Then visit the forums and bulletins. Also available are documents such as "The Web COBOL" and "From COBOL to OO COBOL" which are just a click away, all free of charge. An informative site for the COBOL aficionado.
Source: Integrated Logic Systems International
The COBOL Portal
Here you'll find links to COBOL news and feature stories, educational resources, other technical sites, a useful glossary of mainframe and COBOL terms, and several career sites specializing in jobs for COBOL programmers.

19. What Is COBOL? - A Word Definition From The Webopedia Computer Dictionary
KnowledgeStorm cobol programming Services Business technology search site KnowledgeStorm cobol programming Education and Training - Business
http://www.webopedia.com/TERM/C/COBOL.html
You are in the: Small Business Computing Channel View Sites + ECommerce-Guide Small Business Computing ... »Close Enter a word for a definition... ...or choose a computer category. choose one... All Categories Communications Computer Industry Companies Computer Science Data Graphics Hardware Internet and Online Services Mobile Computing Multimedia Networks Open Source Operating Systems Programming Software Standards Types of Computers Wireless Computing World Wide Web Home
Term of the Day

New Terms

Pronunciation
...
Be a Commerce Partner

COBOL Last modified: Sunday, September 01, 1996 Acronym for co mmon b usiness o riented l anguage . Developed in the late 1950s and early 1960s, COBOL is the second-oldest high-level programming language FORTRAN is the oldest). It is particularly popular for business applications that run on large computers COBOL is a wordy language programs written in COBOL tend to be much longer than the same programs written in other languages. This can be annoying when you program in COBOL, but the wordiness makes it easy to understand programs because everything is spelled out. Although disparaged by many programmers for being outdated, COBOL is still the most widely used

20. COBOL Programming Portal - COBOL User Groups
A onestop resource for the COBOL community where you will find references to COBOL jobs, software, sample code, and other cobol programming resources.
http://www.cobug.com/
Home Search User Registration Membership ... Advertise
COBOL Resources
Books Code Samples Courses Forums ... White Papers
COBOL Software
Change Management Code Conversion Compilers Data Access ... Trans. Processing
COBOL Information
Events Jobs News Product News ... Standards Welcome
Our COBOL programming portal is a one-stop resource for the COBOL community where you will find references to COBOL compilers, jobs, code samples, and many other COBOL programming resources.
The COBUG global community consists of managers, COBOL programmers, consultants, database administrators, software developers, system analysts, students, and vendors.
Join COBUG today
and connect to a global network of your peers.
Through our COBOL forums , you can exchange ideas, ask questions, receive support, and share your experiences.
If you have COBOL web site links, white papers, or other COBOL programming resources, contribute them to COBUG.
COBUG is a member of the All Things COBOL web Ring.

A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

Page 1     1-20 of 144    1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | Next 20

free hit counter