+1-316-444-1378

Java Array Math

Create a 10 x 10 two dimensional array of int data type (Remember that arrays start with 0, not 1.– Load each index in the array with the multiplication of each (row * column) location– Using printf display the content of each index, ALIGNED.– Create an algorithm using a loop Read more…

Java Array Math

Create a 10 x 10 two dimensional array of int data type (Remember that arrays start with 0, not 1.– Load each index in the array with the multiplication of each (row * column) location– Using printf display the content of each index, ALIGNED.– Create an algorithm using a loop Read more…

Golang Mini Rest API

Please write a mini REST API connected to a Go microservice to search movies from http://www.omdbapi.com/ Access credentials : OMDBKey : “???”URL : http://www.omdbapi.com/  * Example url call to search is –> GET http://www.omdbapi.com/?apikey=????=Batman&page=2 Tools/Implementation principles required such as : – gRPC– Clean architecture – Go Kit– API Gateway– Unit Read more…

Resume

You will find a job for which you are qualified (and you will submit the job posting as part of your assignment). This job can be local or not; it can even be a change of job posted from within your current organization. The key is to find a job Read more…

Data Structure 2

As we have seen in class, AVL trees are excellent for search given their height of log2nlog_2{n}log2n or log2n+1log_2{n} + 1log2n+1. Unfortunately, to achieve this efficient search, they have to use rotations during insertions and deletions, and those take time!In this project, you will implement AVL-G trees, a simple modification Read more…