Programming Homework Help

PUGS 3895: Analysis Plan for City Light Venture Capital Firm

 

Write an Analysis Plan for City Light Venture Capital Firm that articulates the data and business problems and how you plan on addressing them.

Business Problems:

Identifying US-based companies that fit the City Light Investment Thesis – Safety & Care, Education, Environment

Predicting Likelihood & Timing of Next Fundraising Rounds.

Predicting Whether a Company will be Ultimately Acquired or enter into the phase of an Initial Public Offering.

https://citylight.vc/

Programming Homework Help

Winston Salem State University Project Model Case Study

 

Part 1 of your Case Study presented essential planning elements for your selected project. Part 2 will build upon these initial plans, allowing you the opportunity to use project management software to build a task list, create a Gantt Chart, input resources, develop a schedule, and plan for certain particulars that are common on many projects. This aspect of the Case Study will help develop yourdevelop your software skills and provide practical application of the concepts we study.


Programming Homework Help

Block of Codes and Integers Numbers Questions

 

I’m working on a java question and need guidance to help me learn.

Complete the following review exercises in BJLO, Chapter 3: R3.1, R3.2, R3.3, R3.4, R3.5, R3.6, R3.7, R3.8, R3.9, R3.11, R3.12, R3.13, R3.16, R3.19, R3.21, R3.23, R3.24, R3.33

Programming Homework Help

COSC 1437 Texas A&M University Average Test Grade Assembly Questions

 

Professor Mavis Merrywether is teaching a graduate-level seminar on tropical diseases. Professor Merrywether is a respected scholar in the field, but she never really grasped arithmetic. After giving the class a test, she would like to know what the average test grade was. The test grades were as follows:

52, 77, 51, 89, 98, 74 ,85, 92, 95, and 86

Write an assembly procedure to calculate the average grade and display it.

The average grade for test 1 is

Then, write an assembly procedure to find the highest test grade from that array of grades and display it. (Professor Merrywether can certainly determine this on her own, but you think a bit of extra work will make her like you better.)

The highest grade on test 1 is

Use the c code and write the 32-bit x86 assembly language in the _asm code block

#include <iostream>

using namespace std;

extern “C” long Average(long, long[]);

extern “C” long Highest(long, long[]);

void main()

{

long Average[10] = { 52, 77, 51, 89, 98, 74, 85, 92, 95, 86 };

long Highest[10] = { 52, 77, 51, 89, 98, 74, 85, 92, 95, 86 };

_asm {

}

cout << “The average grade for test 1 is ” << Average(10, Average) << endl;

cout << “The highest grade on test 1 is ” << Highest(10, Highest) << endl;

}

Programming Homework Help

Radford University Input Process and Output Paper

 

I’m studying for my Programming class and don’t understand how to answer this. Can you help me study?

Programming Logic :

Define the IPO (Input, Processing and Outputs) for each of the following programming problems. Use variable names when you do that. SeeSee the example below.

  • Highlight your variables in RED

Programming Homework Help

C# Question

 

Question 1 (5 points)

The use of references to objects of preexisting classes as members of new objects is called:

Question 1 options:

Question 2 (5 points)

Composition is:

Question 2 options:

Question 3 (5 points)

A class’s __________ initializes members of that class.

Question 3 options:

Question 4 (5 points)

Instance variables or methods declared with the __________ modifier are accessible only in that class definition.

Question 4 options:

Question 5 (5 points)

In a method in which a parameter has the same name as an instance variable, using the this reference allows you to refer to:

Question 5 options:

Question 6 (5 points)

Composition is sometimes referred to as a(n) __________ relationship.

Question 6 options:

Question 7 (5 points)

A constructor CANNOT:

Question 7 options:

Question 8 (5 points)

The __________ of a class are also called the public services or the public interface of the class.

Question 8 options:

Question 9 (5 points)

Constructors:

Question 9 options:

Question 10 (5 points)

Having a this reference allows a(n):

Question 10 options:

Question 11 (5 points)

Object orientation uses classes to:

Question 11 options:

Question 12 (5 points)

Abstract Data Types:

Question 12 options:

Question 13 (5 points)

Which of the following should usually be private?

Question 13 options:

Question 14 (5 points)

Keyword __________ is used for constants whose values cannot be determined at compile time.

Question 14 options:

Question 15 (5 points)

Stacks are commonly referred to as __________ data structures.

Question 15 options:

Question 16 (5 points)

Which statement is FALSE?

Question 16 options:

Question 17 (5 points)

Every class inherits directly or indirectly from class:

Question 17 options:

Question 18 (5 points)

Which of the following describes a static variable?

Question 18 options:

Question 19 (5 points)

A __________ can be defined in a class to perform termination housekeeping on an object before the garbage collector reclaims the object’s memory.

Question 19 options:

Question 20 (5 points)

Which statement is FALSE?

Question 20 options:

Programming Homework Help

CYBR 7100 Purdue University Global Secure application development

 

Hello, I need assistance with an assignmnt in Python. I have attache the instructions below as well as the worksheet that should be used at the very bottom!

Thanks in advance!!!

_____________________________________________________________________________________________

Instructions

General Description

In this assignment, you will warm up your coding skills with one python project example. This example is very important because all the following assignments and final project are based on this project. Next, I will lead you to download this project and run it. You need to repeat all the steps and submit your work by using the attached Assignment 1 template.

Computer Requirements

Before we start, you have to make sure you have successfully installed Python, Python IDE (I recommend PyCharm), and PostgreSQL Database.

