Category Archives: IT assignment examples

Here you can find the best IT assignment examples from our blog. Learn to complete similar tasks yourself or ask our experts to help you.

Gravity Calculator Java Example

GRAVITY CALCULATOR JAVA TASK:

Create Java gravity calculator, able to determine the object’s final position after falling through the Earth’s atmosphere through the predetermined time. The initial parameters include: gravity (-9.81), falling time (10 seconds), as well as initial position and initial velocity of the object (both set to 0 by default). However the user should be able to modify the last 3 parameters according to his liking, with the calculator providing him with corresponding final position each time one of parameters changes. Continue reading

The Algorithm of Pyramid Sort

This guide presents a pyramid sort that is a classical algorithm that any programmer should probably know. This guide is remarkable in that it can help students deal with their own assignments. There are no best samples on this topic, so feel free to use it to deal with your own task, but don’t present this sample as your own. Because many students have problems with IT tasks, AssignmentShark.com offers its online assignment help. On our site, you can find a list of experts you can choose from.

Our experts work fast, so you will get a completed assignment even before the deadline. At the same time, we have reasonable prices, so any student can afford using our service. We offer help with any type of assignment. You just need to place an order on our site with your requirements and set the deadline. For those who are not knowledgeable in the pyramid sorting subject, we present the following guide.

Continue reading

Find Out Whether Or Not Your Array is Balanced

Task:

An array is considered to be balanced if it can be divided into two parts so that the sum of the elements of the left-hand side is equal to the sum of the elements of the right-hand side. For example, the array [1, 1, 1, 2, 1] can be divided into two parts: [1, 1, 1] and [2, 1]. The sum of the elements of both parts is equal to 3, thus, the array is balanced. Continue reading

Extended Euclidean Algorithm Example

The Euclidean algorithm is an effective algorithm for finding the greatest common divisor of two integers. It is named after the Greek mathematician Euclid, who invented in VII century.

In the most simple case, Euclidean algorithm is applied to a pair of positive integers and generates a new pair consisting of a smaller number, and the modulo between the larger and the smaller number. The process is repeated until the found number will be the greatest common divisor of the original pair.

The extended Euclidean algorithm also finds such coefficients x and y that:

a*x + b*y=gcd(a, b) Continue reading

Solving IP Address Conflict Sample

An IP address conflict occurs when two computers in a network are assigned the same IP address. When this happens, it renders one or both computers unable to connect to a network resource or perform other network operations. Almost all operating systems notify the user via pop-up notification when an IP conflict is detected with another computer. This network problem, although rare, is a very real issue to end-users and network administrators. Continue reading

Introduction to PHP Sample

PHP stands for Hypertext Preprocessor and is a server-side scripting language. The result of its operation is shown in the browser as an HTML file. HTML and PHP are tightly connected, and CSS with JavaScript is usually meant to be one set of skills required to create a good web page.

In this sample, the basic script of processing login information will be presented using plain HTML and PHP. Continue reading