SlideShare a Scribd company logo
1 of 19
1-What are the opportunities and threats that could impact the
organization?
· Review all the general environmental categories. (PESTEL
Analysis)
· Use Porter’s Five Forces model to analyze the company’s
industry. Identify key competitors and analyze their strategies,
core competencies, and competitive response.
2-What are the strengths or weaknesses of the organization?
· Review factors within the company that are critical to the
strategy of the firm and classify them as strengths or
weaknesses.
· Look for resources, capabilities, and core competencies.
· Use the "Four Criteria of Sustainable Competitive Advantage".
3-In the past, BMW has been able to successfully differentiate
its products by engaging in value-adding value chain activities.
What are some of these specific activities? How can BMW
ensure its ability to continue with value-adding activities as it
evolves into a maker of self-driving cars?
· Use the "Value Chain Analysis" to identify value-adding
activities and functions.
· This question is not about Business or Corporate level
strategies. focus on the functional level.
Programming Using Inheritance/Programming Using
Inheritance/.vs/Programming Using Inheritance/v16/.suo
Programming Using Inheritance/Programming Using
Inheritance/Account.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Programming_Using_Inheritance
{
class Account
{
//Declares the instance variable for the class
private decimal Balance;
private string AccountName;
private int AccountNumber;
//Creates the class constructor and initialize its instance
variables using mutator methods
public Account(decimal Balance, string AccountName, int
AccountNumber)
{
setAccontNumber(AccountNumber);
setAccountName(AccountName);
//For the balance initialization to make sure it is greater
than zero
if (Balance >= 0)
setBalance(Balance);
else
setBalance(Balance);
}
//Creates mutator methods to set balance, accountNumber
and accountName
public void setBalance(decimal Balance)
{
this.Balance = Balance;
}
public void setAccontNumber(int AccountNumber)
{
this.AccountNumber = AccountNumber;
}
public void setAccountName(string AccountName)
{
this.AccountName = AccountName;
}
//To get the instance field variables
public decimal getBalance()
{
return this.Balance;
}
public int getAccontNumber()
{
return this.AccountNumber;
}
public string getAccountName()
{
return this.AccountName;
}
//Creates a credit method to add current balance to passed
balance
public void Credit(decimal Amount)
{
this.Balance += Amount;
}
//Creates a credit method to deduct current balance from
passed balance and return the operation status whether
successful or not
public Boolean Debit(decimal Amount)
{
if (Amount <= Balance){
this.Balance -= Amount;
return true;
}
else
{
Console.WriteLine("Insufficient Funds");
return false;
}
}
//Prints the formatted result of current status of instance
variables
public void PrintAccount()
{
Console.WriteLine("Account Name:t{0}nAccount
Number:t{1}nBalance:t{2:c}n",AccountName,AccountNumb
er,Balance);
}
}
}
Programming Using Inheritance/Programming Using
Inheritance/App.config
Programming Using Inheritance/Programming Using
Inheritance/bin/Debug/Programming Using Inheritance.exe
Programming Using Inheritance/Programming Using
Inheritance/bin/Debug/Programming Using
Inheritance.exe.config
Programming Using Inheritance/Programming Using
Inheritance/bin/Debug/Programming Using Inheritance.pdb
Programming Using Inheritance/Programming Using
Inheritance/CheckingAccount.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Programming_Using_Inheritance
{
//Extends the parent class
class CheckingAccount : Account
{
private decimal FeeCharged;
//Initializes the checking fee and pass call the base
constructor of parent class
public CheckingAccount(decimal Balance, string
AccountName, int AccountNumber, decimal FeeCharge) :
base(Balance, AccountName, AccountNumber)
{
setFeeAmount(FeeCharge);
}
//Sets the checking fee but first make sure the fee is
greater than 0
public void setFeeAmount(decimal FeeAmount)
{
if (FeeAmount >= 0)
this.FeeCharged = FeeAmount;
else
this.FeeCharged = 0;
}
//Credits the account by first deducting the checking fee
public new void Credit(decimal Amount)
{
base.Credit(Amount - FeeCharged);
}
//Tries to debit the account by first checking if the debting
process was successful. If successful then it adds a deduction
fee
public new void Debit(decimal Amount)
{
if(base.Debit(Amount))
{
base.Debit(FeeCharged);
}
}
//Prints formatted results of current status of instance
variables
public new void PrintAccount()
{
Console.WriteLine("Account Name:t{0}nAccount
Number:t{1}nBalance:t{2:c}nFee Charged:t{3:c}n",
getAccountName(), getAccontNumber(), getBalance(),
FeeCharged);
}
}
}
Programming Using Inheritance/Programming Using
Inheritance/Class1.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Programming_Using_Inheritance
{
class Class1
{
}
}
Programming Using Inheritance/Programming Using
Inheritance/Class2.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Programming_Using_Inheritance
{
class Class2
{
}
}
Programming Using Inheritance/Programming Using
Inheritance/obj/Debug/.NETFramework, Version=v4.7.2.Assemb
lyAttributes.cs
// <autogenerated />
using System;
using System.Reflection;
[assembly:
global::System.Runtime.Versioning.TargetFrameworkAttribute(
".NETFramework,Version=v4.7.2", FrameworkDisplayName =
".NET Framework 4.7.2")]
Programming Using Inheritance/Programming Using
Inheritance/obj/Debug/DesignTimeResolveAssemblyReferencesI
nput.cache
Programming Using Inheritance/Programming Using
Inheritance/obj/Debug/Programming Using
Inheritance.csproj.AssemblyReference.cache
Programming Using Inheritance/Programming Using
Inheritance/obj/Debug/Programming Using
Inheritance.csproj.CoreCompileInputs.cache
026cec76836a0225d44f26dc85a994df45ff0746
Programming Using Inheritance/Programming Using
Inheritance/obj/Debug/Programming Using
Inheritance.csproj.FileListAbsolute.txt
C:UsersciannsourcereposProgramming Using
InheritanceobjDebugProgramming Using
Inheritance.csproj.AssemblyReference.cache
C:UsersciannsourcereposProgramming Using
InheritanceobjDebugProgramming Using
Inheritance.csproj.CoreCompileInputs.cache
C:UsersciannsourcereposProgramming Using
InheritancebinDebugProgramming Using
Inheritance.exe.config
C:UsersciannsourcereposProgramming Using
InheritancebinDebugProgramming Using Inheritance.exe
C:UsersciannsourcereposProgramming Using
InheritancebinDebugProgramming Using Inheritance.pdb
C:UsersciannsourcereposProgramming Using
InheritanceobjDebugProgramming Using Inheritance.exe
C:UsersciannsourcereposProgramming Using
InheritanceobjDebugProgramming Using Inheritance.pdb
Programming Using Inheritance/Programming Using
Inheritance/obj/Debug/Programming Using Inheritance.exe
Programming Using Inheritance/Programming Using
Inheritance/obj/Debug/Programming Using Inheritance.pdb
Programming Using Inheritance/Programming Using
Inheritance/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Programming_Using_Inheritance
{
class Program
{
static void Main(string[] args)
{
//Instantiate the classes by values
CheckingAccount checking = new
CheckingAccount(1000,"Doe-Checking",1,3);
SavingsAccount savings = new SavingsAccount(2000,
"Doe-Saving", 2, 5);
checking.PrintAccount();
savings.PrintAccount();
Console.WriteLine("Deposit $100 into checking");
checking.Credit(100);
checking.PrintAccount();
Console.WriteLine("Withdraw $50 from checking");
checking.Debit(50);
checking.PrintAccount();
Console.WriteLine("Withdraw $6,000 from checking");
checking.Debit(6000);
checking.PrintAccount();
Console.WriteLine("Deposit $3,000 into savings");
savings.Credit(3000);
savings.PrintAccount();
Console.WriteLine("Withdraw $200 from savings");
savings.Debit(200);
savings.PrintAccount();
Console.WriteLine("Calculate interest on savings");
savings.Credit(savings.CalculateInterest());
savings.PrintAccount();
Console.WriteLine("Withdraw $10,000 from savings");
savings.Debit(10000);
savings.PrintAccount();
Console.WriteLine("Press the [Enter] key to
continue.");
Console.ReadLine();
}
}
}
Programming Using Inheritance/Programming Using
Inheritance/Programming Using Inheritance.csproj
Debug
AnyCPU
{DBC30B10-A9C4-4152-AB04-5DA51B4D73ED}
Exe
Programming_Using_Inheritance
Programming Using Inheritance
v4.7.2
512
true
true
AnyCPU
true
full
false
binDebug
DEBUG;TRACE
prompt
4
AnyCPU
pdbonly
true
binRelease
TRACE
prompt
4
Programming Using Inheritance/Programming Using
Inheritance/Programming Using Inheritance.sln
Microsoft Visual Studio
Solution
File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.32106.194
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") =
"Programming Using Inheritance", "Programming Using
Inheritance.csproj", "{DBC30B10-A9C4-4152-AB04-
5DA51B4D73ED}"
EndProject
Global
GlobalSection(

More Related Content

Similar to 1-What are the opportunities and threats that could impact the org

MCC Scripts update
MCC Scripts updateMCC Scripts update
MCC Scripts updatesupergigas
 
Advanced Apex Webinar
Advanced Apex WebinarAdvanced Apex Webinar
Advanced Apex Webinarpbattisson
 
Vertical Recommendation Using Collaborative Filtering
Vertical Recommendation Using Collaborative FilteringVertical Recommendation Using Collaborative Filtering
Vertical Recommendation Using Collaborative Filteringgorass
 
Dive Deep into Apex: Advanced Apex!
Dive Deep into Apex: Advanced Apex! Dive Deep into Apex: Advanced Apex!
Dive Deep into Apex: Advanced Apex! Salesforce Developers
 
Automatically Repairing Test Cases for Evolving Method Declarations
Automatically Repairing Test Cases for Evolving Method DeclarationsAutomatically Repairing Test Cases for Evolving Method Declarations
Automatically Repairing Test Cases for Evolving Method DeclarationsICSM 2010
 
This project calls for the modification of the DollarFormat clas.pdf
This project calls for the modification of the DollarFormat clas.pdfThis project calls for the modification of the DollarFormat clas.pdf
This project calls for the modification of the DollarFormat clas.pdfjibinsh
 
Refactoring And Unit Testing
Refactoring And Unit TestingRefactoring And Unit Testing
Refactoring And Unit Testingliufabin 66688
 
Week 8
Week 8Week 8
Week 8A VD
 
HS2021 Database Design and UseWeek 2 - 2020 Tutorial
        HS2021 Database Design and UseWeek 2 - 2020 Tutorial        HS2021 Database Design and UseWeek 2 - 2020 Tutorial
HS2021 Database Design and UseWeek 2 - 2020 Tutorialtroutmanboris
 
HS2021 Database Design and UseWeek 2 - 2020 Tutorial.docx
        HS2021 Database Design and UseWeek 2 - 2020 Tutorial.docx        HS2021 Database Design and UseWeek 2 - 2020 Tutorial.docx
HS2021 Database Design and UseWeek 2 - 2020 Tutorial.docxShiraPrater50
 
Please distinguish between the .h and .cpp file, create a fully work.pdf
Please distinguish between the .h and .cpp file, create a fully work.pdfPlease distinguish between the .h and .cpp file, create a fully work.pdf
Please distinguish between the .h and .cpp file, create a fully work.pdfneerajsachdeva33
 
Comp 220 i lab 3 bank account lab report and source code
Comp 220 i lab 3 bank account lab report and source codeComp 220 i lab 3 bank account lab report and source code
Comp 220 i lab 3 bank account lab report and source codepradesigali1
 
MSCD650 Final Exam feedback FormMSCD650 Final Exam Grading For.docx
MSCD650 Final Exam feedback FormMSCD650 Final Exam Grading For.docxMSCD650 Final Exam feedback FormMSCD650 Final Exam Grading For.docx
MSCD650 Final Exam feedback FormMSCD650 Final Exam Grading For.docxgilpinleeanna
 
Account.h Definition of Account class. #ifndef ACCOUNT_H #d.pdf
Account.h  Definition of Account class. #ifndef ACCOUNT_H #d.pdfAccount.h  Definition of Account class. #ifndef ACCOUNT_H #d.pdf
Account.h Definition of Account class. #ifndef ACCOUNT_H #d.pdfanujmkt
 

Similar to 1-What are the opportunities and threats that could impact the org (20)

MCC Scripts update
MCC Scripts updateMCC Scripts update
MCC Scripts update
 
Advanced Apex Webinar
Advanced Apex WebinarAdvanced Apex Webinar
Advanced Apex Webinar
 
03b loops
03b   loops03b   loops
03b loops
 
Vertical Recommendation Using Collaborative Filtering
Vertical Recommendation Using Collaborative FilteringVertical Recommendation Using Collaborative Filtering
Vertical Recommendation Using Collaborative Filtering
 
Dive Deep into Apex: Advanced Apex!
Dive Deep into Apex: Advanced Apex! Dive Deep into Apex: Advanced Apex!
Dive Deep into Apex: Advanced Apex!
 
Automatically Repairing Test Cases for Evolving Method Declarations
Automatically Repairing Test Cases for Evolving Method DeclarationsAutomatically Repairing Test Cases for Evolving Method Declarations
Automatically Repairing Test Cases for Evolving Method Declarations
 
This project calls for the modification of the DollarFormat clas.pdf
This project calls for the modification of the DollarFormat clas.pdfThis project calls for the modification of the DollarFormat clas.pdf
This project calls for the modification of the DollarFormat clas.pdf
 
Refactoring And Unit Testing
Refactoring And Unit TestingRefactoring And Unit Testing
Refactoring And Unit Testing
 
Week 8
Week 8Week 8
Week 8
 
Meet the CBO in Version 11g
Meet the CBO in Version 11gMeet the CBO in Version 11g
Meet the CBO in Version 11g
 
Oracle GL Summary Accounts
Oracle GL Summary AccountsOracle GL Summary Accounts
Oracle GL Summary Accounts
 
Df12 Performance Tuning
Df12 Performance TuningDf12 Performance Tuning
Df12 Performance Tuning
 
Php unit (eng)
Php unit (eng)Php unit (eng)
Php unit (eng)
 
Telecom Churn Analysis
Telecom Churn AnalysisTelecom Churn Analysis
Telecom Churn Analysis
 
HS2021 Database Design and UseWeek 2 - 2020 Tutorial
        HS2021 Database Design and UseWeek 2 - 2020 Tutorial        HS2021 Database Design and UseWeek 2 - 2020 Tutorial
HS2021 Database Design and UseWeek 2 - 2020 Tutorial
 
HS2021 Database Design and UseWeek 2 - 2020 Tutorial.docx
        HS2021 Database Design and UseWeek 2 - 2020 Tutorial.docx        HS2021 Database Design and UseWeek 2 - 2020 Tutorial.docx
HS2021 Database Design and UseWeek 2 - 2020 Tutorial.docx
 
Please distinguish between the .h and .cpp file, create a fully work.pdf
Please distinguish between the .h and .cpp file, create a fully work.pdfPlease distinguish between the .h and .cpp file, create a fully work.pdf
Please distinguish between the .h and .cpp file, create a fully work.pdf
 
Comp 220 i lab 3 bank account lab report and source code
Comp 220 i lab 3 bank account lab report and source codeComp 220 i lab 3 bank account lab report and source code
Comp 220 i lab 3 bank account lab report and source code
 
MSCD650 Final Exam feedback FormMSCD650 Final Exam Grading For.docx
MSCD650 Final Exam feedback FormMSCD650 Final Exam Grading For.docxMSCD650 Final Exam feedback FormMSCD650 Final Exam Grading For.docx
MSCD650 Final Exam feedback FormMSCD650 Final Exam Grading For.docx
 
Account.h Definition of Account class. #ifndef ACCOUNT_H #d.pdf
Account.h  Definition of Account class. #ifndef ACCOUNT_H #d.pdfAccount.h  Definition of Account class. #ifndef ACCOUNT_H #d.pdf
Account.h Definition of Account class. #ifndef ACCOUNT_H #d.pdf
 

More from AbbyWhyte974

1. Use Postman” to test API at  httpspostman-echo.coma. Use
1. Use Postman” to test API at  httpspostman-echo.coma. Use1. Use Postman” to test API at  httpspostman-echo.coma. Use
1. Use Postman” to test API at  httpspostman-echo.coma. UseAbbyWhyte974
 
1. Use the rubric to complete the assignment and pay attention t
1. Use the rubric to complete the assignment and pay attention t1. Use the rubric to complete the assignment and pay attention t
1. Use the rubric to complete the assignment and pay attention tAbbyWhyte974
 
1. True or false. Unlike a merchandising business, a manufacturing
1. True or false. Unlike a merchandising business, a manufacturing1. True or false. Unlike a merchandising business, a manufacturing
1. True or false. Unlike a merchandising business, a manufacturingAbbyWhyte974
 
1. Top hedge fund manager Sally Buffit believes that a stock with
1. Top hedge fund manager Sally Buffit believes that a stock with 1. Top hedge fund manager Sally Buffit believes that a stock with
1. Top hedge fund manager Sally Buffit believes that a stock with AbbyWhyte974
 
1. This question is on the application of the Binomial option
1. This question is on the application of the Binomial option1. This question is on the application of the Binomial option
1. This question is on the application of the Binomial optionAbbyWhyte974
 
1. Tiktaalik httpswww.palaeocast.comtiktaalikW
1. Tiktaalik        httpswww.palaeocast.comtiktaalikW1. Tiktaalik        httpswww.palaeocast.comtiktaalikW
1. Tiktaalik httpswww.palaeocast.comtiktaalikWAbbyWhyte974
 
1. This week, we learned about the balanced scorecard and dashboar
1. This week, we learned about the balanced scorecard and dashboar1. This week, we learned about the balanced scorecard and dashboar
1. This week, we learned about the balanced scorecard and dashboarAbbyWhyte974
 
1. The company I chose was Amazon2.3.4.1) Keep i
1. The company I chose was Amazon2.3.4.1) Keep i1. The company I chose was Amazon2.3.4.1) Keep i
1. The company I chose was Amazon2.3.4.1) Keep iAbbyWhyte974
 
