Questions
you will have a choice to conduct an interview with a spiritual leader (Option 1) or...

you will have a choice to conduct an interview with a spiritual leader (Option 1) or write a paper based on John Hick's pluralistic hypothesis regarding the Dalai Lama (Option 2). You are strongly encouraged to choose between Option 1 and Option 2 as early as feasible and then plan accordingly, though you are required to inform the instructor of the chosen option by the conclusion of Module 5.

You are encouraged to review each option fully and choose the one that best suits your particular gifts, abilities, and/or geographical limitations.

In: Psychology

Answer the following question as if it were being asked during an interview for a job....

Answer the following question as if it were being asked during an interview for a job. What would your skills and personality contribute to a programming team?

Be sure to include details in your answer. What are your strengths? What are you passionate about? Why do you want a job as a programmer? Your response should be 1-2 well-formed paragraphs.

In: Computer Science

As a leader or manager when conducting a job interview the vetting of an individual revolves...

As a leader or manager when conducting a job interview the vetting of an individual revolves around their experience and education. If the candidate can convince that leader or manager that they hold the right balance of experience and education then great they are hired. Should personality also be considered along with experience and education? Why or why not? Please explain fully with detail and examples.

In: Operations Management

I want to know the details interpretation of this code for my interview preperation on this...

I want to know the details interpretation of this code for my interview preperation on this code. This is A* algorithm in c++

#include<bits/stdc++.h>
using namespace std;
#define DISCONNECTED -1
int num_of_node,num_of_edge,graph[30][30],pathCost[30];
void init_Heuristic();

struct Node{
    int from,to;
    int cost;
};
struct CompareNode{
    bool operator()(Node& n1, Node& n2){
        if(n1.cost > n2.cost)return true;
        return false;
    }
};
map<int,int>Heuristic;
priority_queue<Node, vector<Node>, CompareNode> PQ;
vector<Node>path;
void AStarSearch(int source,int destination){

    init_Heuristic();
    for(int i = 1; i <= num_of_node; i++){
        if(graph[source][i] != DISCONNECTED){
            Node n;
            n.from = source;
            n.to = i;
            n.cost = graph[source][i] + Heuristic[i];
            pathCost[i] = graph[source][i];
            PQ.push(n);
        }
    }
    while(!PQ.empty()){
        Node tmp = PQ.top();
        path.push_back(tmp);
        if(tmp.to == destination)break;
        PQ.pop();
        for(int i = 1; i <= num_of_node; i++){
            if(graph[tmp.to][i] != DISCONNECTED){
                Node n;
                n.from = tmp.to;
                n.to = i;
                n.cost = pathCost[tmp.to] + graph[tmp.to][i] + Heuristic[i];
                pathCost[i] = pathCost[tmp.to] + graph[tmp.to][i];
                PQ.push(n);
            }
        }
    }
}
int main(){

    int a,b,c,source,destination;

    cout << "Enter Node: " << endl;
    cin >> num_of_node;
    cout << "Enter Edge: " << endl;
    cin >> num_of_edge;
    for(int i=1; i<=num_of_node; i++)
for(int j=1; j<=num_of_node; j++)
   graph[i][j] = DISCONNECTED;

    for(int i = 0; i < num_of_edge; i++){
        cin >> a >> b >> c;
        graph[a][b] = c;
    }
    cout << "Enter source: " << endl;
    cin >> source;
    cout << "Enter destination: " << endl;
    cin >> destination;
    AStarSearch(source,destination);
    for(int i = 0; i < path.size(); i++)
        cout << path.at(i).from << " -> " << path.at(i).to << " = " << path.at(i).cost << endl;
    return 0;
}
void init_Heuristic(){

    ///straight line distance ///

    Heuristic[1] = 10;
    Heuristic[2] = 5;
    Heuristic[3] = 0;
    Heuristic[4] = 13;

}

In: Computer Science

1. Experts will tell you that it is important to "prepare" for an interview. What type...

1. Experts will tell you that it is important to "prepare" for an interview. What type of preparation should you do?

Summarize the information and add your thoughts to what the experts say. Be sure to also include your interviewing preparation experiences.

2. What types of retail sales are included in your channel strategy for your Course Project? How will culture in the host market influence international personal selling?

In: Operations Management

You are called in for a job interview at a local diner where you will wait...

