Question 1 1 pts
According to the National Bureau of Economic Research, the US slipped into a recession earlier this year.
Group of answer choices
True
False
Flag this Question
Question 2 1 pts
Throughout history money
Group of answer choices
None are correct
has always been "backed" by a commodity
has always been paper currency or precious metals
has always been farm animals
has been virtually anything that is accepted as a means of payment for stuff
Flag this Question
Question 3 1 pts
The US dollar derives its value
Group of answer choices
due to its acceptability
all are correct
because the government says it's "legal tender" and due to its acceptability
from the amount of gold the government owns
because the government says it's "legal tender"
Flag this Question
Question 4 1 pts
The term dollar is derived from the German word
Group of answer choices
thal; which in German means, valley
puppe; which in German means, doll
geld; which in German means, money
zill; which, in German means, horse's rear-end
Flag this Question
Question 5 1 pts
A $120 price tag on a pair of sneakers is an example of money functioning as a
Group of answer choices
means of deferred payment
medium of exchange
store of value (or wealth)
unit of account
In: Economics
Ensuring appropriate communication in teams is essential. The dynamics of a global economy has increased the complexity of both team operations and project success. Planning for communication creates a schedule for planned communication and reinforces the trait among team members. In projects, a RACI (Responsible, Accountable, Consulted, and Informed) chart is often created to ensure that all of the different stakeholders are included at the right level of communication. In addition, communication plans are also developed to plan out a schedule for the frequency of communication.
As a manager of the technical team, you are leading your entire team on a project. Your project team is geographically dispersed with developers in Phoenix and India. You use the "follow-the-sun" approach to development. Therefore, your U.S. team will transfer development to India in the evening and there is another transfer back to the U.S. in the morning. You are implementing updates for new functionality to the CRM application for the call center, which has locations in Phoenix and India.
Create a RACI chart and a 500-750 word communication plan in which you accomplish the following:
Identify what needs to be communicated and the stakeholders in the RACI chart.
Assign the appropriate designation to the stakeholder for the item that requires communication (Responsible, Accountable, Consulted, Informed).
Create a communication plan for the stakeholders to include method and frequency of communication.
Create a communication plan for your project team to include method and frequency of communication.
In: Operations Management
Subject:Child development in early childhood ecucation but I choose physology to be easy but I really need this answer As soon As possible.:
Use Microsoft Word or PowerPoint (or another software tool approved by your instructor) to create a floor plan of the learning environment that would be necessary for your weekly curriculum theme for the age group you chose in Module 01. Be sure to label your floor plan so that it is clear what activity/interest centers you are including and how they are arranged within the space. Your learning environment should reflect Developmentally Appropriate Practices (DAP), as well as the weekly curriculum theme you have identified for the course project. Below is a list of some potential activity/interest areas that you may need. Note: Not all of the activity/interest areas below will be needed for all weekly curriculum themes. Art/ Creative Sensory Cubbies/Personal Spaces Blocks/Building Eating Space Mathematics/Numbers Sleeping Bathroom Space Large Movement Writing Science Music Library/Reading Group Time Puzzles and Fine Motor Manipulatives Cozy Area Write a 1-page description of the learning environment providing your reasoning and explanation for why the activity/interest areas were included, why they are located where they are, and how they will foster learning given your weekly curriculum theme. theme is camping.
In: Psychology
Scenario: You are the CEO of MegaGlobe Business Solutions, a financial consulting corporation based in Chicago that has just recently opened new offices in São Paulo, Brazil and Shenzhen, Guangdong, China. As part of this transition, your employees will now be working collaboratively with employees at these locations to provide financial consulting services in these new markets. To assist with the transition, you will develop an internal leadership blog for your employees that addresses the implications of leading within a culturally-diverse and changing global business environment. This blog should focus on the need to positively adapt to a variety of leadership styles and individual differences within these cultures.
View the videos listed in this week's classroom materials for ideas about how to effectively lead, motivate, and communicate with your employees about the need to adapt within this changing business environment.
Write a 700- to 1,050-word internal leadership blog using the Leadership Blog template, and include the following:
Explain the implications of leading within a changing global business environment.
Describe the Team Leadership Model and how this relates to your current business practices.
Outline positive aspects of gender, diversity, culture, and teamwork that can improve overall business performance.
Apply principles of motivational leadership within a variety of diverse cultures.
Use at least one image, photo, chart, or graph to deliver a key concept within your blog.
In: Operations Management
from typing import List
def longest_chain(submatrix: List[int]) -> int:
"""
Given a list of integers, return the length of the longest chain of
1's
that start from the beginning.
You MUST use a while loop for this! We will check.
>>> longest_chain([1, 1, 0])
2
>>> longest_chain([0, 1, 1])
0
>>> longest_chain([1, 0, 1])
1
"""
i = 0
a = []
while i < len(submatrix) and submatrix[i] != 0:
a.append(submatrix[i])
i += 1
return sum(a)
def largest_rectangle_at_position(matrix: List[List[int]], x: int,
y: int
) -> int:
"""
Returns the area of the largest rectangle whose top left corner is
at
position , in .
You MUST make use of here as you loop through each row
of the matrix. Do not modify the input matrix.
>>> case1 = [[1, 0, 1, 0, 0],
... [1, 0, 1, 1, 1],
... [1, 1, 1, 1, 1],
... [1, 0, 0, 1, 0]]
>>> largest_rectangle_at_position(case1, 0, 0)
4
>>> largest_rectangle_at_position(case1, 2, 0)
5
>>> largest_rectangle_at_position(case1, 1, 2)
6
"""
pass
replace the word pass with a function body by implementing the 1st function. make sure nested loops can be a max of 3. try to keep it as short as possible and fulfill the docstring requirements
In: Computer Science
C++ Zybook Lab 16.5 LAB: Exception handling to detect input string vs. int
The given program reads a list of single-word first names and ages (ending with -1), and outputs that list with the age incremented. The program fails and throws an exception if the second input on a line is a string rather than an int. At FIXME in the code, add a try/catch statement to catch ios_base::failure, and output 0 for the age.
Ex: If the input is:
Lee 18 Lua 21 Mary Beth 19 Stu 33 -1
then the output is:
Lee 19 Lua 22 Mary 0 Stu 34
Here's the code:
#include <string>
#include <iostream>
using namespace std;
int main(int argc, char* argv[]) {
string inputName;
int age;
// Set exception mask for cin stream
cin.exceptions(ios::failbit);
cin >> inputName;
while(inputName != "-1") {
// FIXME: The following line will throw an ios_base::failure.
// Insert a try/catch statement to catch the exception.
// Clear cin's failbit to put cin in a useable state.
try{
//Reading age
cin >> age;
//Printing Name and age incremented by 1 if correct values are
entered
cout << inputName << " " << (age + 1) <<
endl;
}
catch(ios_base::failure){
//Clear cin
cin.clear();
}
cin >> age;
cout << inputName << " " << (age + 1) <<
endl;
cin >> inputName;
}
return 0;
}
In: Computer Science
There are at least five (probably more) places in the attached C# program code that could be optimized. Find at least five things in the Program.cs file that can be changed to make the program as efficient as possible.
using System;
namespace COMS_340_L4A
{
class Program
{
static void Main(string[] args)
{
Console.Write("How many doughnuts do you need for the first
convention? ");
int.TryParse(Console.ReadLine(), out int total1);
Console.Write("How many doughnuts do you need for the second
convention? ");
int.TryParse(Console.ReadLine(), out int total2);
int totalDonuts = Calculator.CalculateSum(new int[] { total1, total2 });
Console.WriteLine($"{ totalDonuts } doughnuts is {
Calculator.ConvertToDozen(totalDonuts)} dozen.");
Console.WriteLine("Press Enter to quit...");
Console.ReadLine();
}
}
static class Calculator
{
static int DOZEN = 12;
public static int CalculateSum(int[] args)
{
int return_value = 0;
foreach (int i in args)
{
return_value += i;
}
return return_value;
}
public static int ConvertToDozen(int total)
{
int dozen = DOZEN;
return total / dozen;
}
}
}
In: Computer Science
Web Server Infrastructure
Web application infrastructure includes sub-components and external applications that provide efficiency, scalability, reliability, robustness, and most critically, security.
Use the graphic below to answer the following questions:
|
Stage 1 |
Stage 2 |
Stage 3 |
Stage 4 |
Stage 5 |
|
Client |
Firewall |
Web Server |
Web Application |
Database |
In: Computer Science
1. Acting Secretary Modly violated one of the accepted principles of good leadership, “praise in public and criticize in private” (ideally one-on-one). What are a few likely reasons that some leaders succumb to the impulse to be harsh and criticize subordinates in public?
2. Before his apology, Acting Secretary Modly issued a statement earlier in the day about his remarks aboard the ship, saying he spoke from the heart and that his words were meant for the crew. “I stand by every word I said, even, regrettably any profanity that may have been used for emphasis,” he said. “Anyone who has served on a Navy ship would understand.” In other words, it’s OK to use profanity in the Navy Why do leaders often use the “acted-of-normalcy” defense (i.e., this is how it’s done around here) to justify their bad actions?
3. Acting Secretary Modly told the crew of the USS Roosevelt not to speak to the media, which he said holds a political agenda. Mr. Modly himself has conducted interviews with Reuters and the Washington Post and published the letter to the editor in the New York Times. Why do some leaders feel that they can operate under different rules than those whom they lead? What steps can a leader take to protect him/herself from these types of tendencies?
In: Operations Management
IN JAVA
12.11 PRACTICE: Branches*: Listing names
A university has a web page that displays the instructors for a course, using the following algorithm: If only one instructor exists, the instructor's first initial and last name are listed. If two instructors exist, only their last names are listed, separated by /. If three exist, only the first two are listed, with "/ …" following the second. If none exist, print "TBD". Given six words representing three first and last names (each name a single word; latter names may be "none none"), output one line of text listing the instructors' names using the algorithm. If the input is "Ann Jones none none none none", the output is "A. Jones". If the input is "Ann Jones Mike Smith Lee Nguyen" then the output is "Jones / Smith / …".
Hints:
Use an if-else statement with four branches. The first detects the situation of no instructors. The second one instructor. Etc.
Detect whether an instructor exists by checking if the first name is "none".
CODE GIVEN:
import java.util.Scanner;
public class main {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
String firstName1, lastName1;
String firstName2, lastName2;
String firstName3, lastName3;
firstName1 = scnr.next();
lastName1 = scnr.next();
firstName2= scnr.next();
lastName2= scnr.next();
firstName3= scnr.next();
lastName3= scnr.next();
/* Type your code here. */
}
}
In: Computer Science