1. Think about a persuasive speech that you would like to present
1. Think about a persuasive speech that you would like to present 1. Think about a persuasive speech that you would like to present
1. Think about a persuasive speech that you would like to present AbbyWhyte974
 
1. The two properties about a set of measurements of a dependent v
1. The two properties about a set of measurements of a dependent v1. The two properties about a set of measurements of a dependent v
1. The two properties about a set of measurements of a dependent vAbbyWhyte974
 
1. The Danube River flows through 10 countries. Name them in the s
1. The Danube River flows through 10 countries. Name them in the s1. The Danube River flows through 10 countries. Name them in the s
1. The Danube River flows through 10 countries. Name them in the sAbbyWhyte974
 
1. The 3 genes that you will compare at listed below. Take a look.
1. The 3 genes that you will compare at listed below. Take a look.1. The 3 genes that you will compare at listed below. Take a look.
1. The 3 genes that you will compare at listed below. Take a look.AbbyWhyte974
 
1. Student and trainer detailsStudent details Full nameStu
1. Student and trainer detailsStudent details  Full nameStu1. Student and trainer detailsStudent details  Full nameStu
1. Student and trainer detailsStudent details Full nameStuAbbyWhyte974
 
1. Student uses MS Excel to calculate income tax expense or refund
1. Student uses MS Excel to calculate income tax expense or refund1. Student uses MS Excel to calculate income tax expense or refund
1. Student uses MS Excel to calculate income tax expense or refundAbbyWhyte974
 
