science fiction inspiration

yo need to write one of the science fiction that inspired you to become a great engineer. More details are provided in the attached document.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Can anyone help me with this programming assignment?

     

Assignment 2: Linked Lists 

In this assignment, you will be reading in words from a pronunciation dictionary to figure out which words rhyme with each other. 

To do this, you will be implementing MyLinkedList and MySortedLinkedList. Besides the lectures in class, you can read much more about the code details of how linked lists work in the book on pages 249-268. 

You’ll be implementing the following: 

  • ●  A linked list in  MyLinkedList that implements interface   . You’ll be using
    in two different ways, to store a list of   and to store a list of within each   object. More on this below.
     
  • ●  Code in the main method of   that takes lines that have been read from a rhyming dictionary and stores them in the lists.
     
  • ●  A subclass of  MyLinkedList called  MySortedLinkedList , that has a method for adding items into the list in sorted order.
     
  • ●  Code in the main method of  RhymingDict that takes pairs of words specified on the command line and outputs whether they rhyme or not.
    A LinkedList is useful for storing information when you don’t know how many items you need to store. In this lab, we will be iterating through a rhyming dictionary and storing words together according to their rhyming group, which is the most heavily emphasized part of their pronunciation.
    In the directory of starter code for the assignment, you’ll see a subdirectory called  cmudict . Inside is a file called  cmudict- short .dict. Opening this, you’ll see lines like:
    The letters after the words represent the phonemes (units of sound) you speak when you pronounce the word. The phonemes that have numbers after them (0, 1 or 2) are the emphasized phonemes, with phonemes marked with 2 having the most emphasis (say the words out loud to yourself to try this out). Two words rhyme if the share the same subset of phonemes after the most emphasized phoneme. For example:
     

 

ListInterface 

 

MyLinkedList 

 

RhymeGroupWords 

 

Strings 

 

RhymeGroupWords 

 

RhymingDict 

 

dignitary D IH1 G N AH0 T EH2 R IY0
necessitate N AH0 S EH1 S AH0 T EY2 T
undue AH0 N D UW1
moderated M AA1 D ER0 EY2 T IH0 D

 

moderated M AA1 D ER0 EY2 T IH0 D
anticipated AE0 N T IH1 S AH0 P EY2 T IH0 D

   

both rhyme, and they both share  EY2 T IH0 D starting with the most emphasized phoneme. The  EY2 T IH0 D is called the rhyming group for these two words. You’ll be storing rhyming groups in a linked list of  RhymeGroupWords , a class you’ve been provided in the starter code. Each object stores a string with the rhyme group and a list of words that share the rhyme group (a variable of type ). So you’ll be using linked lists in two different ways: to store a list of  RhymeGroupWords , and, within each RhymeGroupWords object, to store a list of words. 

RhymingDict 

The file RhymingDict.java is provided for you. It already has the following: 

 

RhymeGroupWords 

 

getRhymeGroup(String line) 

 

● A method
from the dictionary. For example IH0 D” ) returns 

, which returns the rhyme group for a line 

.
, which returns the word for a line from the dictionary. 

 

ListInterface 

 

