Entries by Student

write my assignment 17012

Need an argumentative essay on Toward An Intelligence beyond Mans. Needs to be 2 pages. Please no plagiarism.

As these form of computers are evolving, many of them will actually mimic humans in doing some roles better than them to an extent of blurring the difference between humans and computers. Generally, these computers will be regarded as artificially intelligent creations that will have the capability of absorbing large quantities of information, store and process them, at a faster speed compared to the slow human brains. The only thing which with the time that can be incorporated in such computers to totally give it an upper hand on humans, is when they shall be incorporated with human feelings. Computers will hence become faster and better, “Computers match people in some roles, and when decisions fast are needed in a crisis, they often outclass them”. Computers will hence be part of our evolutionary process. Ever since 100,000 years ago, the human brain has not changed that much in terms of its capacity of holding information. The human brain cannot accommodate large chunks of information at once. Computers, on the other hand, provide humans with a chance to store large quantities of information and skip an evolutionary process of developing super accommodative brains. With time, human beings will form a symbiotic relationship with computers. Human beings will be expected to give them electricity and reproduce them while in return they can offer their economic and social needs, “Child of man’s brain rather than his loins, it will become his salvation in a world of crushing complexity”.

 

"Not answered?"


Get the Answer

write my assignment 20770

Need an argumentative essay on Presonal development. Needs to be 6 pages. Please no plagiarism.

Opportunities for study and growth in professional careers are available to all living in the UK.

I hope to have an evaluation of myself in context of personal and professional development. I need to have understanding of what positives I have in me that will help me in achieving my goals and what negatives I have that need to be fixed in order to be successful in my personal and professional life. Although personal and professional development plans are important at every phase of life but this is the most important time for me to evaluate myself and develop personal and professional development plan.

I served in Abu-Dhabi police for more than 4 years and my experience of working there was so great that I have opted this profession as my career path. My aim is to join the police force after I graduate with the degree of police officer in 2011.

Strengths: I feel that one of my key strengths is decision making, it is used throughout life because one has to make smaller or bigger decision during the course of life. It’s very common that before making an important decision, there are clouds of confusion all around. I experienced it making decision of higher studies in the UK. It was a tough decision, as majority of my friends and my relatives were pursuing their higher studies in Abu-Dhabi. I compared all the pros and cons of this situation did a fair bit of risk assessment and finally I was quite sure in my mind that I have made the right choice in the given circumstances. If I look at my career path and my motivation of becoming a Police Office, I feel that this strength of decision-making will help me a lot in my career development and growth.

Another key strength I found about myself during self-assessment is of quick learning and adaptability. This strength helped me when I left my native country and came to UK. Learning variety of courses

 

"Not answered?"


Get the Answer

write my assignment 30546

#define _CRT_SECURE_NO_WARNINGS

#include <stdio.h>

// This source file needs to “know about” the structures you declared

// in the header file before referring to those new types:

// HINT: put the header file name in double quotes so the compiler knows

//    to look for it in the same directory/folder as this source file

// #include your contacts header file on the next line:

#include “contacts.h”

int main (void)

