Python

Define a recursive function expo that uses this strategy, and state its computational complexity using big-0 notation.

Projects Complete Questions only 1- 3 A sequential search of a sorted list can halt when the target is less than a given element in the list. Define a modified version of this algorithm, and state the computational complexity, using big-0 notation, of its best-, worst-, and average-case performances. The list method reverse reverses the […]

Create a Python program that populates an array variable (containing at least five elements) within a loop using input supplied by the user.

Week7 Discussion Create a Python program that populates an array variable (containing at least five elements) within a loop using input supplied by the user. It should then perform some modification to each element of the array using a second loop, and then display the modified array in a third loop. Note that there should […]

Identify any trends or patterns in the data that you find interesting, and write a brief report (2-3 pages) summarizing your findings.

Assignment2: Exploring the Housing Market in Python Objective: To gain practical experience in importing and managing data in Python, and to use data visualization techniques to explore trends in the housing market. Task: Obtain a dataset of housing prices and related variables such as square footage, number of rooms, location, etc. Import the data into […]

Develop one question yourself that can be answered with the information included in this dataset. Write the code to answer the question, and include a visualization.

Python Problems 2 part Overview This assignment will allow you to practice algorithmic thinking and basic Python programming with several small-scale problems. As you solve each problem, follow the steps of algorithmic thinking as outlined below. NOTE: you only need to provide an algorithm, flowchart and test cases for part 2 (no algorithm/flowchart/test cases are […]

Implement a feedforward artificial neural network (ANN) within Python (using Keras) for the purposes of solving a binary classification task as a mini-research project.

Task – Feed forward Neural Networks Implement a feedforward artificial neural network (ANN) within Python (using Keras) for the purposes of solving a binary classification task as a mini-research project. For this network, you will be provided a dataset from the finance sector. A description of the dataset is provided in the Data Fields section […]

Create a simple Virus Total Client. Submit each hash value to VirusTotal for analysis.

Python Create a simple Virus Total Client. You will extract the files provided in the scanFiles.zip, into a directory named: TARGET Your script will process each file in the TARGET folder. In other words you will generate an md5 hash for each file (the contents… not the file name (string)). Your script will submit each […]

Write a code in python using the above parameters with proper documentation and also a detailed report involving all the steps that have been taken to acheive the goal.

PPP loan Fraud detection using python PPP Loan Fraud Detection: The aim of this project will be to explore loan data from the Paycheck Protection Program administered by the Small Business Administration which relief to small and medium-sized businesses during the COVID-19 pandemic. The main goal of this project will be to develop graphical visualizations […]

Write a program in Python that is a study tool for the vocabulary terms in this course.

Programming Project This is an individual assignment. Write a program in Python that is a study tool for the vocabulary terms in this course. Step 1: Create 15 plain text files; one for each of the chapters from the book covered in this course. Name the files chl.txt, ch2.txt, etc. Each text file will contain […]

Given a dataset with a mean of 100 and a variance of 49, calculate the standard deviation of the dataset. What does the standard deviation tell us about the dataset?

ASSIGNMENT Part one 1.Suppose you have two datasets with the following summary statistics: Dataset A: mean = 10, variance = 25 Dataset B: mean = 15, variance = 36 Which dataset has more variability, and why? Show your calculations. Calculate the sample variance of the following data: 5, 8, 10, 12, 15. Show your work […]

Scroll to top