getRhymeGroup( “moderated M AA1 D ER0 EY2 T 

 

● A method For example, 

 

“EY2 T IH0 D” 

 

getWord(String line) 

 

getWord( “moderated M AA1 D ER0 EY2 T IH0 D” ) 

 

returns
, which returns a S tring[] of all the lines from the 

1. Use your implementation of  MyLinkedList to create a linked list of  RhymeGroupWords , one for each unique rhyme group you encounter (there are 8 unique rhyme groups in cmudict-short.dict ). Within each RhymeGroupWords you’ll store a MySortedLinkedList of words that share that rhyme group. 

2. Iterate through pairs of arguments to  RhymingDict and use your linked list to determine if the pair of words rhyme. For example, with the command: 

java RhymingDict crumbling mumbling collections abbreviated vegetate mutate

the output would be: 

In the case of the last pair of words,   and   , since the word
doesn’t appear in  cmudict-short.dict , it reports that and ignores  “vegetate” . If an odd number of words is passed on the command line, it ignores the last word (since it’s not part of a pair). 

Do  not use built-in Java data structures (like ArrayList or LinkedList) in this file 

 

“moderated” 

 

. pronunciation dictionary. 

 

loadDictionary() 

 

● A method
The tasks you have to do is marked with the comment  TODO in the main method of 

 

EY2 T IH0 D 

 

RhymingDict . These tasks are: 

 

crumbling and mumbling rhyme
collections and abbreviated don't rhyme
mutate is not in the dictionary

 

“vegetate” 

 

“mutate” 

 

“mutate” 

   

Grading 

The points for this assignment are allocated as follows: 

  • ●  35 points for implementing  MyLinkedList . Even if you don’t get the rest of the
    assignment working, you can still earn points for a correct implementation of
    MyLinkedList (we will be running test code to test it).
     
  • ●  30 points for correctly storing the rhyme groups and words in linked lists using
    for both the  RhymeGroupWords list and the word lists in each
    . In this case the words won’t appear in sorted order in the list.
     
  • ●  20 points for implementing and using  MySortedLinkedList to store the word lists. Now the words within each rhyme group will appear in sorted order.
     
  • ●  15 points for writing the code that processes arguments to determine if pairs of arguments rhyme.
    Our recommendation is that you do the parts of the assignment in this order. There is some commented out test code in main for testing  MyLinkedList without having to store the pronunciation dictionary in it. Feel free to edit this code to do more tests, but make sure to comment it out before you turn in your assignment. Once you have  MyLinkedList working with your tests, then use it to store the data from the dictionary. Test if you’re getting 8 rhyme groups. The output below shows what the rhyme groups will look like with the words in sorted order, though at this point your words won’t be sorted yet. Then implement MySortedLinkedList and use it for storing the word lists. Now your rhyme groups should print out with the words in sorted order. Finally, write the code that searches through the lists to see if a pair of words rhyme.
    Files
    The following files are provide for you:
     

 

MyLinkedList 

 

RhymeGroupWords 

 

● ● ● ● 

● ● 

– described above
– specifies the methods you need to implement in 

– an empty class file that implements
– an empty class file that extends . 

Comments in the file specify what the one method and one method override should be RhymeGroupWords.java -aclassforstoringarhymegroupandthelistofwordsthat share that rhyme group (described above) 

 

RhymingDict.java 

 

ListInterface.java 

 

MyLinkedList.java 

 

MySortedLinkedList.java 

 

ListIndexOutOfBoundsException.java 

 

out of bounds in   . 

 

Turning the code in 

 

● Create a directory with the following name:  <student ID>_assignment2 where you replace  <student ID> with your actual student ID. For example, if your student ID is 1234567, then the directory name is  1234567 _assignment1 . 

 

MyLinkedList 

 

– an exception to throw when a list index is 

 

MyLinkedList 

 

ListInterface 

 

MyLinkedList 

   

  • ●  Put a copy of your edited ,  MyLinkedList.java and files in the directory.
     
  • ●  Compress the folder using zip. Zip is a compression utility available on mac, linux and windows that can compress a directory into a single file. This should result in a file named  <student ID>_assignment1.zip (with <student ID> replaced with your real ID of course).
     
  • ●  Upload the zip file through the page for Assignment 2 in canvas ( https://canvas.ucsc.edu/courses/12730/assignments/39157 ).
    Example Arguments and Output
    Below I show the output for one example command. You should of course test your code with different words as arguments as well.
    For the example command:
     java RhymingDict crumbling mumbling collections abbreviated vegetate mutate
    the output will be as follows. First it prints out the 8 rhyme groups and all their words, then which pairs of words on the command line rhyme. The words in this case are in alphabetical order because they were stored using .
     

 

RhymingDict.java 

 

MySortedLinkedList.java 

   

MySortedLinkedList 

  

EH2 R IY0: (adversary, apothecary, arbitrary, banbury, blackberry,
canterbury, cemetery, commentary, confectionery, constabulary, culinary,
customary, depositary, dictionary, dietary, dignitary, disciplinary,
discretionary, dromedary, dubarry, dysentery, emissary, estuary, feb,
february, functionary, gooseberry, hereditary, honorary, itinerary,
january, judiciary, legendary, literary, luminary, mercenary, military,
missionary, momentary, monastery, monetary, mortuary, mulberry, necessary,
obituary, ordinary, pecuniary, primary, proprietary, reactionary, rosemary,
salutary, sanitary, savagery, secondary, secretary, sedentary, seminary,
solitary, stationary, stationery, statuary, strawberry, temporary,
tributary, unnecessary, unsanitary, veterinary, visionary, vocabulary,
westbury)
EY2 T: (abdicate, abrogate, accelerate, accommodate, accumulate, aggravate,
alienate, alleviate, amalgamate, ameliorate, amputate, annihilate,
anticipate, arbitrate, arrogate, aspirate, assassinate, assimilate,
captivate, carbonate, checkmate, circulate, commemorate, commiserate,
communicate, compensate, complicate, concentrate, congregate, consecrate,
consolidate, contaminate, contemplate, cooperate, corroborate, culminate,
cultivate, decapitate, decorate, dedicate, delegate, delineate,
demonstrate, denominate, depopulate, depreciate, designate, deteriorate,
determinate, devastate, deviate, discriminate, disintegrate, disseminate,
dissipate, educate, elevate, elucidate, emanate, emancipate, emigrate,
enumerate, evacuate, exasperate, excavate, expiate, extenuate, exterminate,

    

extirpate, extricate, facilitate, fascinate, felicitate, flagellate,
fluctuate, generate, gravitate, hesitate, humiliate, hundredweight,
illustrate, imitate, immolate, implicate, inculcate, indicate, inmate,
instigate, isolate, legislate, locate, lubricate, magistrate, mandate,
mediate, meditate, migrate, militate, mitigate, mutilate, narrate,
navigate, necessitate, negotiate, nitrate, obliterate, obviate, officiate,
operate, originate, overstate, paperweight, participate, penetrate,
perforate, permeate, perpetuate, playmate, pontificate, precipitate,
predominate, premeditate, primate, probate, procrastinate, profligate,
propagate, punctuate, recreate, recuperate, regenerate, regulate,
reiterate, repudiate, retaliate, rotate, ruminate, saturate, schoolmate,
segregate, separate, shipmate, situate, stagnate, stimulate, stipulate,
subjugate, sulphate, terminate, underestimate, undulate, vacillate,
vegetate, venerate, vertebrate, vitiate)

UW1: (accrue, adieu, ado, anew, askew, bamboo, bleu, blew, blue, boo, brew, canoe, chew, cou, coup, crew, crewe, cue, debut, deux, dew, doo, drew, du, due, ensue, ewe, few, flew, flue, glue, goo, grew, gu, gue, hew, hoo, hu, hue, jew, jus, kew, knew, ku, misconstrue, moo,  new , nu, ooh, ou, peru, pew, phew, pooh, pursue, q, qu, que, queue, revue, rue, shampoo, shew, shoe, shoo, sioux, slew, stew, strew, su, subdue, sue, taboo, threw, through, to, too,  true , two, u, undo, undue, untrue, view, vous, vue, whew, who, withdrew, woo, you, zoo) 

EY2 T IH0 D: (abbreviated, abdicated, abrogated, accelerated, accentuated,
accommodated, accumulated, adulterated, advocated, aggravated, aggregated,
agitated, alienated, alleviated, amalgamated, ameliorated, amputated,
animated, annihilated, anticipated, antiquated, appreciated, appropriated,
articulated, asphyxiated, assassinated, assimilated, associated,
attenuated, bifurcated, calculated, capitulated, captivated, castrated,
celebrated, circulated, collaborated, commemorated, communicated,
concentrated, congratulated, congregated, consecrated, contaminated,
contemplated, corroborated, corrugated, cultivated, debilitated, decimated,
degenerated, deliberated, delineated, demonstrated, denominated,
depreciated, designated, deteriorated, devastated, deviated, dilapidated,
discriminated, dissipated, duplicated, educated, elevated, eliminated,
emanated, emancipated, emigrated, emulated, enumerated, enunciated,
eradicated, exasperated, excavated, excoriated, exonerated, exterminated,
facilitated, gravitated, hesitated, humiliated, imitated, implicated,
inaugurated, infiltrated, intimated, inundated, irrigated, manipulated,
migrated, miscalculated, moderated, narrated, navigated, obligated,
obliterated, opinionated, outdated, oxygenated, participated, penetrated,
perforated, permeated, perpetrated, perpetuated, populated, precipitated,
predominated, premeditated, procrastinated, promulgated, propagated,

   

radiated, reciprocated, recuperated, regenerated, regulated, reiterated,
rejuvenated, relegated, renovated, repudiated, resuscitated, retaliated,
reverberated, ruminated, saturated, segregated, separated, serrated,
simulated, situated, sophisticated, speculated, stimulated, stipulated,
subjugated, subordinated, substantiated, suffocated, syncopated, tabulated,
tolerated, truncated, uneducated, unmitigated, venerated, ventilated)
EH1 N D IH0 NG: (amending, ascending, bending, blending, commending,
defending, depending, descending, ending, extending, lending, mending,
offending, pending, portending, pretending, rending, sending, spending,
suspending, tending, transcending, trending, unending, wending)
AH1 M B AH0 L IH0 NG: (crumbling, grumbling, humbling, mumbling, rumbling,
stumbling)
IY1 Z AH0 N AH0 B L IY0: (reasonably, unreasonably)
EH1 K SH AH0 N Z: (affections, collections, complexions, connexions,
corrections, elections, erections, objections, projections, protections,
reflections, rejections, sections)
crumbling and mumbling rhyme
collections and abbreviated don't rhyme
mutate is not in the dictionary

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Operating System Based Attacks help

  

Operating System Threats and Vulnerabilities

Global, Inc. is a multinational corporation that has dozens of business units and product lines across the globe. The corporate headquarters has recently made the decision to consolidate on a single operating system platform from which to run all of the components of the business. You are hired to advise this corporation as to how to advance this goal of operating system integration. Among the deliverables you are asked to provide is an analysis of the threats and vulnerabilities that are specific to operating systems.

Complete the Toolwire lab and use it as foundation for this assignment. When submitting your assignment, attach the two screen shots you were asked to capture as part of the lab to this assignment to document successful completion of the lab.

Use the Toolwire lab and the study materials and engage in any additional research needed to fill in knowledge gaps. Write a 2–3 page paper that covers the following topics:

  • Analyze potential operating system based cyber attacks.
  • Characterize the bad actors that might perform operating system based cyber attacks.
  • Evaluate a network operating system for specific points of vulnerability.
  • Evaluate the range of roles within an international organization that participate in selection, implementation, and maintenance of operating system security.

Assignment Requirements

  • Written communication: Written communication is free of errors that detract from the overall message.
  • APA formatting: Resources and citations are formatted according to APA (sixth edition) style and formatting.
  • Length of paper: 2–3 pages, excluding the references page.
  • Font and font size: Times New Roman, 12-point.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Understanding Why Customers Abandon Shopping Carts Results in a $10 Million Sales Increase

The deliverable will be an APA style paper consisting of 2-3 pages (excluding cover, TOC & References pages) with the following Table of contents:
+ Abstract
+ Context and Background Information
+ Identification of the Main Issues/ Problems
+ Analysis of the Issues
+ Questions Answers
+ References

Here is the Case Study at  below needs to be analyses and than 2,5 pages needs to write!! with APA style!!   

Lotte.com, the leading Internet shopping mall in Korea with 13 million customers, has developed an integrated Web traffic analysis system using SAS for Customer Experience Analytics. As a result, Lotte.com has been able to improve the online experience for its customers, as well as generate better returns from its marketing campaigns. Now, Lotte.com executives can confirm results anywhere, anytime, as well as make immediate changes.

With almost one million Web site visitors each day, Lotte.com needed to know how many visitors were making purchases and which channels were bringing the most valuable traffic. After reviewing many diverse solutions and approaches, Lotte.com introduced its integrated Web traffic analysis system using the SAS for Customer Experience Analytics solution. This is the first online behavioral analysis system applied in Korea.

With this system, Lotte.com can accurately measure and analyze Web site visitor numbers, page view status of site visitors and purchasers, the popularity of each product category and product, clicking preferences for each page, the effectiveness of campaigns, and much more. This information enables Lotte.com to better understand customers and their behavior online, and conduct sophisticated, cost-effective targeted marketing.

Commenting on the system, Assistant General Manager Jung Hyo-hoon of the Marketing Planning Team for Lotte.com said, “As a result of introducing the SAS system of analysis, many ‘new truths’ were uncovered around customer behavior, and some of them were ‘inconvenient truths.’” He added, “Some site-planning activities that had been undertaken with the expectation of certain results actually had a low reaction from customers, and the site planners had a difficult time recognizing these results.”

Benefits

Introducing the SAS for Customer Experience Analytics solution fully transformed the Lotte.com Web site. As a result, Lotte.com has been able to improve the online experience for its customers as well as generate better returns from its marketing campaigns.

Since implementing SAS for Customer Experience Analytics, Lotte.com has seen many benefits.

A Jump in Customer Loyalty

A large amount of sophisticated activity information can be collected under a visitor environment, including quality of traffic. Deputy Assistant General Manager Jung said that “by analyzing actual valid traffic and looking only at one to two pages, we can carry out campaigns to heighten the level of loyalty, and determine a certain range of effect, accordingly.” He added, “In addition, it is possible to classify and confirm the order rate for each channel and see which channels have the most visitors.”

Optimized Marketing Efficiency Analysis

Rather than just analyzing visitor numbers only, the system is capable of analyzing the conversion rate (shopping cart, immediate purchase, wish list, purchase completion) compared to actual visitors for each campaign type (affiliation or e-mail, banner, keywords, and others), so detailed analysis of channel effectiveness is possible. In addition, it can confirm the most popular search words used by visitors for each campaign type, location, and purchased products. The page overlay function can measure the number of clicks and number of visitors for each item in a page to measure the value for each location in a page. This capability enables Lotte.com to promptly replace or renew low-traffic items.

Enhanced Customer Satisfaction and Customer Experience Lead to Higher Sales

Lotte.com built a customer behavior analysis database that measures each visitor, what pages are visited, how visitors navigate the site, and what activities are undertaken to enable diverse analysis and improve site efficiency. In addition, the database captures customer demographic information, shopping cart size and conversion rate, number of orders, and number of attempts.

By analyzing which stage of the ordering process deters the most customers and fixing those stages, conversion rates can be increased. Previously, analysis was done only on placed orders. By analyzing the movement pattern of visitors before ordering and at the point where breakaway occurs, customer behavior can be forecast, and sophisticated marketing activities can be undertaken. Through a pattern analysis of visitors, purchases can be more effectively influenced and customer demand can be reflected in real time to ensure quicker responses. Customer satisfaction has also improved as Lotte.com has better insight into each customer’s behaviors, needs, and interests.

Evaluating the system, Jung commented, “By finding out how each customer group moves on the basis of the data, it is possible to determine customer service improvements and target marketing subjects, and this has aided the success of a number of campaigns.”

However, the most significant benefit of the system is gaining insight into individual customers and various customer groups. By understanding when customers will make purchases and the manner in which they navigate throughout the Web page, targeted channel marketing and better customer experience can now be achieved.

Plus, when SAS for Customer Experience Analytics was implemented by Lotte.com’s largest overseas distributor, it resulted in a first-year sales increase of 8 million euros (US$10 million) by identifying the causes of shopping cart abandonment.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

DB2 SQL PL Basic Arithmetic Procedure in Power Systems.

 

You have been asked to create and test two DB2 procedures: one that implements basic arithmetic operations, and another that retrieves data from a specific table. You will develop a version of each procedure for both the Power Systems and System-z environments.

Upon the completion of this lab, students will have hands-on experience coding SQL PL Procedures in DB2 on multiple platforms.

Deliverables:

                Lab Steps            

Step 1    DB2 SQL PL Basic Arithmetic Procedure in Power Systems             15 points

Step 2    DB2 SQL PL Basic Arithmetic Procedure in System z           15 points

Step 3    Retrieving data from Student Registration Database in Power Systems    15 points

Step 4    Retrieving data from Student Registration Database in System z  15 points

                Total Lab Points 60 points

You should submit to the Dropbox a Word document containing:

SQL PL code for each task

Screenshots of the output from each task (Each screenshot immediately follows the associated code).

iLab Steps

Step 1: SQL PL Basic Arithmetic Procedure

Code a PL/SQL script that will output three variables containing messages. To produce these messages, your procedure should initialize three variables with the values 45, 72, and 6.3. These values will be used to create messages as follows.

The first message will report the result of adding the first two numbers (45 and 72) and then multiplying their sum by the third number (6.3). Format the message as:

The result of (first_num + second_num) * third_num equals tot_val. 

An example message, formed using different numbers but following the same approach, would look like this:

The result of (2 + 3) * 4 equals 20

The second message will be constructed in a similar manner, except that now the first number (45) is added to the product of the last two numbers (72 and 6.3). Format the second message as:

The result of first_num + second_num * third_num equals tot_val. 

An example message, formed using different numbers but following the same approach, would look like this:

The result of 2 + 3 * 4 equals 14.

The third message should state:

The difference is due to the “Order of Operations.” 

Sample output:

Lab01_Tsk01 Output:

The result of (2 + 3) * 4 equals 20

The result of 2 + 3 * 4 equals 14

The difference is due to the “Order of Operations.”

The result of 2+3*4 equals 14

The difference is due to the “Order of Precedence”.

Step 2: Retrieving data from Student Registration Database

This requires use of the Student Registration Database and the columns in the Student Table.

Code a SQL PL procedure that will accept a student id as an input parameter and then retrieve the student’s first name, last name, employer, and phone number. This information will be packaged into a message that gets returned from the procedure as an output parameter. The message will be formatted as follows:

[first_name] [last_name] works at [employer] and can be reached at [phone].  

                For example:

Joe Blowe works at FedEx and can be reached at (773) 555-1212.

However, if the student id entered cannot be found in the table, your output message should be as follows::

The student id n does not exist.  

For example:

The student id, 999, does not exist.

Execute the script four times, using the following values: 130, 200, 310, and 909. The last value should result in the message stating that the student id does not exist. (This is a function of the data in the Student table – do not hard-code any specific values in your procedure).

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Discussion on Influencing Style

Here is a questionnaire for you to take on your “Influencing Style”. Provide feedback on how it relates to you and your style. How might you use your style with organization management? How does your style prepare you for operations strategy?

FTT-InfluencingSkillsFinder_v1.0.pdf

Your response should be 250-300 words.  Respond to two postings provided by your classmates.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Extended Euclidean algorithm

1) Using any programming language of your choice implement the Extended Euclidean algorithm 

2) Specifications: The program should take two inputs 1) An integer a, which is the modulus 2) A non-negative integer b that is less than a. The program should output three values 1) gcd(a,b) 2) Integer x and 3) Integer y, such that ax + by = gcd(a,b)  