{

  // Declare variables here:

struct Name name = {“”,””,””};

struct Address address = {0,””,0,””,””};

struct Numbers numbers = {“”,””,””};

char prompt;

  // Display the title

printf(“Contact Management Systemn”);

printf(“————————-n”);

  // Contact Name Input:

printf(“Please enter the contact’s first name: “);

scanf(“%30s”, name.firstName);

printf(“Do you want to enter a middle initial(s)? (y or n): “);

scanf(“%s”,&prompt);

if (prompt == ‘y’ || prompt == ‘Y’)

{

printf(“Please enter the contact’s middle initial(s): “);

scanf(“%6s”, name.middleInitial);

}

printf(“Please enter the contact’s last name: “);

scanf(“%30s”, name.lastName);

  // Contact Address Input:

printf(“Please enter the contact’s street number: “);

scanf(“%d”, &address.streetNumber);

printf(“Please enter the contact’s street name: “);

scanf(“%40s”, address.street);

printf(“Do you want to enter an apartment number? (y or n): “);

scanf(“%s”, &prompt);

if (prompt == ‘y’ || prompt == ‘Y’)

{

printf(“Please enter the contact’s apartment number: “);

scanf(“%d”, &address.apartmentNumber);

}

while (getchar() != ‘n’);

printf(“Please enter the contact’s postal code: “);

scanf(“%[^n]”, address.postalCode);

printf(“Please enter contact’s city: “);

scanf(“%40s”, address.city);

  // Contact Numbers Input:

printf(“Do you want to enter a cell phone number? (y or n): “);

scanf(“%s”, &prompt);

if (prompt == ‘y’ || prompt == ‘Y’)

{

printf(“Please enter the contact’s cell phone number: “);

scanf(“%20s”, numbers.cell);

}

printf(“Do you want to enter a home phone number? (y or n): “);

scanf(“%s”, &prompt);

if (prompt == ‘y’ || prompt == ‘Y’)

{

printf(“Please enter the contact’s home phone number: “);

scanf(“%20s”, numbers.home);

}

printf(“Do you want to enter a business phone number? (y or n): “);

scanf(“%s”, &prompt);

if (prompt == ‘y’ || prompt == ‘Y’)

{

printf(“Please enter the contact’s business phone number: “);

scanf(“%20s”, numbers.business);

}

  // Display Contact Summary Details

printf(“Contact Detailsn”);

printf(“—————n”);

printf(“Name Detailsn”);

printf(“First name: %s”, name.firstName);

printf(“n”);

printf(“Middles initial(s): %s”, name.middleInitial);

printf(“n”);

printf(“Last name: %s”, name.lastName);

printf(“nn”);

printf(“Address Detailsn”);

printf(“Street number: %d”, address.streetNumber);

printf(“n”);

printf(“Street name: %s”, address.street);

printf(“n”);

printf(“Apartment: %d”, address.apartmentNumber);

printf(“n”);

printf(“Postal Code: %s”, address.postalCode);

printf(“n”);

printf(“City: %s”, address.city);

printf(“nn”);

printf(“Phone Numbers:”);

printf(“n”);

printf(“Cell phone number: %s”, numbers.cell);

printf(“n”);

printf(“Home phone number: %s”, numbers.home);

printf(“n”);

printf(“Business phone number: %s”, numbers.business);

printf(“nn”);

// Display Completion Message

printf(“Sturcture test for Name, Address, and Numbers Done!”);

printf(“n”);

  return 0;

}

/* SAMPLE OUTPUT:

Contact Management System

————————-

Please enter the contact’s first name: Tom

Do you want to enter a middle initial(s)? (y or n): y

Please enter the contact’s middle initial(s): Wong

Please enter the contact’s last name: Song

Please enter the contact’s street number: 20

Please enter the contact’s street name: Keele

Do you want to enter an apartment number? (y or n): y

Please enter the contact’s apartment number: 40

Please enter the contact’s postal code: A8A 4J4

Please enter the contact’s city: Toronto

Do you want to enter a cell phone number? (y or n): Y

Please enter the contact’s cell phone number: 905-111-6666

Do you want to enter a home phone number? (y or n): Y

Please enter the contact’s home phone number: 705-222-7777

Do you want to enter a business phone number? (y or n): Y

Please enter the contact’s business phone number: 416-333-8888

Contact Details

—————

Name Details

First name: Tom

Middle initial(s): Wong

Last name: Song

Address Details

Street number: 20

Street name: Keele

Apartment: 40

Postal code: A8A 4J4

City: Toronto

Phone Numbers:

Cell phone number: 905-111-6666

Home phone number: 705-222-7777

Business phone number: 416-333-8888

Structure test for Name, Address, and Numbers Done!

*/

When I enter the bold in the output the cell phone number part does not show up. Can you tell me what the problem is.

 

"Not answered?"


Get the Answer

write my assignment 12039

Complete 2 page APA formatted essay: Causes for the 2007-08 Financial Crisis.

The property market was a major contribution to the financial crisis. The collapse in prices of mortgaged houses put homebuyers in debts as they had speculatively spent so much money on overvalued property. The financial crisis arose from weak financial policies, which permitted banks among other financial institution make precarious investments as the outline portrays.

b. Response: The financial crunch affected investment in the real estate’s industry first in the United States before the effects spiraled to other major global economies thus reducing the volume of activities at major stock markets thus culminating in the crisis.

a. Response: With intense speculation on the size and lucrativeness of the industry, numerous investors including financial institutions increased to invest and compete for the market (Starkman, 2014).

b. Both commercial and investment banks thus competed for the market. They introduced precarious policies that permitted the banks to invest extensively in the industry without cushioning themselves from the unpredictable nature of the

 

"Not answered?"


Get the Answer