BI

 

BE-12

1. Explain why it is useful to describe group work in terms of the time/place framework.

2.  Describe the kinds of support that groupware can provide to decision makers.

3.  Explain why most groupware is deployed today over the Web.

4.  Explain in what ways physical meetings can be inefficient. Explain how technology can make meetings more effective.

5. Compare simons four phase decision making to the steps in using GDSS.

You will rewrite the temperature conversion

  

You will rewrite the temperature conversion program from the previous week. Your GUI application must inherit from the JFrame class. The GUI and event handling setup should be done in the constructor. Do not use any of the GUI editing capabilities of Eclipse for this assignment. The temperature conversion application should have a label and JTextField in which the user inputs a value which must appear in the upper part of the frame. There should be a set of three radio buttons which indicate the input scale of the value to be converted.

There should also be a set of three radio buttons which indicate the output scale to be converted to. The three input scale buttons must appear vertically aligned (i.e., use a JPanel) on the left side of the display, and the three output scale buttons must appear vertically aligned (i.e., use another JPanel) and appear on the right side of the display. Event handling should be set up so that selection of any input or output radio button causes an event which triggers the event handling code to determine which of nine possible conversions is needed. You can display the result in an output text field or in a Jlabel which appears in the bottom part of the display.

Your program should accurately convert from Fahrenheit, Celsius, Kelvin to Fahrenheit, Celsius, Kelvin. NOTE: Only the selected conversion is displayed in the output area!!! When the conversion selection changes, the output area should change to show only the new result. The output should display three digits after the decimal point. HINT: Use the ItemListener interface and use the isSelected method on the radio buttons to learn which buttons are turned on!

700 words Proposal Memo-APA Format(Note: No plagiarism)

 In our readings for this week, we’ve learned about designing interfaces and dialogues. For your assignment, you will apply what you’ve learned to make a recommendation.Here is the context for your assignment:Tim is happy with your work. The next part of the proposal will be to provide a high-level recommendation on the method of interacting with the proposed system. For this part of the proposal, Tim wants you to provide a high-level or executive summary and make a recommendation (see below for details).Compose a proposal that is a minimum of 700 words (double-spaced) in length and responds to the two tasks listed below with the necessary references to support your work:

  1. Provide a high-level or executive summary of the following interaction methods: object-based, form, natural language, and command language.
  2. Then, provide a recommendation for the proposed system. Make sure you provide a clear justification for your recommendation.

Making ER diagrams.

On page 89 of your textbook, complete exercises E.3.5a-E.35j. Use the tool ERDPlus (https://erdplus.com/standalone (Links to an external site.)) to create the diagrams.

Submit your answers in a Microsoft Word document :

The instructions are as follows: 

E3.5    For the ER diagrams created in the following exercises, map the ER diagram into a relational schema and do the following:

E3.5a  For exercise E2.2a, show several records in each relation and mark those values that indicate mandatory participation on the 1 side and those that indicate optional participation on the M side.

E3.5b  For exercise E2.2b, show several records in each relation and mark those values that indicate optional participation on the 1 side and those that indicate mandatory participation on the M side.

E3.5c  For exercise E2.2c, show several records in each relation and mark those values that indicate mandatory participation on the 1 side and those that indicate mandatory participation on the M side.

E3.5d  For exercise E2.2d, show several records in each relation and mark those values that indicate optional participation on the 1 side and those that indicate optional participation on the M side.

E3.5e  For exercise E2.2e, show several records in each relation and mark those values that indicate mandatory participation on one side and those that indicate optional participation on the other side.

E3.5f  For exercise E2.2f, show several records in each relation and mark those values that indicate mandatory participation on one side and those that indicate mandatory participation on the other side.

E3.5g  For exercise E2.2g, show several records in each relation and mark those values that indicate optional participation on one side and those that indicate optional participation on the other side.

E3.5h  For exercise E2.2h, show several records in each relation and mark those values that indicate mandatory participation on one side and those that indicate optional participation on the other side

E3.5i  For exercise E2.2i, show several records in each relation and mark those values that indicate mandatory participation on one side and those that indicate mandatory participation on the other side.

E3.5j  For exercise E2.2j, show several records in each relation and mark those values that indicate optional participation on one side and those that indicate optional participation on the other side.

Note: I will attach E.2.2a-j as a references to do the exercises, but you are not supposed to be doing them. You are supposed to be answering 3.5a-j.

Turnitin™ enabled

week 5 assignment

 Hide Assignment InformationTurnitin™Turnitin™ enabledThis assignment will be submitted to Turnitin™.Instructions

Assignment Instructions:

Case Study Question

Society is becoming increasingly dependent on computers and technology for functioning in every day life. Every aspect of our lives has been affected by the infiltration of computers and technology. Computers are used to conduct business from home, meet new friends and find old friends, maintain communications with distant family, and to met out some stress relief after a long day at the office. As more and more people rely on computers to succeed each day, it begs the question – are people becoming too dependent on computers, your paper should look at either the historical changes that shook up society or future changes being developed now that will shake up society?

Submission Instructions:
Please answer the question with a minimum of 500 words. Attach the submission in a word document. Credit will not be given if the document is not the minimum number of words.

Assignment

1 page

Read chapter 32 , online resources and reputable articles/journals AND:

Choose an organization that you are familiar with, for example a university, place that you are working for or any other organization and write 1 page and describe your plan and proposal for a comprehensive Disaster Recovery and Business Continuity plan.

List all your references/resources.

ratings list

use the for statement to iterate on the ratings list and subtract each rating score by 3.5, then store the subtracted value inside a new list.

use this list of rating scores: 2,2,3,3,3,4,4,4,5,5

Pseudocode:

Set the variable with the list of rating scores

Initialize a list variable named mean deviations

Use the for statement to iterate through the rating scores

Subtract the score by 3.5 then store it in mean deviations.

Display the mean deviations list.

2) Write a program that determines the value of the coins in a jar and prints the total in dollars