Test 1 

1) Run your program with a = 1759 b = 550 

2) What are your outputs? 

3) What is the modular multiplicative inverse of 550 mod 1759? 

Test 2 

1) Run your program with a = 43 b = 17 

2) What are your outputs? 

3) What is the modular multiplicative inverse of 17 mod 43? Note that the modular multiplicative inverse has to be non-negative and less than 43. 

Test 3 

1) Run your program with a = 400 b = 10 

2) What are your outputs? 

3) What is the modular multiplicative inverse of 10 mod 400? Be mindful of the gcd value to answers this question 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

web site design

 

Develop a 5-6 page Word document that describes the design for a small Web site that meets the following specifications.

  • The Web site includes four or more Web pages designed according to current usability guidelines.
    • One page must be the Home page.
    • One page must be a subscription page that allows the user to become a member or subscribe to your organization and performs HTML data validation.
  • The Web site must incorporate the use of the following:
    • Images and Audio
    • At least one table (NOT for page layout)
    • At least one form 
    • Navigation
    • Other valid HTML elements
    • Produce a cohesive site that is easy to navigate.
  • The Web site must include external CSS used to format and layout each Web page.
  • Validate the HTML in each Web page.
  • Validate the CSS style rules in each CSS.
  • The design document must include details about your design, technologies employed, potential challenges and explanations regarding your validation process. Include a title page.
  • Add the design document to the Visual Studio Web site folder.
  • Submit the Word Design document and the Web site into a .zip file.