You are called in for a job interview at a local diner where you will wait tables for extra cash to help pay your way through college. As you enter the diner, you overhear the manager denying an application to a woman who is considered by society to be overweight. Construct a short impromptu talk that you would have with the manager with regard to this situation.

In: Psychology

Arthur Baxter, a manager in records retention for SWC Company, has ordered seven laptop computers for...

Arthur Baxter, a manager in records retention for SWC Company, has ordered seven laptop computers for his department, even though he only has five employees. In addition to each laptop, he ordered extra copies of several software programs. When the equipment arrives, Baxter sends one of the extra laptops to his son who is a freshman at Eastern University and sells three of the original software packages to friends. What offenses could Baxter be charged with and why?

In: Accounting

Service Modification and Development Assume the role of Service Marketing Manager of a specialized service company...

Service Modification and Development
Assume the role of Service Marketing Manager of a specialized service company that operates in th neighboring cities of Tuskegee University. List the service attributes of your selected service center an Identify the problems associated with each service attributeeach attribute for betterment of the entire service centerOnce you are done with the service modification, explain the ways you have Incorporated the of marketing mix in designing this newly modified customer-oriented service Provide appropriate justification and example to validate your answer .

In: Operations Management

In 2018, the Westgate Construction Company entered into a contract to construct a road for Santa...

In 2018, the Westgate Construction Company entered into a contract to construct a road for Santa Clara County for $10,000,000. The road was completed in 2020. Information related to the contract is as follows:

2018 2019 2020
Cost incurred during the year $ 2,604,000 $ 4,032,000 $ 1,940,400
Estimated costs to complete as of year-end 5,796,000 1,764,000 0
Billings during the year 2,040,000 4,596,000 3,364,000
Cash collections during the year 1,820,000 4,000,000 4,180,000


Westgate recognizes revenue over time according to percentage of completion.


rev: 09_15_2017_QC_CS-99734

4. Calculate the amount of revenue and gross profit (loss) to be recognized in each of the three years assuming the following costs incurred and costs to complete information. (Do not round intermediate calculations and round your final answers to the nearest whole dollar amount. Loss amounts should be indicated with a minus sign.)

2018 2019 2020
Cost incurred during the year $ 2,604,000 $ 3,820,000 $ 3,220,000
Estimated costs to complete as of year-end 5,796,000 3,120,000 0
2018 2019 2020
Revenue
Gross profit (loss)

5. Calculate the amount of revenue and gross profit (loss) to be recognized in each of the three years assuming the following costs incurred and costs to complete information. (Do not round intermediate calculations and round your final answers to the nearest whole dollar amount. Loss amounts should be indicated with a minus sign.)

2018 2019 2020
Cost incurred during the year $ 2,604,000 $ 3,820,000 $ 3,960,000
Estimated costs to complete as of year-end 5,796,000 4,140,000 0
2018 2019 2020
Revenue
Gross profit (loss)

In: Accounting

On December 31, 2020, Petra Company invests $26,000 in Valery, a variable interest entity. In contractual...

On December 31, 2020, Petra Company invests $26,000 in Valery, a variable interest entity. In contractual agreements completed on that date, Petra established itself as the primary beneficiary of Valery. Previously, Petra had no equity interest in Valery. Immediately after Petra’s investment, Valery presents the following balance sheet:

Cash $ 26,000 Long-term debt $ 114,000
Marketing software 146,000 Noncontrolling interest 78,000
Computer equipment 46,000 Petra equity interest 26,000
Total assets $ 218,000 Total liabilities and equity $ 218,000

Each of the amounts represents an assessed fair value at December 31, 2020, except for the marketing software.

The December 31 business fair value of Valery is assessed at $104,000.

  1. If the carrying amount of the marketing software was undervalued by $31,000, what amounts for Valery would appear in Petra’s December 31, 2020, consolidated financial statements?

  2. If the carrying amount of the marketing software was overvalued by $31,000, what amounts for Valery would appear in Petra’s December 31, 2020, consolidated financial statements?

If the carrying amount of the marketing software was undervalued by $31,000, what amounts for Valery would appear in Petra’s December 31, 2020, consolidated financial statements? (Input all amounts as positive values.)

Account Amount

If the carrying amount of the marketing software was overvalued by $31,000, what amounts for Valery would appear in Petra’s December 31, 2020, consolidated financial statements? (Input all amounts as positive values.)

Account Amount

In: Accounting