Start Discovering Solved Questions and Your Course Assignments
TextBooks Included
Active Tutors
Asked Questions
Answered Questions
How can I write a program that checks if a number is polydicisible or not? For example 8076 is polydivisible and 59 is not
Question 1- Develop a use case diagram for a day care center. Include at least three actors and five use cases. Question 2- Develop a class diagram for a Shape class. Include generalizations for chi
Take a critical look at three GUI applications you have used-for example, a spreadsheet, a word-processing program, and a game. Describe how well each conforms to the GUI design guidelines.
Implement the following Boolean function with a 4 X 1 multiplexer and external gates. F(A, B, C, D) = E(1,2,5,7,8,10,11,13,15)
Write a matlab script/function that takes decimal values until user inputs zero (0). The program will display the highest number among input decimal values and will terminate.
Do the conversion between decimal number and the equivalent binary number (with radix point). Part 1- 20.87510 Part 2- 1100.0112
Write scripts using the array Array1=[1 2 3;4 5 6;7 8 9] for both parts of this problem.Part 1- Display the following element of Array1: Array1(2,3), Array1([1 3], 2), Array1(:,2)
Write a decoder to decode text encoded with the following proceedure, you need to reverse the process and write the results to a file anmed {netid}_3.txt
Question 1- Write the following method that sorts an ArrayList of numbers: public static void sort(ArrayList list) Question 2- Describe the meaning of " public stativ void main() ".
Construct a while() loop, which computes the sum of all multiples of 2 and 5 for numbers 1 - 100. Show all variable declarations. In C programing.
Draw a DFSA (deterministic finite state automata) that recognizes binary strings, and then convert the Backus-Naur Form to an EBNF equivalent grammar and draw a DFSA.
Write a program that prompts the user to enter the number of students and each student's name and score, and finally displays the name of the student with the highest score.
Derive the sum-of-minterms and the product-of-maxterms canonical forms for the Boolean function, G(a, b, c) = c'a' + b'a + cb.
Explain what is meant by WPAN. Give 3 examples of where this is being used currently and name a few of the company that sells the product used to create a WPAN.
Describe the threats and vulnerabilities of social engineering and social media; include how they are similar and how they are different.
Using AND and OR gates, find a minimum two-level circuit to realize: Part 1- F=A'C'+B'C+ACD'+BC'D Part 2- F=RS'+R'S'+ST'
Find a minimum two-level NOR-NOR circuit to realize: Part 1- (A+B+C)(D'+B+A) Part 2- (A+B+C)(B'+D+A)(A'+B'+C)
Design a logic circuit that has a 4-bit binary number as an input and one output. The output should be 1 iff the input is a prime number (greater than 1) or zero
Write a program that computes the annual after-tax cost of a new house for the first year of ownership. The cost is computed as the annual mortgage cost minus the tax savings.
Write a program that simulates flipping a coin 100,000 times and reports the longest consecutive sequence of heads. Use (int) ( Math.random() + .5) to generate a random integer, 0 for heads and 1 fo
Write a program that accepts a list of n test scores in the range 0 through 100 and finds the average of the n - 1 highest scores on the list - that is, the lowest score is not included in the avera
How do I permanently disable URLs in Excel? I don't want Excel too attempt to visit a any url in any doccument, and I don't want an error message. If there is a fix and it permaneently and irreversa
Question- Write a function that reads a line and reverses the words in the line (not the characters) using a stack. For example, given the following input: The quick brown fox jumps over the lazy do
Question 1- How can one show that whether a graph has a 2-coloring can be determined in polynomial time? Question 2- Describe directed graph.
Write a program with a loop and indexed addressing that calculates the sum of all the gaps between successive array elements. The array elements are doublewords, sequenced in nondecreasing order. Fo