1. Socrates - In your view, what was it about Socrates’ teachings
1. Socrates - In your view, what was it about Socrates’ teachings 1. Socrates - In your view, what was it about Socrates’ teachings
1. Socrates - In your view, what was it about Socrates’ teachings AbbyWhyte974
 
1. Select a patient” (friend or family member) on whom to perform
1. Select a patient” (friend or family member) on whom to perform1. Select a patient” (friend or family member) on whom to perform
1. Select a patient” (friend or family member) on whom to performAbbyWhyte974
 
1. Respond to your classmates’ question and post. Submission to y
1. Respond to your classmates’ question and post.  Submission to y1. Respond to your classmates’ question and post.  Submission to y
1. Respond to your classmates’ question and post. Submission to yAbbyWhyte974
 
1. Review the HCAPHS survey document, by clicking on the hyperlink
1. Review the HCAPHS survey document, by clicking on the hyperlink1. Review the HCAPHS survey document, by clicking on the hyperlink
1. Review the HCAPHS survey document, by clicking on the hyperlinkAbbyWhyte974
 
1. Saint Leo Portal loginUser ID[email protected]
1. Saint Leo Portal loginUser ID[email protected]          1. Saint Leo Portal loginUser ID[email protected]
1. Saint Leo Portal loginUser ID[email protected] AbbyWhyte974
 
