FOLLOW INSTRUCTIONS BELOW , WRITTEN IN JAVA LANGUAGE PLEASE AND THANK YOU !
Project Descriptions
This project involves implementing two process scheduling algorithms. You will be
required to write a Java program to simulate FCFS and RR scheduling policies we
discussed in class. The simulator selects a task to run from a ready queue based on the
scheduling algorithm. Since the project intends to simulate a CPU scheduler, it does not
require any actual process creation or execution. The processes’ information is stored in a
text file.
When a task(process) is scheduled, the simulator will simply print out what task is
selected to run at a time. I have provided a sample run below.
The name of your Java program should be called CPUScheduler.java
The selected scheduling algorithms to implement in this project are:
Round Robin (RR)
First Come First Serve (FCSF)
The above algorithms are already described in class slides, class video recordings and
textbook Chapter 5.
Implementation
The implementation of this project should be completed in Java. Your program will read
information about processes from a text file. This supporting text file contains process
scheduling information such as the pid, arrival time and CPU burst time. Your program
should read in this information, insert the processes into a list, and invoke the scheduler.
Process information
The following example format of how your text file should look like:
P1 0 10
P2 1 8

P3 2 5
The first column represents a process ID. Process ID uniquely identifies a process.
The second column represents arrival time. This is the time when the process arrives
in the unit of milliseconds
The third column represents CPU burst. This is the CPU time requested by a time, in
the unit of milliseconds
Thus, P1 arrives at 0 and has a CPU burst of 10 milliseconds and so forth.
The program will be run from the command line where you provide the name of the file
where the processes are stored.
The simulator first reads task information from the input file and stores all data in a data
structure. Then it starts simulating one scheduling algorithm in a time-driven manner. At
each time unit (or slot), it adds any newly arrived task(s) into the ready queue and calls a
specific scheduler algorithm in order to select appropriate tasks from the ready queue.
When a task is chosen to run, the simulator prints out a message indicating what process
ID is chosen to execute for this time slot. If no task is running (i.e. empty ready queue), it
prints out an "idle" message. Before advancing to the next time unit, the simulator should
update all necessary changes in task and ready queue status.

Grading
110 Total points possible
5 follows good coding practices
5 Runs from the command line
10 Reads the processes from a text file
10 Program compiles successfully and runs
40 FCFS produces the correct output
40 RR produces the correct output
Good coding practices:
Your code must:
be commented
use meaningful variable, method, and class names
use proper indenting
use objects, as well as static and non-static variables and methods, properly
be readable
Sample Execution
Assume that you have created a file process.txt with the following data:
P0 0 3
P1 1 6
P2 5 4
P3 7 3

If you invoke your scheduler (executable CPUScheduler) using the command
java CPUScheduler process.txt 2
Note that in the above command, process.txt is the name of the file to
read from and 2 is the time slide for RR
then your program should have a behavior similar to the following:

-------------------------------------------------
CPU Scheduling Simulation
-------------------------------------------------

-------------------------------------------------
First Come First Served Scheduling
-------------------------------------------------
[0-3] P0 running
[3-9] P1 running
[9-13] P2 running
[13-16] P3 running
Turnaround times:
P0 = 3
P1 = 8
P2 = 8
P3 = 9
Wait times:
P0 = 0
P1 = 2
P2 = 4
P3 = 6
Response times:
P0 = 0
P1 = 2
P2 = 4
P3 = 6
Average turnaround time: 7.00
Average wait time: 3.00
Average response time: 3.00

-------------------------------------------------
Round Robin Scheduling
-------------------------------------------------
[0-2] P0 running
[2-4] P1 running
[4-5] P0 running
[5-7] P1 running

[7-9] P2 running
[9-11] P3 running
[11-13] P1 running
[13-15] P2 running
[15-16] P3 running
Turnaround times:
P0 = 5
P1 = 12
P2 = 10
P3 = 9
Wait times:
P0 = 2
P1 = 6
P2 = 6
P3 = 6
Response times:
P0 = 0
P1 = 1
P2 = 2
P3 = 2
Average turnaround time: 9.00
Average wait time: 5.00
Average Response time: 1.25