Please add your file.

You will be graded on the design and functionality of the Web site. You will be graded on the usability of the Web site. You will be graded on the ability to include the required Web pages and the required HTML elements in the Web site. You will be graded on the use of CSS to format and layout Web pages. Points will be deducted for a missing or incomplete site plan. Points will be deducted for missing required Web pages. Points will be deducted for any missing required elements and/or attributes. Points will be deducted for any HTML or CSS validation errors including any missing accessibility requirements.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Organizational Resources & Capabilities

A company’s resources and capabilities are integral to achieving a sustainable competitive advantage. Refer to your Thompson (2022) readings and the required videos. For this assignment, consider a company you worked for or one that you know well. Develop your analysis by responding to the following questions:

  • What are the company’s most important resources and why?
  • What are the company’s most important capabilities and why?
  • How do the company’s most important resources and capabilities create a lasting competitive advantage?
  • Relate your response to each of the above to our coursework (Thompson text) from this week.

 Submission Details: 

  • Your analysis must be driven by facts, research, and data.
  • Your analysis should be between 1000 and 1500 words.
  • Incorporate a minimum of at least our course text and one non-course scholarly/peer reviewed source in your paper. All written assignments must include a coverage page, introductory and concluding paragraphs, reference page, double-spaced and proper in-text citations using APA guidelines.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Assignment READ CAREFULLLY !!!

 
        Complete the questions 1, 2, 3, below, working with personality types.  

