Programming question and answers for July 23, 2023
- Q Make one program in c++Implement the Point class composed of an ordered pair (?, ?). Redefine the operators in your Point classCalculate the coefficients of a Linear Regression ? =...
- Q Arduino Uno code, Please explain what does this code do?unsigned long ms_runtime;int one_ms_timer;//define all timers as unsigned variablesunsigned long timer1 = 0; // timer1 increments every 100ms =0.1sconst int USER_LED_OUTPUT...
- Q Write a program that translates a letter grade into a numbergrade. Letter grades are A, B, C, D, and F, possibly followed by +or -. Their numeric values are 4,...
- Q Write a program that reads in the name and salary of anemployee. Here the salary will denote an hourly wage, such as$9.25. Then, ask how many hours the employee worked...
- Q The goal of Java program implemented as part of this assignmentis to build anInventory Management System, from here on referred to as IMS, for abookstore.You will need to do the...
- Q Programming language= In Java and Oracle SqlYou are required to develop a simple HR application for a smallaccounting firm that wishesto keep track of all the employees at the firm;...
- Q 1. For all of the following words, if you move the first letterto the end of the word and then spell the word backwards, you getthe original word:banana dresser grammar...
- Q 1. Explain how IPv4 route decisions are made. Provide at leasttwo examples.2. Review an IPv4 header and discuss the different fields andwhat each field does.3. Compare and contrast the major...
- Q Create using JavaDescription: Palindrome -- According towikipedia \"A palindrome is a word, phrase, numberor other sequence of units that can be read the same way in eitherdirection\"Write a application that...
- Q Use text and diagrams.Describe the Linux Ext format?What are the component parts?How is it organized?
- Q Given the following variable declarations: const size_t n = 50;Write the declaration of an array of pointers to n memory blockscontaining 16-bit signed integer values. Use 'x' for the name...
- Q A non-governmental organization needs a program to calculatethe amount of financial assistance for needy families. The formulais as follows:5 ptsIf the annual household income is between $30,000 and $39,999and the...
- Q How can I convert the following subroutine into MIPSassembly:search(Array, start, end, searchValue){if (start > end) return falsemid = start + (end - start)/2;if (array[mid] == searchValue) return true;if (array[mid] >...
- Q In java the parts listed as todo in linkedsetwithlinkedbadImplement all the methods defined as skeletons in theLinkedSetWithLinkedBag class. The class implements the SetInterface(described in Segment 1.21 of chapter 1). It...
- Q IN jAVA Language PLEASEWrite a JAVA program that implements the followingdisk-scheduling algorithms:a. FCFSb. SSTFc. SCANYour program will service a disk with 5,000 cylinders numbered 0to 4,999. The program will generate...
- Q Room.java:public class Room{// fieldsprivate String roomNumber;private String buildingName;private int capacity;public Room(){this.capacity = 0;}/*** Constructor for objects of class Room** @param rN the room number* @param bN the building name* @param...
- Q In Java: The n^th Harmonic number isthe sum of the reciprocals of the first n naturalnumbers:H(n) = 1+ 1/2 + 1/3 +1/4 +... +1/nWrite a recursive method and an accompanyingmain...
- Q use Python datetime module, strftimeWrite a program that processes the following textfile and printsthe report shown below.Textfile:Ask the user for the filename and BE SURE TO CHECK THAT ITEXISTS.The file...
- Q #include <iostream>#include <string>#include <vector>using namespace std;class Song{public:Song(); //default constructorSong(string t, string a, double d); //parametrizedconstructorstring getTitle()const; // return titlestring getAuthor()const; // return authordouble getDurationMin() const; // return duration in minutesdouble...
- Q What are the permissions for your home directory set by yoursystem administrator? What command did you use to answer thequestion? Show your session.
- Q The first part of this lab is making your stackgeneric. Take the code from your working StringStack classand paste it into the GenericStack class. Change the name of theconstructors to...
- Q Compare Hyper-V tovirtualization offerings from Amazon, VMware, and Citrix, andothers What are some of the differences?Which solution wouldyou recommend to a manager?
- Q List three different digital artifacts contained within aWindows operating system and how they can be used by a forensicsanalyst during a digital forensics investigation.
- Q Write a function in C# that takes an array of double as theparameter, and return the average
- Q Exploring WebsitesCOLLAPSEComplete both Part A and Part B to complete this discussionpost.Part A:   Browse and find a websitethat you would like to use for this activity.  Pretendyou are a customer that...
- Q Write a C++ code to perform the following steps:1. Ask the user to enter two whole numbers number1 and number2(Number1 should be less than number2)2. Calculate and print the sum...
- Q Show the first eight words of the AES key expansion for a128-bit key of all ONES
- Q Hi there, please write code in Python 3 and show what input youused for the program. I've been stuck on this for hours!(1) Prompt the user to enter a string...
- Q explain oxides of sulphur,nitrogen oxides,nitricoxide,carbon monoxide,hydro carbons in details withexamples.50marksNote:Its for 50 marks i need 10page answer and ownanswer no internet answer r else i will downvoteattempt only if you...
- Q Write a program in Python where you can swap only twoconsecutive elements. You have to show all steps to convert astring into another string (both strings will be anagrams of...
- Q What is the actual purpose of the Address Resolution Protocol?Specifically, what identifier does it connect with which otheridentifier?
- Q You are developing a software package for an online shoppingsite that requires users to enter their own passwords. Yoursoftware requires that users' passwords meet the followingcriteria:â— The password should be...
- Q Write a program in Python to print all possible combinations ofphone numbers. The length of the number will be given. Also 3digits will be given, which can not be used....
- Q (IN PYTHON)Write a program that asks the user repeatedly to enter astudent's score or enter -1 to stop. When finished entering all thescores, the program should display the number of...
- Q What is an subprogram or subroutine and how is it defined?What is a subprogram: Call? Header? Protocol? Signature?What are formal and actual parameters for a subprogram?How does a programming language...
- Q Q1. Write a Java program to dosequential search to find element55 in array10,20,35,45,55,65,75,85.                                                                                                                                                                  Q2.Write a Java program to find element 54 inarray 45,41,65,53,76,90 using Binary Search. (Hint: Binarysearch is applied to...
- Q An emergency change was made to an IT system as a result of afailure. Which of the following should be of GREATEST concern tothe organization's information security manager?A. The change...
- Q Program in JavaCreate a stack class to store integers and implement followingmethods:1- void push(int num): This method will push an integer to thetop of the stack.2- int pop(): This method...
- Q How to do in C++HTML ConverterCreate a program that reads an HTML file and converts it toplain text.ConsoleHTML ConverterGrocery List* Eggs* Milk* ButterSpecificationsYour instructor should provide an HTML file named...
- Q Program in JavaCreate a queue class to store integers and implement followingmethods:1- void enqueue(int num): This method will add an integer to thequeue (end of the queue).2- int dequeue(): This...
- Q Design a program using RaptorFlowcharts that tests your ESP, or extrasensoryperception. The program will randomly pick a color from Red, Green,Blue, Orange, Yellow, and Purple, and you will be asked...
- Q Given a list of 4096 sorted values, about how many comparisonscan you expect to be performed to look for a value that's not inthe list using thebubble sort algorithm?
- Q Briefly discuss, in your own words (in less than 200 words), howthe Simulink software package within MATLAB is able to simulatesystem midels through block diagram representation of one or moredifferential...
- Q Assume that the program counter (PC) is set to 0x00000000.Describe how each of the instructions below could be used to setthe next value of PC to 0x0FFFFFF4j, jr, bne, jal,...
- Q Telephone is a classic kids game where the first person in lineis told a message. That person whispers the word to the one next tothem, and so on. The last...
- Q Python PleaseSimulating a random walk in two dimensions.For this part, you will use a two-dimensional grid where the xaxis goes from -50 to +50 and the y axis also goes...
- Q Create a function called merge that takes two int vectors (x andy) as argument and returns an int vector (z) that is the result ofmerging the two vectors x and...
- Q Write a documentcomparing Android and iOS. In addition, feel free to research iOSdesign. In this document you willcompare and contrast Android and iOS development;explain how to recreate your Android app...
- Q Problem 44 Write a query to display the employee number, lastname, first name, and sum of invoice totals for all employees whocompleted an invoice. Sort the output by employee last...
- Q How to create a divide function in (Dr Racket) programminglanguage without using the built in function \" / \" ?
- Q Write a pyhton program that reads a stream of bits, e.g. 11001,and calculates and prints the decimal value of the binary numberrepresented by the entered bits, i.e. 25 in this...
- Q Question 2: consider the following library relational databaseschema Write a program segment to retrieves the list of books thatbecame overdue yesterday and that prints the book title andborrower name for...
- Q We know from Church's Theorem that L_1 is Turing-undecidable.And we now know from Olmsted's theorem that L_0 isTuring-decidable. AI of today, and specifically AI as it relates tothe Web, particularly...
- Q Write a python program that asks the user to enter a stringcontaining numbers separated by commas, e.g., s = '1.23,2.4,3.123',Your program should then calculate and print the sum of the...
- Q Python Code for 8-queens using random restart algorithms
- Q 1. A hard disk drive has 16 platters, 8192 cylinders,and 256 4KB sectors per track. The storage capacity of this diskdrive is at mostSelect one:a. 32 GB.b. 128 GB.c. 32...
- Q Choose one of the three following programs to do as your firstprogram. You need to turn in a flowchart and program documentationwith the .cpp program (this can be done within...
- Q Write a minimum of 200 words- Review and brieflyevaluate Commercial Hosting Sites (WordPress)
- Q Write a Java program that prompts a user for 10 integers. Whencompleted it outputs the highestnumber, the lowest number, the number of odd number, and theaverage of the numbers
- Q 1. When creating your own functions, which of the following aregood characteristics that make them robust, sharable, and reusable(check all that apply)the function's name is suggestive of its purpose and/or...
- Q In python! please be thorough and read question carefully :) ifpossible, give explanation for codeWe’re going to create a class which stores information aboutproduct ratings on a website such as...
- Q Write a program that request a time interval in seconds anddisplay it in hours, minutes, second format. (java)
- Q Write a method with the following header:public static void showGradeDistribution(int a, int b, int c,int d,int f)It should print a graph (using asterisks) for each of theletters entered in the...
- Q Use a table to identify the software products sited in theBayState Realty Case Study that fall within the followingcategories of software. You need not limit yourself to only thoseproducts mentioned....
- Q 7. Substantiate or refute the following: As the cipher textsample size becomes smaller, cryptanalysis becomes easier.
- Q Matlab: How would I write a script that calculates a.654.23+345.73 b. 3984566/5.5 (need to use the  formatlong command)
- Q Describe how the governments of Saudi Arabia, the People’sRepublic of China, and the United States regulate the Web.
- Q Exercise 3Step 1:When you read Storing Data Using Sets, you learned that Python'sset type allows us to create mutable collections of unordereddistinct items. The items stored in a set must...
- Q 1. Consider the following scenario:The Colonel Motors Corporation of Frankfort, Kentucky hasproduced a new line of vehicles which require chicken droppings forfuel. Because of this unusual fuel requirement, there are...
- Q ArrayStack.java
- Q Using assembly code, given these numbers:09111F2006F0Find the largest value?
- Q Please enter your response to both questions posed below.Subject : Computer And Network SecurityTotal word count must be 250 to 300 words in your posting. (20points)Please also respond to at...
- Q 8. write a program using switch-case statements that ask a userto enter a temperature value in degrees Fahrenheit (In yourprogram, use an integer to record the user’s entry. If thetemperature...
- Q trying to make a code that simulates a predator preyrelationship in python, however for some reason my code will notshow the plot, i cant find any issues with syntax or...
- Q Python HW with Jupyter NotebookDeclare a variable named DATA as a dictionary object. Assignthe set of key/value pairs shown below.Create a function named iter_dict_funky_sum() that takes onedictionary argument.   Declare a running...
Get Answers to Unlimited Questions
Join us to gain access to millions of questions and expert answers. Enjoy exclusive benefits tailored just for you!
Membership Benefits:
- Unlimited Question Access with detailed Answers
- Zin AI - 3 Million Words
- 10 Dall-E 3 Images
- 20 Plot Generations
- Conversation with Dialogue Memory
- No Ads, Ever!
- Access to Our Best AI Platform: Flex AI - Your personal assistant for all your inquiries!