Answers

Answer 1
It’s a lot of reading sorry can’t help you but try your best too

Related Questions

What best determines whether a borrower's interest rate on an adjustable rato loan goes up or down?
a fixed interest rate
a bank's finances
a market's condition
a persons finances

Answers

It should be noted that term that best determines whether a borrower's interest rate on an adjustable ratio loan goes up or down is market's condition.

This is because, Market conditions helps to know the state of an industry or economy, and this will helps to get the necessary information about borrower's interest rate on an adjustable ratio loan.

Therefore, option C is correct.

Learn more about Market conditions at:

https://brainly.com/question/11936819

Answer:c

Explanation:

You work in a pawn shop that gets in shipments of jewelry. Each shipment is kept in a file (see below for a sample file) and contains the type of jewelry, the stone in the piece of jewelry and whether it is real or fake. Create a function that prints to screen certain information about the shipment and returns the number of a specific number of items (based on the arguments-see sample runs)
File: jewelry1.txt ring diamond real necklace diamond real ring sapphire fake bracelet ruby fake bracelet diamond fake Sample runs: printf("%d\n",get_available_items("jewelry1.txt","stone")); (base) Computers-MacBook Air! computers .la.out I see that -stone- is important in this shipment. Any specific stone to count? diamond OK. I will keep count of the number of the following that I find: diamond --diamond print out all stones --diamond - - Sapphire --ruby --diamond -ruby returns 3 since there are 4 diamonds printf("%d\n",get_available_items("jewelry1.txt", "type")); (base) Computers-MacBook Air:C computers ./a.out I see that -type- is important in this shipment Any specific type to count? ring Ok. I will keep count of the number of the following that I find: ring ring print out all types --necklace -ring --bracelet --bracelet --ring 3 returns 3 since there are 3 rings printf("%d\n",get_available items("jewelry1.txt", "authentic")); (base) Computers - MacBook Air:C computers .la.out I see that -authentic. is important in this shipment. Any specific authentic to count? fake Ok. I will keep count of the number of the following that I find: fake - real print out all real/fake - real - fake - fake --fake fake returns 4 since there are 4 fakes printf("%d\n",get_available_items("jewelry1.txt","cookie")); (base) Computers-MacBook Air:C computers ./a.out Unknown parameter to check...-1 you have to pass one of the following: type. Stone, authentic

Answers

I find: ring ring print out all types --necklace -ring --bracelet --bracelet --ring 3 returns 3 since there are 3 rings printf("%d\n",get_available items("jewelry1.txt", "authentic")); (base) Computers - MacBook Air:C computers .la.out I see that -authentic. is important in this shipment. Any specific authentic to count? fake Ok. I will keep count of the

2. Many successful game companies have adopted this management approach to create successful and creative video games.
a) Creating a creative and fun workspace for employees
b) Offering free lunches and snacks.
c) Having a good design idea to start with.
d) Having enough material and human resources to work with.

Answers

Answer:

Having a good design idea to wotk with

Explanation:

Can 7Cs help to develope an effective document?

Answers

Answer:

i dont know k srry

Explanation:

A program contains the following prototype:
int cube( int );
and function:
int cube( int num )
{
return num * num * num;
}
Which of the following is a calling statement for the cube function that will cube the value 4 and save the value that is returned from the function in an integer variable named result (assume that the result variable has been properly declared)?
a. cube( 4 );
b. cube( 4 ) = result;
c. result = cube( int 4 );
d. result = cube( 4 );

Answers

Answer:

d. result = cube(4);

Explanation:

Given

Prototype: int cube(int num);

Function: int cube(int num)  {  return num * num * num; }

Required

The statement to get the cube of 4, saved in result

To do this, we have to call the cube function as follows:

cube(4);

To get the result of the above in variable result, we simply assign cube(4) to result.