Learn more about these personality types at ( YOU MUST OPEN AND READ THIS LINK IN ORDER TO ANSWER QUESTIONS) LINK:http://www.personalitypage.com/high-level.html (Links to an external site.)  (Links to an external site.) and complete the following: 

Question 1. WHICH TYPE ARE YOU? Briefly explain (total 5 paragraphs; 1 paragraph is = to 8 sentences)

Question 2. Briefly describe the ISTJ and ENFP personality types in the Myers-Briggs categories (1 paragraph of 8 full sentences (phrases are not sentences (a couple of you wrote phrases instead of sentences in last assignment) .

Question 3. Critical Thinking Question: There are 2 peer employees that you simply cannot get along with or you are in arguments often at meetings. Let’s call them Albert and Jennifer. Albert is a ISTJ and nothing ever bothers him. Unfortunately, he agrees to everything, even if it’s apparent that doing his method will lose your company thousands of dollars ($240,000).
List 2 sentences stating HOW YOU can get Albert to give his true feelings – communicate with the group if he believes the group plans will succeed or fail and why. (How can you make him talk?)

Jennifer is YOUR OPPOSITE personality type. What personality type is opposite you? (answer this)

Other peers have noticed that neither you or Jennifer stand down/compromise.  List 2 sentences stating HOW YOU can improve this communicate. (I know, I said “YOU” and not her. Work conflicts are difficult.)

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now