Propose a website for Clancy’s. Sketch by hand or use form design software to create a prototype of a Clancy’s home page. Indicate hyperlinks and include a sketch of one hyperlink document. Remember to include graphics, icons, and even sound or other media if appropriate. In a paragraph, describe who the intended users of the website are and state why it makes sense for Clancy’s to have a Web presence. Specify whether you will be using flat Web design or skeuomorphic design to create your icons and graphics, and add a paragraph to justify your decision.
What will be an ideal response?
The website will vary by a wide margin, depending on the students. Suggestions are:
A. Put in graphics, perhaps a uniform or police badge.
B. The title should be in large letters.
C. There should be corporate information on the home page.
D. Links should be provided for each uniform style.
E. Each different style should have its own page, with an image or two on the styles.
F. Prices may be included on each page.
G. There might be links to the designers of the uniforms.
H. There should be an order form on a Web page. Each page should have a link to the order form.
The intended users of the website would be various police departments around the world. It makes sense to have a Web presence because Clancy is selling to the police departments, and there are many smaller departments that are potential customers.
You might also like to view...
What is the process for ignoring text wrap for text frames?
What will be an ideal response?
Comment out the word “synchronized” in the heading of the method update. Compile and run RunThread3 again. What is the outcome? Explain.
Consider the following Java classes: ``` import SomeThread3; public class RunThreads3 { public static void main (String[] args) { int originalThreadCount = Thread.activeCount( ); for (int i=0; i<10; i++) { Thread p = new Thread(new SomeThread3()); p.start(); System.out.println("thread count=" +Thread.activeCount( )); } while (Thread.activeCount() > originalThreadCount ){ // loop until all child threads have exited. } System.out.println("finally, Count = " + SomeThread3.count); } }//end class RunThreads3 class SomeThread3 implements Runnable { static int count=0; SomeThread3() { super(); } public void run() { update(); } static public synchronized void update( ){ int myCount = count; int second = (int)(Math.random( ) * 500); try { Thread.sleep(second); } catch (InterruptedException e) { } myCount++; count = myCount; System.out.println("count="+count+ "; thread count=" + Thread.activeCount( )); } } //end class SomeThread3 ```
In Word, Excel, and PowerPoint, the interface can be modified to automatically open a blank document, workbook, or presentation.
Answer the following statement true (T) or false (F)
Comments in Java start with pound (#) signs.
Answer the following statement true (T) or false (F)