So, we have:

result = cube(4);

Carla wants to add the existing field "Order ID Number" to an Access form. Which steps will allow her to complete
this task in Design view?
in the Design section, select the Format tab → select Add Existing Fields → cut and paste the field "Order ID
Number" into the form
O in the Design section, select the Form Design Tools tab → select Add Existing Fields — drag and drop the field
"Order ID Number" into the form
O in the Form Design Tools section, select the Arrange tab → select Add Existing Fields → cut and paste the field
"Order ID Number" into the form
O in the Form Design Tools section, select the Design tab → select Add Existing Fields → drag and drop the field
"Order ID Number" into the form
Mark this and return
Next
Submit

Answers

Answer:

in the Design section, select the Form Design Tools tab → select Add Existing Fields — drag and drop the field

"Order ID Number" into the form

Explanation:

I just took it

Describe Atari and explain how the level of technology available at the time impacted the development of Atari game systems

Answers

Answer:

Atari is something that is dangerous .

has led to many bad things to the young ones

Please assist me with these questions - Do not send me links. Issues in opening the links:
15. Which of the following X-Box games helped to launch Microsoft’s gaming console to the top of the market, alongside Sony PlayStation and Nintendo’s Game Cube?
a) Halo 2
b) Portal
c) Quake
d) Guitar Hero

17. The idea of shipping out smaller versioins of the games and following it with expansion packs was first introduced with which of the following games?
a) Blade and Soul
b) The Sims
c) Portal
d) World of warcraft

18. Wii Sports was unique in the way that it allowed a player to ______.
a) play any one of five well-known games without need for instructions
b) participate in a simulation of a sporting event, such as an NBA match
c) could be played by up to 15 gamers at the same time
d) it specifically targeted the older generation, which until that time was not considered by gaming companies.


19. All EXEPT which of the following innovations contributed to making Halo one of the most successful and iconic games of all time?
a) zoom-in control stick
b) regenerating health bars
c) Use of an unlimited number of weapons
d) Matchmaking system that would pair players of similar levels

20. Portal, release in 2007 by Valve studios, can be categorized as a _______
a) First person shooter game
b) Puzzle game
c) Massively Multiplayer online game (MMO)
d) role-playing game

Answers

Answer:

15) Halo 2

17) Sims

18) B

19) A

20) B

Explanation:

10. Created by Tomohiro Nishikado in 1978, which game is considered the first shooter on the market?
a) Pong
b) Space Invaders
c) Dark Shooters
d) Space Monsters

Answers

Answer:

B.

Explanation:

Space Invaders

Jorge necesita saber a cuantos grados Fahrenheit esta la temperatura, pero el servicio meteorológico la indica
en grados centígrados, ayúdale a resolverlo. Formula F=(9/5*C) +32
·HACERLO EN ALGORITMO

Answers

Answer:

Eso es fácil hermano de matemáticas. Solo haces 9/5 veces c = 18/25 + 32 = 67

Explanation:

What is the full form of HTML?​

Answers

Answer:

Hyper text mark up language. is the full form of HTML

hope it helps

stay safe healthy and happy.

Answer:

Hyper text markup language

Evaluate 3³×2³×4²×3-¹×4-²​

Answers

Answer: I already answered this question here:

Answer:

72:)

Explanation:

Hope it helps;))))))))

From your finding,conclusion and recommendations can you make on the issue of human rights violations to:Government​

Answers

Answer:
Different recommendations and conclusion can be drawn on human rights violation in government and communities.
Explanation:
1-Foremost thing that government can do is the legislation to control the human rights violation and this law should be applicable on all the people belong to any community. Government also make human rights violation issue a part of their policy so that every government could understand before hand.
2-Communities should run campaign so that people understand their human rights and can complain against such violations.
Human right violations happens all over the world but individuals and government need to work together to stop and eradicate such violations

7. A puzzle game featuring falling bricks which need to be3 organized on the screen describes which of the following very popular games from the 80s?
a) Tricks
b) Tetris
c) Sonics
d) Bricks

