Write a program in COBOL to find the sum of two numbers. 1cob
Write a program in COBOL to read three numbers and find the biggest among them. 2cob
Write a COBOL program to read a set of N integers and to calculate the number of numbers divisible by 9 and not divisible by 5 and their sum. 3cob
Write a COBOL program to find the number of odd numbers, number of even numbers, sum of odd numbers, sum of even numbers and the total sum of numbers from a given set of numbers according to the users choice. 4cob
Write a COBOL program to generate the fibanocci number between two numbers.
Write a COBOL program to find the number of digits, sum of digits and the reverse of the number.
Write a COBOL program to print a sequence of N odd or N even numbers based on users choice.
Write a COBOL program to generate first N prime numbers.
The number of hours worked by an employee in a company and hourly rate are given. Deduct tax @ 10% of total salary if total salary exceeds 10,000/- otherwise 5%. Write a COBOL program to implement the above. 9cob
Given the sex and age of a number of people. Write a COBOL program to calculate the number of Males and Female and also calculate the number of males in the age group 25 and 35. Show the output in a neat format.
Given the number of hours worked and hourly wage rate. Write a COBOL program to calculate the gross pay and net pay for an employee by assuming that the tax deduction to be @ 10% of gross salary if it is less than 2,500/- and @ 20% otherwise. 11cob
Write a COBOL program to add two matrices. 12cob
Write a COBOL program to subtract one matrix from another. 13cob
Write a COBOL program to multiply two matrices. 14cob
A student record contains Register Number, Name of the Student, Sex, Date of Birth and Place. Write a COBOL program to read details of a set of students through the keyboard and stored in a sequential file and print the contents of the file in a neat format. 22cob
An employee record contains Badge Number/Employee Number, Name of Employee, Basic Pay, DA, HRA and Deductions. Write a COBOL program to accept details of a set of employees through keyboard and stored in a sequential file and print the contents of the file in a neat format. 23cob