1. Reference is ch. 5 in the e-text, or ch. 2 in paper text...plea
1. Reference is ch. 5 in the e-text, or ch. 2 in paper text...plea1. Reference is ch. 5 in the e-text, or ch. 2 in paper text...plea
1. Reference is ch. 5 in the e-text, or ch. 2 in paper text...pleaAbbyWhyte974
 

More from AbbyWhyte974 (20)

1. Use Postman” to test API at  httpspostman-echo.coma. Use
1. Use Postman” to test API at  httpspostman-echo.coma. Use1. Use Postman” to test API at  httpspostman-echo.coma. Use
1. Use Postman” to test API at  httpspostman-echo.coma. Use
 
1. Use the rubric to complete the assignment and pay attention t
1. Use the rubric to complete the assignment and pay attention t1. Use the rubric to complete the assignment and pay attention t
1. Use the rubric to complete the assignment and pay attention t
 
1. True or false. Unlike a merchandising business, a manufacturing
1. True or false. Unlike a merchandising business, a manufacturing1. True or false. Unlike a merchandising business, a manufacturing
1. True or false. Unlike a merchandising business, a manufacturing
 
1. Top hedge fund manager Sally Buffit believes that a stock with
1. Top hedge fund manager Sally Buffit believes that a stock with 1. Top hedge fund manager Sally Buffit believes that a stock with
1. Top hedge fund manager Sally Buffit believes that a stock with
 
