Posts

Showing posts with the label Computer Science Q&A

Applied project – project teams and emerging/future digital technologies disruptions

Task Overview The Great Unknown – though emerging digital technologies are not usually a complete surprise out in the future as we see new paradigms take shape and IT shift and alter current ways of working or influence innovative ideas and actions. Innovation and innovative solutions designed and implemented that we can all learn from and see how they deal with the present challenges or solve today’s problems. You need to put on your consultant hat in this task, consider a potential emerging digital technology related disruption and present your case notes or body of work to a group of industry representatives. For example, there are disruptions coming into focus including advances in Artificial Intelligence (AI) and Machine Learning (ML), evolving 5G capabilities and its continued rollout, and Mixed Reality (MR) devices or eXtended Reality (XR) experiences more broadly. Choose one of these emerging digital technologies areas. Given your knowledge, understanding and consultancy expert...

Write java codes for a program, that asks for a number n then produces the output in words and then in roman numerals.

Write java codes for a program, that asks for a number n then produces the output in words and then in roman numerals. For example, The program asks "Number:" Then if u input 101. It must produce "In words: one hundred and one" NOT one hundred one. In Roman: CI And when the number "-1" is given as input, the program ends and produces "done." here is the expected output Number: 42 In Words: forty two In Roman: XLII Number: -1 Done There are two classes NumberToWords.java where the codes needs to written The other class is In.java where codes are already given import java.util.*; /** * This class provides static methods for easily reading * input from STDIN: * * nextLine reads a string * nextInt reads an integer * nextDouble reads a double * nextChar reads a character * All methods consume the end-of-line character. */ public class In { /** * A singleton instance of Scanner used for reading all input * from STDIN. */ private static final Scanner sc...

You Have Sample Forms And Associated JSON Files Stored In Azure Storage. You Plan To Use The Sample Data To Train A Custom Azure Form Recognizer Model.

You have sample forms and associated JSON files stored in Azure storage. You plan to use the sample data to train a custom Azure Form Recognizer model. What two methods can you use to train the custom model? Each correct answer presents a complete solution.

Simple Recursive Sequence The K-Fantastic Sequence Is Defined In The Following Way: (Ai+1=(K∗Bi+Ai∗Ai))Mod3001(Bi+1=(K∗Ai+I))Mod3001 Where A0=1 And B0=2

Image
Simple recursive sequence The  K -fantastic sequence is defined in the following way:  ( a i + 1 ​ = ( k ∗ b i ​ + a i ​ ∗ a i ​ ) ) mod 3001 ( b i + 1 = ( k ∗ a i ​ + i ​ ) ) mod 3001 ​  where  a 0 ​ = 1  and  b 0 ​ = 2  What is the  T th   pair of numbers of the K-fantastic sequence? Function description Complete the solve() function. This function takes the following 2 parameters and returns the answer: -  K  : Represents an Integer denoting the value of  K  -  T  : Represents an Integer denoting the value of  T  Input format for custom testing Note: Use this input format if you are testing against custom input or writing code in a language where we don't provide bollerplate code - The first line contains two space-separated integers denoting the value of  K  and  T . Output format Print  a T ​  and  b T ​ . Constraints  ( 0 ≤ K ≤ 30000 ≤ T ≤ 1 0 9 )  Samp...