Answers

Answer:

Tetris

Explanation:

Catastrophic injuries and illnesses account for two-thirds of total health care costs in the country of Gnut. The Gnuti government is deciding between two different universal health insurance programs: program X would pay for two-thirds of any health care expense that a Gnuti citizen incurred, while program Y would pay only for catastrophic illnesses and injuries, but would cover 100% of those costs. Which program is likely to better allow Gnuti citizens to smooth consumption

Answers

Answer:

In the country of Gnut

The universal health insurance program that is likely to better allow Gnuti citizens to smooth consumption is:

program Y that would pay only for catastrophic illnesses and injuries.

Explanation:

Program Y is a better option for Gnuti citizens to smooth consumption.  The reason is that catastrophic injuries and illnesses already account for two-thirds of the total health care costs in the country.  These injuries and illnesses cost more income variability to the citizens than other health care expenses.  With the government sponsoring program Y, the citizens will be insulated from consumption patterns caused by income variability.  Consumption smoothing creates the needed balance between spending and saving during the different life phases for the citizens of Gnut.

16. The Nintendo Entertainment System (NES) saw its sales skyrocket as a result of the launch of which of the following games?
a) Pac-Man
b) Super Mario Bros
c) The Legend of Zelda
d) Popeye

Answers

Answer:

Super Mario bros

Explanation:

The percentage of the audience with TV sets turned on that is watching a particular program is known as the ____________________.

Answers

Answer:

Share.

Explanation:

Social media publishing also known as broadcasting, can be defined as a service that avails end users the ability to create or upload web contents in either textual, audio or video format in order to make them appealing to a target audience.

Thus, these multimedia contents are generally accessed by end users from time to time through the use of various network-based devices and television set. As users access these contents, they're presented with the option of sharing a particular content with several other people a number of times without any form of limitation.

Additionally, the demographic or amount of audience (viewers) that a television show or program is able to get to watch at a specific period of time is generally referred to as share.

Hence, the percentage of the audience with TV sets turned on that is watching a particular program is known as the share.

For example, the percentage of the audience tuned in to watch a champions league final on a Saturday night, 8:00pm via their television set.

Consider the following code:
val = 50
def example():
val = 15
print (val)
print (val)
example)
print (val)
What is output?
1.
2.
3.

Answers

I got you bro the answer is 50, 15, 5

There Are Two Programs in this Question who will attempt first i will give brainliest ans reward and big points:-
Question no 1:-
Consider a base class named Employee and its derived classes HourlyEmployee and PermanentEmployee while taking into account the following criteria.
 Employee class has two data fields i.e. a name (of type string) and specific empID (of type integer)
 Both classes (HourlyEmployee and PermanentEmployee) have an attribute named hourlyIncome
 Both classes (HourlyEmployee and PermanentEmployee) have three-argument constructor to initialize the hourlyIncome as well as data fields of the base class
 Class HourlyEmployee has a function named calculate_the_hourly_income to calculate
the income of an employee for the actual number of hours he or she worked. One hour income is Rs. 150
 Similarly, PermanentEmployee class has function named calculate_the_income to calculate the income of an employee that gets paid the salary for exact 240 hours, no matter how many actual hours he or she worked. Again, one hour salary is Rs. 150.
Implement all class definitions with their respective constructors to initialize all data members and functions to compute the total income of an employee. In the main() function, create an instance of both classes (i.e. HourlyEmployee and PermanentEmployee) and test the working of functions that calculate total income of an employee
Question no 2:-
Consider a class BankAccount that has
 Two attributes i.e. accountID and balance and
 A function named balanceInquiry() to get information about the current amount in the account
Derive two classes from the BankAccount class i.e. CurrentAccount and the SavingsAccount. Both classes (CurrentAccount and SavingsAccount) inherit all attributes/behaviors from the BankAccount class. In addition, followings are required to be the part of both classes
 Appropriate constructors to initialize data fields of base class
 A function named amountWithdrawn(amount) to withdraw certain amount while taken into account the following conditions
