Program-1 Write a C program, nestedfor.c and an equivalent ARM assembly code, nestedfor.s, to produce the same output given below. You are supposed to use nested loops in your assembly code.
Program-2
a)Write a C program to get the user to guess the number that the program has randomly picked (name your file as game.c). b)Write assembly code performing the same program. (name your file as
game.s).
Program-3
Write a C program, named as sort.c, that does the following: generates an integer array of size 10 with random numbers prints unsorted array
sorts the array using selection sort algorithm prints the sorted array
Make sure C program solution has the following method definitions:
-selectionSort(int array[], int n)
-swap (int *px, int *py);
-printArray(int array[], int n)
-int main()
Write assembly code performing the same program (name your file as s).
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme