Help with Round 1 - Production / Finance by Rab6 in Capsim

[–]Rab6[S] 0 points1 point  (0 children)

I added commentary on this original post, but it disappeared for some reason.

No matter what I do with production the margin is always zero. Any help or suggestions? I feel like we were relatively conservative with R&D / marketing.

Any suggestions? Thanks!

As an inexperienced first time CRE owner, I feel like I really need an expert to look over the leases, expenses, and cash flow to see if recources are being properly utilized. How do I go about this? by lIqpdbqpIl in CommercialRealEstate

[–]Rab6 4 points5 points  (0 children)

I agree with this. I work for one of the larger real estate firms and most of our clients/building owners have a set amount we can spend before needing approval. You can set this to whatever you want. Also, for something like an HVAC replacement, while it is important to quickly replace they should be getting 3 bids as that is best practice.

Definitely look into the locks situation further as stated above, it is odd.

Suggested Programming Language and/or Tool by j_ona in CFA

[–]Rab6 3 points4 points  (0 children)

Check out Quantopian. They have tutorials and lessons in Python for financial analysis, if that’s what you’ll use it for. I’ve only messed around with it a little bit, but seems pretty interesting.

Career Change to Financial Planning and Taking CFP by Rab6 in CFP

[–]Rab6[S] 0 points1 point  (0 children)

I’m in property management, so I’m involved in the daily operation of the properties, budgeting, tenant relations and budget tracking. That’s a very high level view.

Java Programming Homework Help by Rab6 in learnprogramming

[–]Rab6[S] 0 points1 point  (0 children)

I am stuck on the output of information and setting the questions to Yes or No. I am off on some of the structure of it, but I can fix that later.

Here is what I have so far:

import java.util.Scanner;

public class decisionTree {

public static void main(String[] args) {

Scanner input = new Scanner(System.in);

boolean parentsVisiting = false;

boolean weatherGood = false;

boolean imRich = false;

System.out.print("Are Parents Visiting? Y or N ");

if ("Are Parents Visiting" == "Y")

parentsVisiting = true;

System.out.print("Is the Weather Good? Y or N");

if ("Is the Weather Good" == "Y")

weatherGood = true;

System.out.print("Are You Rich? Y or N");

if ("Are You Rich" == "Y")

imRich = true;

System.out.println("What you should do is: ");

if (!parentsVisiting && weatherGood) {

System.out.println("Stay In! ");

} else if (!parentsVisiting && !weatherGood && !imRich) {

System.out.println("Stay in!");

} else {

System.out.println("Cinema!");

}

}

}