1. This question is on the application of the Binomial option
1. This question is on the application of the Binomial option1. This question is on the application of the Binomial option
1. This question is on the application of the Binomial option
 
1. Tiktaalik httpswww.palaeocast.comtiktaalikW
1. Tiktaalik        httpswww.palaeocast.comtiktaalikW1. Tiktaalik        httpswww.palaeocast.comtiktaalikW
1. Tiktaalik httpswww.palaeocast.comtiktaalikW
 
1. This week, we learned about the balanced scorecard and dashboar
1. This week, we learned about the balanced scorecard and dashboar1. This week, we learned about the balanced scorecard and dashboar
1. This week, we learned about the balanced scorecard and dashboar
 
1. The company I chose was Amazon2.3.4.1) Keep i
1. The company I chose was Amazon2.3.4.1) Keep i1. The company I chose was Amazon2.3.4.1) Keep i
1. The company I chose was Amazon2.3.4.1) Keep i
 
1. Think about a persuasive speech that you would like to present
1. Think about a persuasive speech that you would like to present 1. Think about a persuasive speech that you would like to present
1. Think about a persuasive speech that you would like to present
 
1. The two properties about a set of measurements of a dependent v
1. The two properties about a set of measurements of a dependent v1. The two properties about a set of measurements of a dependent v
1. The two properties about a set of measurements of a dependent v
 