and cents. Read integer values that represent the number of quarters, dimes, nickels, and

pennies. This program will require user input, output needs to have the correct currency

format without using the currency formatting code.

Prolog Puzzle Project

Please read the following instructions and make sure you can finish it on time. And note the puzzles you choose in coding. And it must be tested in this way:

check :-
   solution(S), solve(S),
   aggregate_all(count, (solve(_T)), Count), format(“Found ~w solutions~n”, [Count]),
   Count=1. 

Overview

The “funniest” way I can think of to practice logic programming is to use it to solve a logic puzzle. A logic puzzle is typically presented as a mystery and list of clues that can be used to infer facts such as “who done it”.

For this assignment, we will use the Printable Logic Puzzles (Links to an external site.) website to find two puzzles to solve. One will be a “challenging” puzzle and the other will be a “Very Hard” puzzle.

For this assignment, you will write all of the clues as rules in a prolog program.

Your prolog file must obey the following format:

  1. The name of the prolog files must be ‘challenging.pl’ and ‘veryhard.pl’
  2. Your prolog file must provide a url/1 fact to get the URL of the puzzle being solced.
  3. Your prolog file must also provide a solution/1 fact with the correct solution hardcoded in. You will get the correct solution from the Printable Logic Puzzles (Links to an external site.) website.
  4. Your prolog file must provide a solve/1 rule that uses the clues to find one, and only one, table that is the solution.
  5. Your puzzle must have a series of clueX(T) rules that are satisfied whenever the solution in T is consistent with clue X.
  6. Your puzzle must include the check rule as follows:
check :- solution(S), solve(S), aggregate_all(count, (solve(_T)), Count), format("Found ~w solutions~n", [Count]), Count=1. 

To receive credit, your puzzle must find one, and only one, solution to the puzzle.

Your assignment will be checked by running swipl in the docker container as follows:

swipl -q -g check -g halt challenging.pl 

or

swipl -q -g check -g halt veryhard.pl 

which will use your solve and solution predicates to make sure you find exactly one solution and that it is the correct solution.

You can, of course, work on your solution using SWISH (Links to an external site.) in which case you may want to also use their table rendering plugin (Links to an external site.) to display your solution. Once you have a solution, however, you should confirm that it runs properly in the container. This may mean commenting out the part where you load the plugin.

Checking Your Solution

make check

or

make check-challenging
make check-veryhard

All of these MUST pass before you submit the assignment.

8-1 Discussion: Integrating Multiple Networks

 For a growing business, one location is typically not enough. With enough personnel and capital, many businesses prefer to set up multiple offices to attract different regions of customers.

With separate offices, how can your business install a network so all the locations can work, communicate, and share information easily, instantaneously, and effectively? For your main post, assume the following:

A business has two locations in different states. Both locations have their own T1 internet connections. How do you join these two networks together so every computer can see every other computer?

Your solution should provide a suggested overview to achieve the end goal of integrating the networks. Be sure you address important issues like maintaining security, reliability, end-user operations, and network speed.
 

Discussion 7- Org Behavior

Chapter 7. Motivation ConceptsInitial Postings: Read and reflect on the assigned readings for the week. Then post what you thought was the most important concept(s), method(s), term(s), and/or any other thing that you felt was worthy of your understanding in each assigned textbook chapter.Your initial post should be based upon the assigned reading for the week, so the textbook should be a source listed in your reference section and cited within the body of the text. Other sources are not required but feel free to use them if they aid in your discussion.Also, provide a graduate-level response to each of the following questions:

  1. Given that individuals tend to judge the favorability of their outcomes relative to what others receive, what can be the result of someone getting rewarded for their performance but yet being disappointed in the reward that they receive?
[Your post must be substantive and demonstrate insight gained from the course material. Postings must be in the student’s own words – do not provide quotes!]  [Your initial post should be at least 450+ words and in APA format (including Times New Roman with font size 12 and double spaced). Post the actual body of your paper in the discussion thread then attach a Word version of the paper for APA review]

Text-

Title: Essentials of Organizational Behavior, Student Value Edition 

ISBN: ISBN-13: 9780135468890 

Authors: Stephen P. Robbins, Timothy A. Judge 

Publisher: Pearson 

Edition: 15TH