o While withdrawing from current account, the minimum balance should not decrease Rs. 5000
o While withdrawing from savings account, the minimum balance should not decrease Rs. 10,000
 amountDeposit(amount) to deposit amount in the account
In the main() function, create instances of derived classes (i.e. CurrentAccount and SavingsAccount) and invoke their respective functions to test their working

Answers

Answer:

here you go ,could only do Question 2.try posting question 1 seperately maybe someone else can also try to help

Explanation:

Question 2.

#include <iostream>

using namespace std;

// class BankAccount

class BankAccount{

  

    // instance variables

    private:

        int accountID;

        int balance;

  

    public:

      

        // constructor

        BankAccount(int accountID, int balance){

            this->accountID = accountID;

            this->balance = balance;

        }

      

        // getters and setters

        void setAccoutnId(int accountID){

            this->accountID = accountID;

        }

      

        int getAccountId(){

            return accountID;

        }

      

        void setBalance(int balance){

            this->balance = balance;

        }

      

        int balanceInquiry(){

            return balance;

        }

};

class CurrentAccount : public BankAccount{

  

    public:

  

        // constructor

        CurrentAccount(int accountID, int balance):BankAccount(accountID,balance){

          

        }

      

        // function amount to withdraw

        void amountWithdrawn(int amount){

            setBalance(balanceInquiry()-amount);

        }

      

        // function to deposit amount

        void amountDeposit(int amount){

            setBalance(balanceInquiry()+amount);

        }

};

class SavingsAccount : public BankAccount{

  

    public:

      

        // constructor

        SavingsAccount(int accountID, int balance):BankAccount(accountID,balance){

          

        }

  

        // function amount to withdraw

        void amountWithdrawn(int amount){

            setBalance(balanceInquiry()-amount);

        }

      

         // function to deposit amount

        void amountDeposit(int amount){

            setBalance(balanceInquiry()+amount);

        }

      

      

};

int main()

{

    // calling function of Current Account

    cout<<"Current Account : "<<endl;

    CurrentAccount current(122,100000);

    current.amountWithdrawn(10000);

    cout<<"Your balance after withdraw : ";

    cout<<current.balanceInquiry()<<endl;

    current.amountDeposit(30000);

    cout<<"Your balance after deposit : ";

    cout<<current.balanceInquiry()<<endl;

    cout<<endl<<endl;

  

    // calling function of Savings Account

    cout<<"Savings Account : "<<endl;

    SavingsAccount saving(125,80000);

    saving.amountWithdrawn(5000);

    cout<<"Your balance after withdraw : ";

    cout<<saving.balanceInquiry()<<endl;

    saving.amountDeposit(20000);

    cout<<"Your balance after deposit : ";

    cout<<saving.balanceInquiry();

    return 0;

}

Write a program binary.cpp that reads a positive integer and prints all of its binary digits.

Answers

Answer:

View image below.

Explanation:

They're just asking you to create a num2bin function on Cpp.

If you search for "num2bin in C", you can find a bunch of answers for this if you think my solution is too confusing.

One way to do it is the way I did it in the picture.

Just copy that function and use it in your program. The rest you can do yourself.

2. Released in 1992, Street Fighter II, the revolutionary fighting game, was developed by which company?
a) Electronic Arts
b) Atari Interactive Inc.
c) Capcom
d) Nintendo

Answers

Answer:

It is D

Explanation:

Street Fighter II: The World Warrior is a competitive fighting game developed by Capcom and originally released for arcade systems in 1991.

Answer:

c

Explanation:

How to connect on phpmyadmin?plss

Answers

Open your browser and go to localhost/PHPMyAdmin or click “Admin” in XAMPP UI. Now click Edit privileges and go to Change Admin password, type your password there and save it. Remember this password as it will be used to connect to your Database.

hope this helps!