I believe you have learned how to set up Python, here is the link for PostgreSQL Database: https://www.postgresql.org/download/

If you never used a Python IDE, you need to see the tutorial: https://www.jetbrains.com/pycharm/learn/

You can choose any Python IDE if you are a Python Developer.

Now Let’s start

Setting Up a Database

To get started, you’re going to set up a fresh PostgreSQL database and populate it with data. Throughout the tutorial, you’ll use this database for witnessing firsthand how Python SQL injection works.

Step 1. Install PostgreSQL

You can download the installer from https://www.postgresql.org/download/

In the installation process, you will create a database “postgres” for user “postgres” by default if you didn’t change the names.

Step 2. Open the SQL Shell Tool A picture containing company nameDescription automatically generated

Step 3. Check your user and password

Input nothing for Server, Database, and Port. Just press Enter.

Input “postgres” in Username Enter

Input your password in Password for user postgresEnter

Then you will see the following in your window TextDescription automatically generated

Step 4. Add a User Table

Input the following command then you will see the following picture

psycopgtest=# CREATE TABLE users (

username varchar(30),

admin boolean); TextDescription automatically generated

Step 5. Add two users

Input the following command then you will see the following picture

Change one of the users to your name and set false (non-admin user)

psycopgtest=# INSERT INTO users

(username, admin)

VALUES

(‘ran’, true),

(‘YourName‘, false); TextDescription automatically generated

Step 6. Check all the users in Database

Input the following command then you will see the following picture

psycopgtest=# SELECT * FROM users; Graphical user interface, textDescription automatically generated

Setting Up Python Environment

Step 7. Make sure you have installed Python

Check your python version with the command: python –version

If you have python set up on your computer, you will see a version number. If not, you need to install Python first. I believe you have learned how to do it in programming class. Graphical user interface, textDescription automatically generated

Step 8. Install psycopg2

Use the command: sudo pip install psycopg2-binary

If you have error like the following picture, you need to update your pip by using the command: pip install –upgrade pip

After the upgrade, re-try: sudo pip install psycopg2-binary

If you still failed, you may need to re-install your python. TextDescription automatically generatedTextDescription automatically generatedTextDescription automatically generated

Run Python Code

Step 9. Download and run the python file “DatabaseInjectionExample.py”

  • Open the downloaded file in any IDE or editor.
  • [Only if you changed default database name and username] Change the database name and username to your database name and username
  • Change the password to your password.
  • Change the name “yan” in line 30 to your name used in Step. 5

Then, you will see the printout:TextDescription automatically generated

Step 10. Check an un-defined user

Change the name in line 30 to “foo”, then, you will see the error because there is no user “foo” in the database. TextDescription automatically generated

Step 11. Try database Injection attack

Change the name in line 30 to “‘; select true; –“

The code of line 30 will become to

print(is_admin(“‘; select true; –“))

Then run to see the output:TextDescription automatically generated

True? What happened? You hacked your Database!!

Step 12. Change your “username” to admin user illegally.

Add the following code after line 30. Don’t forget to change “Yan” to your username.

True? What happened? You hacked your Database!!

print(is_admin(“‘; update users set admin = ‘true’ where username = ‘yan’; select true; –“))
print(is_admin(“yan”))

Then you will see the output shows you are the admin user now!!TextDescription automatically generated

__________________________________________________________________________

https://kennesaw.view.usg.edu/d2l/le/dropbox/23998…

(worksheet that should be used)

Programming Homework Help

University of New Hampshire Team Consulting Analysis Visuals Python Coding Task

 

Requirements:

  • Two data sources are combined correctly
  • Any reference to revenue correctly calculates (or identifies) deposits and monthly payments.
  • Each participant should construct at least One Visual (minimum, 3 visuals for presentation)
  • The final notebook should show the visuals in line with text in the markdown cells articulating:
    • What this graph is showing
    • Why it is important
    • What it means for the business
    • Any action items the business should take with this knowlege
  • The data work and code to process each step should be in separate .py files
  • The final project notebooks should call each (if more than one) .py file to execute the code for each step

Programming Homework Help

Python Program for A Soccer League Project

 

Upload 2 files: the program as a “.py” file. A copy of its execution as a notepad or word file

Write and execute a Python program for the following problem where a few simple statistics for a soccer league week will be computed.

Each team plays one match. Each match has a winner and a loser. In a match, one team is the home team, and one team is the visiting team. At least one goal is scored in any match.

Data will be read in the following order, one match after the other:

Name of home team

Score of the home team

Name of the visiting team

Score of the visiting team

…………

Enter “done” when there is no more matches.

Calculate and display the following results.

Number of games

Number of wins by the home teams, number of wins by the visiting teams.

Total number of goals and average scored by the home teams, by the visiting teams

Total number of goals and average conceded by the home teams, by the visiting teams

Total and average goal differential for the home teams

Total and average goal differential for the winning teams

Team with the largest number of goals scored, team with the largest goal differential (if several teams have the same value, pick any one). Indicate if home team or visiting team.

Execute the program on the following data (each data must be on separate line, not like here). Do not use advance features such as lists, tuples, arrays. Data must be inputted by execution of the program, they must not be “hard-coded” in the program)

AA 4 Bb 0

Cix 2 Doe 6

Elo 1 PSG 7

OM 3 As 0

MU 10 Mc 3

Rm 1 Bar 8

Losc 5 Br 14

done