Tag Archives: MCA(1)/L017/Assign/2014-15

An Assembly language program to find substring in given string – IGNOU MCA Assignment 2014-15

BACHELOR OF COMPUTER APPLICATIONS Course Code : BCSL-022 Course Title : Assembly Language Programming Lab Assignment Number : BCA(II)/BCSL022/Assign/14-15 Maximum Marks : 50 Weightage : 25%   Write and run an Assembly language program that finds the occurrence of a given substring, for example, BCS in a given string, for example, AXYBCSDEF (please note that in… Read More »

An Assembly Language program to print sequence of random numbers – IGNOU MCA Assignment 2014-15

MASTER OF COMPUTER APPLICATIONS Course Code : MCSL-017 Course Title : C and Assembly Language Programming Assignment Number : MCA(1)/L017/Assign/2014-15 Maximum Marks : 100 Weightage : 25%   Write a program in assembly language to print an infinite sequence of pseudo-random numbers.    DATA SEGMENT MSG1 DB 10,13,’RANDOM NUMBERS ARE : $’ MSG2 DB 10,13,’… Read More »

A program in assembly language to print out the length of string – IGNOU MCA Assignment 2014 – 15

 MASTER OF COMPUTER APPLICATIONS Course Code : MCSL-017 Course Title : C and Assembly Language Programming Assignment Number : MCA(1)/L017/Assign/2014-15 Maximum Marks : 100 Weightage : 25%   Write a program in assembly language to print out the length of string.    DATA SEGMENT STR DB ‘GANGADHAR$’ MSG1 DB 10,13,’THE STRING IN THE MEMORY IS… Read More »

An Assembly Language program to find minimal and maximal elements – IGNOU MCA Assignment 2014 – 15

 MASTER OF COMPUTER APPLICATIONS Course Code : MCSL-017 Course Title : C and Assembly Language Programming Assignment Number : MCA(1)/L017/Assign/2014-15 Maximum Marks : 100 Weightage : 25%   Develop and execute an assembly language program to read an array of numbers and find the minimal and maximal elements.    DATA SEGMENT ARR DB 5,3,7,1,9,2,6,8,4 LEN… Read More »

An Assembly program to convert lower case to upper case – IGNOU MCA Assignment 2014 – 15

 MASTER OF COMPUTER APPLICATIONS Course Code : MCSL-017 Course Title : C and Assembly Language Programming Assignment Number : MCA(1)/L017/Assign/2014-15 Maximum Marks : 100 Weightage : 25%   Write a program in assembly language for converting lower case to upper case in a given string of characters.   DATA SEGMENT MSG1 DB 10,13,’ENTER ANY STRING… Read More »