12. What separated Grand turismo from other racing games was its focus on ______.
a) Your audiences and females in particular
b) Fantasy graphics and visuals
c) Pure simulation and ultrarealistic features
d) All of the above

Answers

Answer:

c) Pure simulation and ultrarealistic features

Explanation:

The main difference between Grand Turismo and other racing games was its focus on Pure simulation and ultrarealistic features. The Grand Turismo series has always been a racing simulation, which was made in order to give players the most realistic racing experience possible. This included hyperrealistic graphics, force feedback, realistic car mechanics, realistic weather, and wheel traction among other features. All of this while other racing games were focusing on the thrill of street racing and modifying cars. Therefore, it managed to set itself apart.

What should be the first tag in any HTML document? A. <head> B. <title> C. <html> D. <!DOCTYPE >​

Answers

Answer:

C.

Explanation:

Write a program in Python that:
- Reads in the data in the file given, Sets up the appropriate classes/attributes/methods, Assigns definitions to each category, Prints out the report for all instances in the input file
Setting up the data:
Month name, Number of days in the month, Market name, Category name, Category definition, Store name, Store type, brand name, sales
The output should have 10 lines or sets of lines. The output will look like this:
For the month of April, Charmin Bath Tissue within Jewel Food stores had sales of $ 68 in the Chicago market for a market share of 52
For the month of April, Charmin Bath Tissue within Jewel Food stores had sales of $ 62 in the Chicago market for a market share of 47
File contents are in .csv file (excel) and were copied and pasted below:
April 30 Chicago Bath Tissue Jewel Food Charmin 68
June 30 Chicago Bath Tissue Jewel Food Charmin 74
April 30 Chicago Bath Tissue CVS Drug Charmin 96
June 30 Chicago Bath Tissue CVS Drug Charmin 33
April 30 Chicago Bath Tissue Jewel Food Scott 62
June 30 Chicago Bath Tissue Jewel Food Scott 87
April 30 Chicago Bath Tissue CVS Drug Scott 98
June 30 Chicago Bath Tissue CVS Drug Scott 39
April 30 Chicago Bath Tissue Marianos Food Charmin 85
June 30 Chicago Bath Tissue Marianos Food Charmin 20

Answers

Answer:

Explanation:

The following code is written in Python. It is a function that takes in the location of the csv file. Reads it line by line and ouputs the desired statement as seen in the example output provided in the question. The data does not provide the market share value to add to the statement so it was left blank.

from csv import reader

def printCSV(csv_file):

   with open(csv_file, 'r') as read_obj:

       csv_reader = reader(read_obj)

       for row in csv_reader:

           print(

               "For the month of " + row[0] + ", " + row[7] + " " + row[3] + " " + row[4] + " within " + row[5] + " " +

               row[6] + " stores had sales of $ " + row[8] + " in the " + row[2] + " market for a market share of ")

13. By adding built-in writable memory to its cartridge, Nintendo’s _________________ was the first console game that gamers could save.
a) Mario Bros.
b) Donkey Kong
c) The Legend of Zelda
d) Zork

Answers


The answer is c
Explanation:

When it comes to having certain sales skills as a hotel manager, being able to really hear, learn about, and show customers that the products/services you offer will meet their needs is a vital skill to have. When you show customers that you truly hear their needs, what sales skill are you practicing?
active listening
product knowledge
communication
confidence

Answers

Answer:

Communication

Explanation:

The ability to communicate clearly when working with customers is a key skill because miscommunications can result in disappointment and frustration. The best customer service professionals know how to keep their communications with customers simple and leave nothing to doubt.

5. Which of the following people is credited with creating the first successful video game?
a) Al Alcorn
b) Ralph Baer
c) Shigeru Miyamoto
d) Nolan Bushnell

Answers

William Higinbotham other than him C
William Higinbotham
October 1958: Physicist Invents First Video Game. In October 1958, Physicist William Higinbotham created what is thought to be the first video game. It was a very simple tennis game, similar to the classic 1970s video game Pong, and it was quite a hit at a Brookhaven National Laboratory open house.

