This program creates the basic user interface code that can be used, in the following week’s iLab assignments.

This program creates the basic user interface code that can be used, in the following week’s iLab assignments. The assignment will help you get started using the programming environment and some practice with coding. You will also be able to re-use much, if not all, of the code in later assignments.

In this program, you will create the following methods:
DisplayApplicationInformation, which will provide the program user some basic information about the program.
DisplayDivider, which will provide a meaningful output separator between different sections of the program output.
GetInput, which is a generalized function that will prompt the user for a specific type of information, then return the string representation of the user input.
TerminateApplication, which provides a program termination message.
Using these methods, you will construct a program that prompts the user for the following:
Their name, which will be a string data type
Their age, which will be an integer data type
The gas mileage for their car, which will be a double data type
Display of the collected information
Also, note that the program should contain a well document program header.
Deliverables

Before you post your lab in the dropbox, copy your entire program into a Notepad file and post that. I do not need you to zip the project or give me screen shots of the output.
Preparation:
If you are using the Citrix remote lab, follow the login instructions located in the iLab tab in Course Home.
Locate the Visual Studio 2010 icon and launch the program.

i L A B S T E P S

STEP 1: Review the Design

Download the program description and pseudocode. Make sure you fully understand the program design and ask any questions that you may have BEFORE you start programming.

Click Week 1 Lab Design to download the program design:
STEP 2: Construct the Program

Start Visual Studio and create a new project titled “CIS247_WK1_Lab_LASTNAME”
Using the Week 1 Lab Design construct the methods
Once the methods are constructed, use the Week 1 Lab Design document to create the Main method.

STEP 3: Compile and Test

When done, compile your code by clicking on Build->Build Solution. Then debug any errors until your code is error-free. If you click on the error in the Error Window, it takes you to the statement in your code, which produced the error. You can then click on F1, which launches the Microsoft Help Library, to see additional information and possible suggestions on how to fix your error.
To execute your code, click Start and then Start Debugging. Check your output to ensure that you have the desired output. If you need to fix anything, close your execution window, modify your code as necessary, and rebuild.
Create a test plan in order to make sure your application runs properly. A test plan is a series of tests you choose to perform, where you predefine the input values and write down the expected output. When you execute your code given the input values, your program should display the expected output. If it does not, this means you need to review your code and correct any mistakes. Creating several scenarios, based on the program complexity, ensures that your code runs properly.
Execute your code and check your output to ensure that you have the desired output. If you need to fix anything, close your execution window, modify your code as necessary, and rebuild.

STEP 4: Screen Prints

The output of your program should resemble the following:

Image Description
STEP 5: Submit Deliverables

Before you post your lab in the dropbox, copy your entire program into a Notepad file and post that. I do not need you to zip the project or give me screen shots of the output.
Submit your lab to the Dropbox located on the silver tab at the top of this page. For instructions on how to use the Dropbox, read these Step-by-Step Instructions or watch this Dropbox Tutorial.
See Syllabus “Due Dates for Assignments & Exams” for due date information.
CIS247 Week 1 Lab in C#
CIS247A Week 1 Lab in C#
CIS247B Week 1 Lab in C#
CIS247C Week 1 Lab in C#
–iqra javaid

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

Business & Accountability.

Business & Accountability

In one paragraph, supported with evidence from your text and from other research, provide one example and brief discussion of one business in your area that has demonstrated accountability to people, to its community, and to its environment. Be specific with your examples.

Cite & Reference

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

When dynamically allocating memory for a specific data type, explain why a pointer variable of the same data type must be used. Describe what happens if the memory allocation is successful and also if it is unsuccessful. COMP/220 COMP220 COMP 220 Week8 Week 8

When dynamically allocating memory for a specific data type, explain why a pointer variable of the same data type must be used. Describe what happens if the memory allocation is successful and also if it is unsuccessful.

COMP/220 COMP220 COMP 220 Week8 Week 8

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

“International Law”

“International Law”
Please respond to the following in 2 paragraphs.

