Page 2 of 2

Career opportunities

Posted: June 6th, 2007, 7:41 pm
by Cuchulainn
QuoteThe idea being that if you can do C++, nothing will frighten youSuppose not. On the other hand, there is only one language that scared me more .... COBOLQuote IDENTIFICATION DIVISION. PROGRAM-ID. RPVEX. AUTHOR. DMP. ENVIRONMENT DIVISION. CONFIGURATION SECTION. SPECIAL-NAMES. DECIMAL-POINT IS COMMA. INPUT-OUTPUT SECTION. FILE-CONTROL. * SELECT OPTIONAL PUPILS ASSIGN TO RANDOM "CUP.DAT" ORGANIZATION IS INDEXED ACCESS IS DYNAMIC RECORD KEY IS PUP-CLV FILE STATUS IS STATUS-ISM. SELECT FILE-PRINTER ASSIGN TO PRINTER "CUPILS.RPV" FILE STATUS IS STATUS-ISM. DATA DIVISION. FILE SECTION. FD PUPILS. * 01 PUP-REGISTRO. 03 PUP-CLV. 05 PUP-ID PIC 9(9). 03 PUP-DATOS. 05 PUP-NAME PIC X(50). 05 PUP-PHONE PIC X(20). 05 PUP-ZIP-CODE PIC 9(9). FD FILE-PRINTER. 01 LINE-PRT PIC X(120). WORKING-STORAGE SECTION. 77 STATUS-ISM PIC XX VALUE SPACES. 77 XXX PIC XX VALUE SPACES. 77 CONTA PIC 9(8)9 VALUE ZEROS. 77 CONTAZ PIC Z(8)9 VALUE ZEROS. 77 CONTAT PIC 9(8)9 VALUE ZEROS. 77 CONTATZ PIC Z(8)9 VALUE ZEROS. ... PROCEDURE DIVISION. DECLARATIVES. C-E SECTION. USE AFTER STANDARD ERROR PROCEDURE ON PUPILS FILE-PRINTER. END DECLARATIVES. PRIMER SECTION. MAIN-PROGRAM. * OPEN INPUT PUPILS. OPEN OUTPUT FILE-PRINTER. * WRITE LINE-PRT FROM 'REPORT_TITLE=Test with RM-COBOL 85'. WRITE LINE-PRT FROM '$1=400'. WRITE LINE-PRT FROM '$2=1500'. WRITE LINE-PRT FROM '$3=5000'. PERFORM UNTIL STATUS-ISM NOT = '00' READ PUPILS NEXT IF STATUS-ISM = '00' MOVE PUP-ID TO PUP-ID-PRT MOVE PUP-NAME TO PUP-NAME-PRT MOVE PUP-PHONE TO PUP-PHONE-PRT MOVE PUP-ZIP-CODE TO PUP-ZIP-CODE-PRT WRITE LINE-PRT FROM RPV-LINE END-IF END-PERFORM. CLOSE PUPILS FILE-PRINTER. CALL 'SYSTEM' USING 'RPV.EXE CUPILS.RPV /E'. STOP RUN.

Career opportunities

Posted: June 6th, 2007, 11:11 pm
by quantmeh
QuoteOriginally posted by: misiti3780that is why i inserted this statementif you are applying for jobs that require c++i got it, but even if they're looking for a quant with c++, i think that these r irrelevant questions. it's just my opinion, i know that everyone would disagree

Career opportunities

Posted: June 6th, 2007, 11:14 pm
by bournejason
Point taken...will try and work on numerical methods & vba

Career opportunities

Posted: June 7th, 2007, 1:18 am
by misiti3780
a lot of huge company use cobol for processing information into spreadsheets and such. my friend only has a two year degree as a computer programmer using cobol and makes fairly good money (in the US)

Career opportunities

Posted: June 7th, 2007, 1:19 am
by misiti3780
a lot of huge companies use cobol for processing information into spreadsheets and such. my friend only has a two year degree as a computer programmer using cobol and makes fairly good money (in the US)

Career opportunities

Posted: June 7th, 2007, 2:14 am
by bournejason
Does anyone know about companies which are hiring at this time of the year in or around NY

Career opportunities

Posted: June 7th, 2007, 7:14 am
by DominicConnor
Misti's questions are real interview problems, but as I think he'd agree, not good ones.A better question is why classes must have non zero size ?