1. The Danube River flows through 10 countries. Name them in the s
1. The Danube River flows through 10 countries. Name them in the s1. The Danube River flows through 10 countries. Name them in the s
1. The Danube River flows through 10 countries. Name them in the s
 
1. The 3 genes that you will compare at listed below. Take a look.
1. The 3 genes that you will compare at listed below. Take a look.1. The 3 genes that you will compare at listed below. Take a look.
1. The 3 genes that you will compare at listed below. Take a look.
 
1. Student and trainer detailsStudent details Full nameStu
1. Student and trainer detailsStudent details  Full nameStu1. Student and trainer detailsStudent details  Full nameStu
1. Student and trainer detailsStudent details Full nameStu
 
1. Student uses MS Excel to calculate income tax expense or refund
1. Student uses MS Excel to calculate income tax expense or refund1. Student uses MS Excel to calculate income tax expense or refund
1. Student uses MS Excel to calculate income tax expense or refund
 
1. Socrates - In your view, what was it about Socrates’ teachings
1. Socrates - In your view, what was it about Socrates’ teachings 1. Socrates - In your view, what was it about Socrates’ teachings
1. Socrates - In your view, what was it about Socrates’ teachings
 
1. Select a patient” (friend or family member) on whom to perform
1. Select a patient” (friend or family member) on whom to perform1. Select a patient” (friend or family member) on whom to perform
1. Select a patient” (friend or family member) on whom to perform
 
1. Respond to your classmates’ question and post. Submission to y
1. Respond to your classmates’ question and post.  Submission to y1. Respond to your classmates’ question and post.  Submission to y
1. Respond to your classmates’ question and post. Submission to y
 
1. Review the HCAPHS survey document, by clicking on the hyperlink
1. Review the HCAPHS survey document, by clicking on the hyperlink1. Review the HCAPHS survey document, by clicking on the hyperlink
1. Review the HCAPHS survey document, by clicking on the hyperlink
 
1. Saint Leo Portal loginUser ID[email protected]
1. Saint Leo Portal loginUser ID[email protected]          1. Saint Leo Portal loginUser ID[email protected]
1. Saint Leo Portal loginUser ID[email protected]
 
