1

2.28 (Diameter, Circumference and Area of a Circle) Write an application that inputs from the user the radius of a circle as an integer and prints the circle’s diameter, circumference and area using the floating-point value 3.14159 for π. Use the following formulas (r is the radius): diameter = 2r circumference = 2πr area = … Read more

“Could RFID technology be used to become the mark of the beast?

  Answers the question: “Could RFID technology be used to become the mark of the beast?  Why or why not?” Understand that this post is an intersection of Theology and Technology question. You cannot answer this post without considering both. Technology can be used for good. Think of all medical devices that have saved countless … Read more

ML Project using Bayesian networks

Purpose:   This project will expose you to inference using Bayesian networks. Bayesian networks capture causal relationships and are widely used in fault diagnosis across a wide variety of applications. A Bayesian network can be represented by a directed graph which will model causal relationships between variables. A useful tool to represent and traverse a … Read more

Design a simple mobile

 Instructions Part 1: Pseudocode and Flowchart You’ll create both pseudocode and a flowchart to design a mobile app. The app will write the device’s latitude and longitude to a file each time the device’s location changes. Use the techniques discussed in Section 3.3 and Chapter 10 of your textbook to write the latitude and longitude … Read more

Data Structure and Algorithm heap

  Can someone help me with this? ​​​​​​​ heap.h #ifndef HEAP_H #define HEAP_H struct heap_struct { int* items; int N;  // current size int capacity; // array capacity }; // max-heap operations struct heap_struct make_heap_empty(int cap); // assumes arr was dynamically allocated. struct heap_struct make_heap(int N, int * arr); // makes a max-heap from arr. … Read more

Assignment

Answer the following exercise taken from Ch6. An information system is to be developed to maintain information about assets owned by a utility company such as buildings, vehicles, equipment, etc. It is intended that this will be updatable by staff working in the field using mobile devices as new asset information becomes available. The company … Read more