•Propose why the United States is not on board with all of the efforts, tribunals, courts, and declarations of international law. Give an example.
•Give your opinion: Do you trust that international law is impartial? Why or why not?

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

Technology Implementation.

Technology Implementation
The implementation of technology has become necessary in the business world. Technology has created better opportunities for companies to maximize growth, reduce cost, and improve performance. The implementation of technology has many impacts mostly positive, but there are negative effects also present. The negatives effects could include; rejection to change, bad planning, mistakes by untrained employees etc. That is why management needs to develop a solid implementation plan to obtained positive results during the process.

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

HIS 135 Week 9 Terrorism (APA Format + References)

HIS 135 Week 9 Terrorism (APA Format + References)
In the years following the September 11 attacks, 33 terrorist incidents have occurred on U.S. soil. The U.K. has experienced 190, and Israel has reported numbers in the thousands (National Counterterrorism Center, 2011).
Resource: National Counterterrorism Center. (2011). 2010 report on terrorism. Retrieved fromhttp://www.nctc.gov/witsbanner/docs/2010_report_on_terrorism.pdf
Write a 750-to 1,050-word paper in which you consider some of the following questions. Use specific events, including at least two from the list above, to support your ideas.
Why is there heavier terrorism activity in certain areas of the world?
What do the sites of terrorist activities have in common?
Could laws, procedures, or organizations, either national or international, have prevented these attacks?
Who should determine what sorts of laws and organizations are most effective? Defend your position.
Does the United States have a moral obligation, a practical reason, or both, for becoming involved in stopping terrorist activities in other countries? Defend your position.
How has the idea of terrorism affected the lives of individual Americans since 9/11?
How have American priorities changed since 9/11?
Support your responses with factual references.
Format your paper according to APA guidelines.

HIS 135 Week 9 Terrorism (APA Format + References)

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

TCO #5– Given a simple business problem that requires iteration, create a solution algorithm that employs loops.

TCO #5– Given a simple business problem that requires iteration, create a solution algorithm that employs loops.

TCO #7 – Given a simple business problem that requires simple data structures, design, code and test a solution algorithm that uses arrays.

Assignment: Arrays are incredible fun! Today we are going to work on a program to keep track of our homework scores for a math class. Write a program that accepts five homework scores as input values and stores them into a table (which is another name for an array). Once the scores are in the array, we can process them again and again.

First, load the scores in your array. Second, display the contents of the array in order. Third, display array in reverse order. Fourth, calculate the average of the five scores entered in the array. Finally, the algorithm should display all the homework scores in the array that are larger than the previously calculated average. Make sure you use some output statements to clarify all the details you are displaying, being cautious about spelling and communicating to your user.

Be sure to THINK about the logic and design first (IPO chart and or pseudocode), then code the Visual Logic command line processing.
–iqra javaid

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

1. Analyzing Point of View.

1. Analyzing Point of View

Chapter Five discusses the importance of point of view in literature and, more specifically, in the short story. Choose one short story from the course text about which you have not yet written, and analyze it in terms of point of view.

When writing your post, consider the following questions
How would you categorize the point of view [e.g., first-person, second-person (i.e., “you”), third-person limited, third-person omniscient]?
Is the point of view consistent throughout the story (told from the same point of view), or does it shift at any points in the narrative? (If so, make note of when and how those changes occur.)
How does point of view shape your reading of the work? In what ways does it contribute to or detract from your reading of the work?
How does point of view relate to the story’s themes or content?

Your initial post should be at least 150 words in length.

2. Symbolism in the Short Story

Chapter Seven explores the role of symbols in conveying literary themes. Themes are abundant in literary works (though they are at some times more obvious than at others). Select one short story from the reading assignments (from either Week One or Week Two) to examine more closely in relation to symbolism. Consider the story’s overall theme(s) and use of images as well as how these two relate to one another. You may choose to explore one single recurring symbol, or you may discuss multiple symbols and how they relate to one another.

At the beginning of your post, identify (a) the literary work that you will analyze and (b) the theme(s) that is/are most relevant to the symbolism you will explore.

Your initial post should be at least 150 words in length

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]