1. Reference is ch. 5 in the e-text, or ch. 2 in paper text...plea
1. Reference is ch. 5 in the e-text, or ch. 2 in paper text...plea1. Reference is ch. 5 in the e-text, or ch. 2 in paper text...plea
1. Reference is ch. 5 in the e-text, or ch. 2 in paper text...plea
 

Recently uploaded

Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 

Recently uploaded (20)

Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 

1-What are the opportunities and threats that could impact the org

  • 1. 1-What are the opportunities and threats that could impact the organization? · Review all the general environmental categories. (PESTEL Analysis) · Use Porter’s Five Forces model to analyze the company’s industry. Identify key competitors and analyze their strategies, core competencies, and competitive response. 2-What are the strengths or weaknesses of the organization? · Review factors within the company that are critical to the strategy of the firm and classify them as strengths or weaknesses. · Look for resources, capabilities, and core competencies. · Use the "Four Criteria of Sustainable Competitive Advantage". 3-In the past, BMW has been able to successfully differentiate its products by engaging in value-adding value chain activities. What are some of these specific activities? How can BMW ensure its ability to continue with value-adding activities as it evolves into a maker of self-driving cars? · Use the "Value Chain Analysis" to identify value-adding activities and functions. · This question is not about Business or Corporate level strategies. focus on the functional level. Programming Using Inheritance/Programming Using Inheritance/.vs/Programming Using Inheritance/v16/.suo Programming Using Inheritance/Programming Using Inheritance/Account.cs using System;
  • 2. using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Programming_Using_Inheritance { class Account { //Declares the instance variable for the class private decimal Balance; private string AccountName; private int AccountNumber; //Creates the class constructor and initialize its instance variables using mutator methods public Account(decimal Balance, string AccountName, int AccountNumber) {
  • 3. setAccontNumber(AccountNumber); setAccountName(AccountName); //For the balance initialization to make sure it is greater than zero if (Balance >= 0) setBalance(Balance); else setBalance(Balance); } //Creates mutator methods to set balance, accountNumber and accountName public void setBalance(decimal Balance) { this.Balance = Balance; } public void setAccontNumber(int AccountNumber) { this.AccountNumber = AccountNumber; }
  • 4. public void setAccountName(string AccountName) { this.AccountName = AccountName; } //To get the instance field variables public decimal getBalance() { return this.Balance; } public int getAccontNumber() { return this.AccountNumber; } public string getAccountName() { return this.AccountName; }
  • 5. //Creates a credit method to add current balance to passed balance public void Credit(decimal Amount) { this.Balance += Amount; } //Creates a credit method to deduct current balance from passed balance and return the operation status whether successful or not public Boolean Debit(decimal Amount) { if (Amount <= Balance){ this.Balance -= Amount; return true; } else { Console.WriteLine("Insufficient Funds"); return false;
  • 6. } } //Prints the formatted result of current status of instance variables public void PrintAccount() { Console.WriteLine("Account Name:t{0}nAccount Number:t{1}nBalance:t{2:c}n",AccountName,AccountNumb er,Balance); } } } Programming Using Inheritance/Programming Using Inheritance/App.config Programming Using Inheritance/Programming Using Inheritance/bin/Debug/Programming Using Inheritance.exe Programming Using Inheritance/Programming Using Inheritance/bin/Debug/Programming Using Inheritance.exe.config
  • 7. Programming Using Inheritance/Programming Using Inheritance/bin/Debug/Programming Using Inheritance.pdb Programming Using Inheritance/Programming Using Inheritance/CheckingAccount.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Programming_Using_Inheritance { //Extends the parent class class CheckingAccount : Account { private decimal FeeCharged; //Initializes the checking fee and pass call the base constructor of parent class public CheckingAccount(decimal Balance, string AccountName, int AccountNumber, decimal FeeCharge) : base(Balance, AccountName, AccountNumber)
  • 8. { setFeeAmount(FeeCharge); } //Sets the checking fee but first make sure the fee is greater than 0 public void setFeeAmount(decimal FeeAmount) { if (FeeAmount >= 0) this.FeeCharged = FeeAmount; else this.FeeCharged = 0; } //Credits the account by first deducting the checking fee public new void Credit(decimal Amount) { base.Credit(Amount - FeeCharged); } //Tries to debit the account by first checking if the debting process was successful. If successful then it adds a deduction fee
  • 9. public new void Debit(decimal Amount) { if(base.Debit(Amount)) { base.Debit(FeeCharged); } } //Prints formatted results of current status of instance variables public new void PrintAccount() { Console.WriteLine("Account Name:t{0}nAccount Number:t{1}nBalance:t{2:c}nFee Charged:t{3:c}n", getAccountName(), getAccontNumber(), getBalance(), FeeCharged); } } } Programming Using Inheritance/Programming Using
  • 10. Inheritance/Class1.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Programming_Using_Inheritance { class Class1 { } } Programming Using Inheritance/Programming Using Inheritance/Class2.cs using System; using System.Collections.Generic; using System.Linq; using System.Text;
  • 11. using System.Threading.Tasks; namespace Programming_Using_Inheritance { class Class2 { } } Programming Using Inheritance/Programming Using Inheritance/obj/Debug/.NETFramework, Version=v4.7.2.Assemb lyAttributes.cs // <autogenerated /> using System; using System.Reflection; [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute( ".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] Programming Using Inheritance/Programming Using
  • 12. Inheritance/obj/Debug/DesignTimeResolveAssemblyReferencesI nput.cache Programming Using Inheritance/Programming Using Inheritance/obj/Debug/Programming Using Inheritance.csproj.AssemblyReference.cache Programming Using Inheritance/Programming Using Inheritance/obj/Debug/Programming Using Inheritance.csproj.CoreCompileInputs.cache 026cec76836a0225d44f26dc85a994df45ff0746 Programming Using Inheritance/Programming Using Inheritance/obj/Debug/Programming Using Inheritance.csproj.FileListAbsolute.txt C:UsersciannsourcereposProgramming Using InheritanceobjDebugProgramming Using Inheritance.csproj.AssemblyReference.cache C:UsersciannsourcereposProgramming Using InheritanceobjDebugProgramming Using Inheritance.csproj.CoreCompileInputs.cache C:UsersciannsourcereposProgramming Using InheritancebinDebugProgramming Using Inheritance.exe.config C:UsersciannsourcereposProgramming Using InheritancebinDebugProgramming Using Inheritance.exe C:UsersciannsourcereposProgramming Using InheritancebinDebugProgramming Using Inheritance.pdb C:UsersciannsourcereposProgramming Using
  • 13. InheritanceobjDebugProgramming Using Inheritance.exe C:UsersciannsourcereposProgramming Using InheritanceobjDebugProgramming Using Inheritance.pdb Programming Using Inheritance/Programming Using Inheritance/obj/Debug/Programming Using Inheritance.exe Programming Using Inheritance/Programming Using Inheritance/obj/Debug/Programming Using Inheritance.pdb Programming Using Inheritance/Programming Using Inheritance/Program.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Programming_Using_Inheritance { class Program { static void Main(string[] args)
  • 14. { //Instantiate the classes by values CheckingAccount checking = new CheckingAccount(1000,"Doe-Checking",1,3); SavingsAccount savings = new SavingsAccount(2000, "Doe-Saving", 2, 5); checking.PrintAccount(); savings.PrintAccount(); Console.WriteLine("Deposit $100 into checking"); checking.Credit(100); checking.PrintAccount(); Console.WriteLine("Withdraw $50 from checking"); checking.Debit(50); checking.PrintAccount(); Console.WriteLine("Withdraw $6,000 from checking");
  • 15. checking.Debit(6000); checking.PrintAccount(); Console.WriteLine("Deposit $3,000 into savings"); savings.Credit(3000); savings.PrintAccount(); Console.WriteLine("Withdraw $200 from savings"); savings.Debit(200); savings.PrintAccount(); Console.WriteLine("Calculate interest on savings"); savings.Credit(savings.CalculateInterest()); savings.PrintAccount(); Console.WriteLine("Withdraw $10,000 from savings"); savings.Debit(10000); savings.PrintAccount();
  • 16. Console.WriteLine("Press the [Enter] key to continue."); Console.ReadLine(); } } } Programming Using Inheritance/Programming Using Inheritance/Programming Using Inheritance.csproj Debug AnyCPU {DBC30B10-A9C4-4152-AB04-5DA51B4D73ED} Exe Programming_Using_Inheritance Programming Using Inheritance v4.7.2 512 true true AnyCPU true full
  • 18. Programming Using Inheritance/Programming Using Inheritance/Programming Using Inheritance.sln Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.32106.194 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Programming Using Inheritance", "Programming Using Inheritance.csproj", "{DBC30B10-A9C4-4152-AB04- 5DA51B4D73ED}" EndProject Global