Your program will be used by many departments at the university. Your comments will be important to their IT people. What would be a useful comment?

This was a really hard part to write, but it finally works.

I’m not sure what this does, but I don’t have time to troubleshoot it.

This segment returns a value that is used by the segment marked B.

Answers

Answer:

This segment returns a value that is used by the segment marked B.

Explanation:

just took assigment

Answer:

C

Explanation:

computer is classified into how many ?​

Answers

Answer:

four types

Explanation:

There are four types in the classifications of the computer by size are Supercomputer, Mainframe computer, Minicomputer, and Micro Computer

Answer:

The computer is classified in 4:

Supercomputer

Mainframe computer

Minicomputer

Micro Computer

Explanation:

Other Questions
a bottle of orange juice costs 3.50 and a bottle of grape juice costs 5.30. what is the difference in the price be between the orange juice and the grape juice A spherical water tank with a radius of 21 ft is being filled at a rate of 150 ft3 per hour. How much time must elapse for the water tank to be completely filled? Use 3.14 for .Choose the volume of the full water tank. Write a program binary.cpp that reads a positive integer and prints all of its binary digits. Find the surface area of a sphere with a diameter of 12 mm. fin math today PLEASE What happens within the person who makes a great profit by cheating? (Use complete sentences).Help!! What is the area of the shaded region use 3.14 for the pie and round your answer to the nearest tenth. 6cm and 10cm helpppppppppppppppppppppp Expand and combine like terms.(5 - 2x^4) (5 + 2x^4) = (no links or files) Solve this equation using the quadratic formula. This question should be solved both ways. (1) Quadratic Formula and (2) Factoring Qu factores influyeron en el desarrollo de la independencia norteamericana? I WILL GIVE BRAINLIEST TO WHOEVER DOESNT USE A LINK OR FILE AND JUST ANSWERS THE QUESTION How do philosophical issues matter for people of faith? Start by a discussion about the nature of philosophical problems and their solutions. Then show how some issue related to faith is a philosophical concern. Explain the options that a philosophical analysis offers and as you do, highlight concepts like validity, necessary and sufficient conditions and critical analysis. How does the philosophical analysis integrate with your faith? That is to say, how does your faith make a difference in how you approach the philosophical problem AND how does your philosophical understanding direct your faith in regard to this problem? (It will benefit you to consider philosophical issues other than the existence of God.) Question 14(1 point)(04.03 MC)Read and choose the option with the correct answer.I am Rosario from Orlando, Florida, USA. I am getting married in Orlando this summer but want to celebrate a wedding with some traditions from the Dominican Republic. My Dominican grandma used to tell me about the weddings she attended in the Dominican Republic when she was growing up. I want to be sure she has wonderful memories as she attends my wedding!Based on the lesson, how could Rosario add a tradition from the Dominican Republic? (1 point)Bring childhood pictures to the ceremonyDance prior to the wedding ceremony Have a relative bring coins during the ceremonyOrder a special dessert for after the wedding ceremony by answering thesafebookYOUNAINKSWhat is the over-all message ofThinde buferyou pontthe pictureFRIENDSKINDRa bedPASSWOSDyour passwardsoftige pris2. What is one word in the posterthat hits you the most? Why?Don't be furtherSonds othersPATIENTS & TEACHEASTE BUSARKTEUEINFRIENDBLOCKREPORTsed on the picture, how can you become a resnonsible social media LaCuYou can afford monthly deposits of $250 into an account that pays 4.8% compoundedmonthly. How long will it be until you have $11,900 to buy a boat?Att what is the mean of the values in the dot plot 1. Which answer choice best completes this sentence?The verb conocer is used in Spanish to talk about knowing.orA. the facts; a personB. a person; a place or thingC. how to do something; factsD. how to do something; a place n the vertical integration model, the company controlsraw materials and transportation.all means of production.transportation only. What are some places of employment for veterinary careers?