Write a project to display the flags of four different countries

  

ASSIGNMENTS

1. Write a project to display the flags of four different countries, depending on the setting of the radio buttons. In addition, display the name of the country in the large label under the flag picture box. The user also can choose to display or hide the form’s title, the country name, and the name of the programmer. Use check boxes for the display/hide choices. 

Include keyboard access keys for all radio buttons, check boxes, and buttons. Make the Exit button the Cancel button. Include a Print button and ToolTips.

You can choose the countries and flags. (The StudentDataImages MicrosoftIcons folder holds flag icons for four countries, which you can use if you wish.)

Hints: When a project begins running, the focus goes to the control with the lowest Tablndex. Because that control likely is a radio button, one button will appear selected. You must either display the first flag to match the radio button or make the focus begin in a different control. You might consider beginning the focus on a button.

Set the Visible property of a control to the Checked property of the corresponding check box. That way when the check box is selected, the control becomes visible.

Because all three selectable controls will be visible when the project begins, set the Checked property of the three check boxes to true at design time.

  

2. Complete the following programming exercise. You will use the MenuStrip object and the Checked and Font properties. You already have a head start with this assignment, since you already developed this with the required assignment in Lesson 3. See the section “Basing a New Project on an Existing Project” on page 243 of the textbook to help you get started. 

Update the previous mandatory assignment – DISPLAY THE FLAGS OF FOUR DIFFERENT COUNTRIES – to use a menu instead of radio buttons, check boxes, and buttons. Include check marks next to the name of the currently selected country and next to the selected display options.

Use a message box to display the program name and your name as programmer for the About option on the Help menu.

Menu: 

  

File

Country

Display

Help

 

Print

United States

Title

About

 

Exit

Canada

Country Name

 

Japan

Programmer

 

Mexico

  

Make sure you close your project when complete. Make a copy of the project folder, compress it to a single file, and submit it. 

After your project is graded, you will receive an evaluation report. Be sure to include your name and student ID number in the comments at the top of your code. Your assignment will not be accepted without this requirement.

This is the second of two programming assignments in this course. You cannot receive a final grade for the course until both assignments have been received and graded as acceptable.

essay

 How to hack cryptocurrencies and block chain systems? What are the biggest weakness in those systems? 

Java

/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package poker;

import java.util.ArrayList;

/**
 *
 * @author adamt
 */

public class Player {

    private int money;
    private int wager;
    private Hand hand;

public Player(){
money=1000;
wager=0;
hand=new Hand();
}

public Hand getHand(){
return hand;
}

public void setWager(int i){
wager=i;

}

public int getWager(){
return wager;

}

public int moneyGained(int i){
    money+=i;
    return money;
}

public int moneyLost(int i){
    money-=i;
    return money;
}

public int getMoney(){
return money;

}

Module 3: Data Normalization

Assignment: Import Data and Build Relationships Instructions

In this assignment you will work with both MS Access and Excel. Much of the work you do this module you have done already in module 2. The only new task in this assignment is to ‘import’ data from Excel into Access. Reference the MS Access textbook for instructions on importing data. Note that the Module 3 data file referenced below is located as an attachment in the assignment submission folder that follows this page.

Here is what you need to do:

  • Download Module 3 Data file. (Module 3 Data.xls – a link is provided in the assignment submission folder that follows this page)
  • Open the Excel file that you just downloaded and take note of the three tabs: Customers, Products, and Sales.
  • Open MS Access and create a new database named Module 3.
  • Create three tables named Customers, Products, and Sales.
  • Open each table in Design View and add fields to accommodate data in each of the columns. Use the column titles as field name. Determine proper data type for each field.
  • Be sure to assign Primary Key to each table.
  • After creating the three tables, import data from each tab in the Excel file to the appropriate table in Access.
  • Create a Relationship between the three tables.
  • Submit your database to the appropriate assignment submission folder.

Discussion Assignments

Answer the below questions:

1.Write at least 500 words discussing limitations and issues related to the use ff and ffbase packages for processing large datasets. Please follow APA format with at leat 3 inline references.

2.Write at least 500 words discussing how to use text mining to analyze how we can use text mining to improve healthcare. Please follow APA format with at leat 3 inline references.

data analytics

 Conduct a literature review of big data handling approaches in smart cities including techniques, algorithms, and architectures.You are to review the literature on smart cities and Big Data Analytics and discuss problems and gaps that have been identified in the literature. You will expand on the issue and how researchers have attempted to examine that issue by collecting data – you are NOT collecting data, just reporting on how researchers did their collection.

Paper Layout:

  1. Title Page
  2. Table of contents: Use a Microsoft Enabled Table of Contents feature.
  3. Background: Describe the issue, discuss the problem, and elaborate on any previous attempts to examine that issue. Be sure to include techniques, algorithms, and architectures.
  4. Research Questions:
    1. In the identified problem area that you are discussing, what were the research questions that were asked? Be sure to include main research questions from all the literature you are reviewing.
  5. Methodology:
    1. What approach did the researcher use, qualitative, quantitative, survey, case study? Describe the population that was chosen. You will discuss the methodology for all the literature you are reviewing.
  6. Data Analysis:
    1. What were some of the findings, for example, if there were any hypotheses asked, were they supported?
  7. Conclusions:
    1. What was the conclusion of any data collections, e.g., were research questions answered, were hypotheses supported? Be sure to also include the similarities and differences between the literature.

Paper requirements:

  • Be a minimum of 7 pages in length, not including the required cover page and reference pages.
  • Follow APA 7 guidelines. Be sure to conduct research on formatting literature reviews.
  • Your literature review should include a minimum of 8 scholarly peer-reviewed journal articles. The UC Library is a great place to find resources.
  • Be clear and well-written, concise, and logical, using excellent grammar and style techniques. You are being graded in part on the quality of your writing. You can use Grammarly for help with your grammar and spelling.