Newton's second law of motion
Q. Write an assembly language program to perform the following tasks:
Task 1 - Find the largest digit in your VUID.
Task 2 - Add the largest value to each index value and write it back at the respective index of the VUID. For example, if the numbers in VUID are 030400789, then after the task 2, the VUID should become 91291399161718.
Task 3 - Find the arithmetic series of the largest digit found in task 1 and store it in the “dx” register as shown in the sample screenshot.
My student id is ..Bc200203355
input :- The input line is a single line containing a positive integer N
output :- The output should be a single line containing the space separated prime factors in ascending order
if input1 is : 20
then output1 is: 2 5
if input 2 is : 45
then output2 is :- 3 5
input :- The input is a single line containing the word
output :- The output should be a single line containing space-separated characters
if input 1 is :- MATHEMATICS
then output 1 is :- M A T H E I C S
if input 2 is :- banana
then output 2 is :- b a n
input : the first line of input contains seperated integers
Outpt : The output should be a single line containing space-seperated integers with odd-digit for each number
if input 1 is :- 21 503 256 550 86 979 281
if output 1 is :- 12 503 562 550 86 979 128
if input 2 is :- 2001 463 6219 669 473 1006 77734 110 20511
if output 2 is :- 1002 346 1962 966 734 1006 77734 110 51120
Polly Pipe is a water sports provider and installer based in Braintree, England. They need to design and implement a database. Polly Pipe is focused in placing aquariums at business customers. Customers can request several installations, but each installation is tailor-made for a specific customer. Facilities are classified by type. One or more employees are assigned to each facility. Because these facilities are often very large, they can include carpenters and masons as well as water installers. The facilities use equipment such as aquariums, air pumps and thermostats. There can be multiple computers in a facility.
Draw the Use Case Diagram and Class Diagram for this scenario.
Grandpa John gives his kids Christmas gifts, but only if they are younger than 18.Write IF function to check who’s eligible for Christmas gifts this year. Return “Yes” if he/she is eligible, and “No” if he/she is not.
. Using a do-while loop, write a C++ program to check that the user has typed a letter. The program must not stop until the user types a lowercase or uppercase letter.
how to print book mark maker by using dom maipulation
Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
You must write an algorithm with O(log n) runtime complexity.