how do you fix your zsnes emulator from lagging it’s lagging on My laptop

Answers

Answer 1

To fix your zsnes emulator from lagging use another emulator, like Snes9X or BSnes.

Explanation:

The reason why this lag is here is because of how the backgrounds work. First off, the PC, has a variety of stuff running in the background that could soak up CPU time and slow down the emulator just enough to cause the sync issues. The PC's running a new version of SNES9x, which is more processor intensive. The sync on the monitor versus the TV might be slightly different. NTSC TVs have a refresh rate of 59.94 frames per second, whereas your PC monitor might be exactly 60 frames per second. If the emulator is compensating for the difference, that could cause the difference. As for the controller, I would suggest making sure no other programs on your PC have that slight input lag. Some controller drivers have a lot of processing involved in them that can cause that sort of issue, and I wouldn't be surprised if the Xbox simply handles the inputs faster since it's designed as a gaming rig. It's also possible that the newest version of SNES9x is slightly slower on the controller input.

Related Questions

6.5 code practice edhesive questions 1-4

Answers

Answer:

//We need to sum various numbers using a python program, and then store the numbers in a text file.

def sumnum():

   file2 = open("numbers2.txt","w")

   i=5

   while i != 0:

       number=input("Enter the no.")

       file2.write(number)

       file2.write("\n")

       i = i -1

   file2.close()

   file=open("numbers2.txt", "r+")

   number = 0

   sum2 = 0

   for number in file:

       sum2 =sum2 + int(number)

   print(sum2)

   file2.close()

sumnum()

Explanation:

Please check the answer section.

Which telecommunications device is ideal for communication during natural disasters when regular telecommunication modes might not be functional?

A.
fax machine
B.
personal digital assistant
C.
satphone
D.
smartphone

Answers

Answer:

A satphone because if regular communication is not working, then a smart phone would not work

Answer:     c

Explanation:

i got it right when i had this

are engineers who help to develop products and projects by creating technical drawings

Answers

Engineers are vital in the creation of technical drawings for product and project development. Technical drawings must be detailed and precise to ensure clarity in the design and manufacturing processes. The use of CAD tools has revolutionized the way engineers design, analyze, and fabricate components.

Engineers play a critical role in the development of products and projects by creating technical drawings that serve as essential blueprints for construction and manufacturing. These technical drawings must be easy to understand, complete, correct, and up to date, to accurately convey engineering design and operations. In the process of engineering design, engineers collaborate often, whether on a team of architects specifying the layout of a building or a team tasked with devising a new jet engine. They use drawings to communicate complex ideas efficiently.

Engineering is fundamentally about the design and creation of things that are practical and beneficial for our lives. Thus, engineering design incorporates not only creating new products from scratch but also improving existing ones through incremental design. Both processes require a detailed set of technical drawings that articulate every aspect of the product's design, including materials, dimensions, and construction details. These drawings are used not only in the building phase but also form a part of legal contracts, informing bid processes, and contractor selection.

Which of following statements is true about the public domain

Answers

Answer:

Search for the work in the Catalog of Copyright Entries, a list of all works registered with the U.S. Copyright Office. If the copyright of a work published between 1923 and 1963 was not renewed in the 28th year after publication, the work is in the public domain.

Explanation:

Write a c++ application that computes gross salary for Mr.A,given that during the interview session and before started work, it was agreed that his hourly wage would be Ghs 47. Assume that he worked for 387 hrs and he resigned. Compute also his Net salary given the under listed information:
Taxes. Value. Tax1. 4.7%ofgross. Tax2. Gh 87. Tax3. 3.2% ofgross. Tax4. Gh 3. Tax5. 0.4 of gross.

Given that extra dispensation is given to employees in the form of bonuses. Compute the take home pay from the table below.




Net salary. Bonus.

0-10. 5% of net value.
11-500. 10% of net value
501-1000. Ghs 500
1001-2000. Ghs 600
Above 2000. 5% of net salary

Answers

Answer:

# include <iostream>

using namespace::std;

int main()

{   int hours;

float hourly_rate= 47;

double net_Sal;

float tax1;

float tax2;

float tax3;

float tax4;

float tax5;

double gross_Pay;

float bonus;

   cout<<"Enter net hours worked";

   cin>>hours;

   net_Sal= 47 * 387;

       tax1 = (4.7 * net_Sal)/100;

       tax2= 87;

       tax3=(3.7 * net_Sal)/100;

       tax4=3;

       tax5=(0.47 * net_Sal)/100;

       gross_Pay= net_Sal- tax1 - tax2 -tax3 - tax4 - tax5;

       float temp=gross_Pay;                  

       double in_hand;

       if (gross_Pay<10)

       {

           bonus= (5 * gross_Pay)/100;

           in_hand=gross_Pay+bonus;

           gross_Pay=gross_Pay-gross_Pay;

       }

       else if (gross_Pay>10 ||gross_Pay<500)

       { bonus= (10 * gross_Pay)/100;

         temp=gross_Pay-gross_Pay;

         in_hand=in_hand+bonus;

       }

       else if (gross_Pay>500|| gross_Pay<1000)

       { bonus= 500;

         gross_Pay=gross_Pay-gross_Pay;

         in_hand=in_hand+bonus;

       }

       else if (gross_Pay>1000 || gross_Pay<=2000)

       { bonus= 600;

         gross_Pay=gross_Pay-gross_Pay;

         in_hand=in_hand+bonus;

       }

       else if (gross_Pay>2000)

       { bonus= (5 * gross_Pay)/100;

         gross_Pay=gross_Pay-gross_Pay;

         in_hand=in_hand+bonus;

       }

        cout<<"in hand="<<in_hand;

        return 0;

}

Explanation:

Please check the answer section. The only complex part of this question is number of variables, and if loop conditional statements.

what is file oraganization​

Answers

Answer:

For example you have a lot of papers all over the place and you cant find a single paper you get folders say like you need to find an English paper but you don't remember what it was called you get folders for every subject you need and put the papers in the folders and call the papers what you need.

Explanation:

Hope this helps a little

Part cost Calculator Modify the GUI in your program to look like the following GUI. To do that you need to add the following to the GUI in the starter program. A text box to accept the part number (Only one is allowed A1B) Note the user may enter spaces before or after the part number and may enter the letters in lower or upper case. You program must accommodate that.

Answers

Answer:

Imports System.Text.RegularExpressions

Public Class Form2

   Private Shared Function Num1(ByVal val As String) As Integer

       Dim retrnVal As String = String.Empty

       Dim collect As MatchCollection = Regex.Matches(val, "\d+")

       For Each mat As Match In collect

           retrnVal += mat.ToString()

       Next

       Return Convert.ToInt32(retrnVal)

   End Function

   Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

       TextBox1.Text = Num1(TextBox1.Text)

       Dim Total As Integer = 0

       Dim A1b As Integer = Convert.ToInt32(TextBox1.Text)

       Label1.Text = 250

       Label2.Text = 25

       If Convert.ToInt32(TextBox1.Text) = A1b Then

           If Convert.ToInt16(Label1.Text) < 10 Then

               Total = 10.5 * Convert.ToInt16(Label1.Text)

           Else

               Total = 8.75 * Convert.ToInt16(Label1.Text)

           End If

           If CheckBox1.Checked Then

               Total = Total + 10

           Else

               Total = Total + 5

           End If

           TextBox2.Text = Convert.ToString(Total)

       End If

End Sub

Explanation:

Please check the answer section and the attachment. Also, please check the method. We have used the regular expression over there. And we have imported the regularexpression library for that. And this is to ensure we can read integer from textbox no matter whether the user inputs empty spaces or characters in lower and upper case in between.

Choice Worth 5 points
(03.01 MC)
Which line of code will only allow a symbol to be stored in a variable?
A)phone = float (input ( What is your phone number
B)phone = int (input ("What is your phone number?"))
C)phone = input ("What is your phone number?"
D)phone = input (What is your phone number?)​

Answers

Answer:

C

Explanation:

A is incorrect because it uses float, which is a number with a decimal

B is incorrect because it uses a ( around the input and uses the rest of the code.

D is incorrect because it doesn't have quotation marks are the question.

C is correct because it uses the correct statement for input, and it uses quotation marks around the question.

The line of code that allows a symbol to be stored in a variable is:

C) phone = input("What is your phone number?")

This line stores the input as a string, permitting any characters, including symbols. The other options either convert input to numeric types or contain syntax errors.

To only allow a symbol to be stored in a variable, you need to use the `input()` function to retrieve the input as a string and then check if it contains only symbols. You can do this using regular expressions. Here's an example:

```python

import re

phone = input("What is your phone number?")

if re.match("^[^a-zA-Z0-9]*$", phone):

   print("Valid symbol")

else:

   print("Invalid input")

```

This code checks if the input string contains only symbols (characters that are not letters or numbers). If it does, it considers it a valid symbol input.

e Web Slice Gallery -
gested Sites
elp &
upport
Orms &
esources
Question 15 of 20 :
Select the best answer for the question.
KS
15. Which of the following is a complete sentence?
ปี
O A. Although Henry was unusually tall.
O B. Even when the temperatures improved
O C. Since he was hungry, she had a snack
O D. Because I had not slept for two nights.
edu
1
O Mark for review (Will be highlighted on the review page)
<< Previous Question
Next Question >>
Review My Answers
Review My Answers
Say
sav
© 2020 Penn Foster Inc. Privacy Policy
Terms of Use
Contact Us
acer​

Answers

Answer:

C. Since he was hungry, she had a snack

Explanation:

So, you can say, " Claire is princes." In this "Claire happens to be the subject, " and Princes is the object. And apart from this a complete sentence must be enough to put forward a complete task. Now in C. we see complete thought is shared. Whereas in no other sentence complete thought has been revealed, and they are incomplete. And hence, the correct option is C.  

Which sentences use antonyms to hint at the meaning of the bolded words? Check all that apply
The cowered and hid behind the couch during thunderstorms
Most of the house was destroyed by the tomada but the kitchen remained intact
He was extravagant with money buying everything insight whenever he had the means
Potom ontage caused him discomfort het comfortable staying out of the spotlight
The opportunity and lastlong it quickly dwindled or went away

Answers

Answer:

Most of the house was destroyed by the tornado, but the kitchen remained intact.

Performing onstage caused him discomfort; he felt comfortable staying out of the spotlight.

The sentences that use antonyms to hint at the meaning of bolded words are;

Option B; Most of the house was destroyed by the tornado but the kitchen remained intact.

Option D; Performing onstage caused him discomfort; he felt comfortable staying out of the spotlight

Antonyms are simply defined as words that are opposite in meaning.

For example, the antonym of laugh is cry.

Let's now look at the options;

Option A; The sentence does not have 2 words that are antonyms and so this does not apply.

Option B; The words destroyed and intact are antonyms because they are opposites of each other and thus this statement applies to the use of antonyms.

Option C; Extravagant and buying are not opposite words and therefore this statement does not apply to antonyms.

Option D; Discomfort and comfortable are opposite words because they mean the exact opposite of each other and as such they are antonyms.

Option E; Dwindled is not an opposite of went away and so is not an antonym.

Read more at; https://brainly.com/question/18111017

I don't know how to solve this one. I don't even know how to write it. I need help. Please.

Write two scnr.nextInt statements to get input values into birthMonth and birthYear. Then write a statement to output the month, a slash, and the year. End with newline.

The program will be tested with inputs 1 2000 and then with inputs 5 1950. Ex: If the input is 1 2000, the output is:
1/2000

Note: The input values come from user input, so be sure to use scnr.nextInt statements, as in birthMonth = scnr.nextInt();, to get those input values (and don't assign values directly, as in birthMonth = 1).
import java.util.Scanner;

public class InputExample {
public static void main(String [] args) {
Scanner scnr = new Scanner(System.in);
int birthMonth;
int birthYear;

birthMonth = scnr.nextInt();

Answers

Answer:

Explanation:

import java.util.Scanner;

public class Main {

   public static void main(String [] args)

   {

       Scanner scnr= new Scanner(System.in);

       int birthMonth;

       int birthYear;

       birthMonth= scnr.nextInt(); // Taking input as integer value for birth month

       if (birthMonth<1)

       {

           System.out.println("invalid month");

       }

       else if(birthMonth>12)

       {

           System.out.println("invalid month");

       }

       else

       {

           birthYear=scnr.nextInt(); // Taking input as integer value for birth year

           System.out.println(birthMonth + "/" + birthYear); // prints result in the specified pattern.

       }

   }

}

Which two things can a pick or count condition do?

A.

Count the events in a game, and track the number of times an object is clicked

B.

Pick a background color, and count the number of colors in the game

C.

Pick an object at random, and keep track of how many copies of an object are left in a game

D.

Pick a maximum score, and count the number of points that have been scored
please help

Answers

Answer:

B.

Pick a background color, and count the number of colors in the game

C.

Pick an object at random, and keep track of how many copies of an object are left in a game

D.

Pick a maximum score, and count the number of points that have been scored

Explanation:

An option does not look like the correct option, as nothing is picked in this option. And rest of the options looks like being fine. But B option might run for infinity. However, it is a possibility definitely, by setting count =0 and incrementing it each time new color arrives. It's possible. And hence B. C. and D. options are correct.

What sugar is used in a DNA molecule​

Answers

Answer:

Ribose and Deoxyribose. The 5-carbon sugars ribose and deoxyribose are important components of nucleotides, and are found in RNA and DNA, respectively. The sugars found in nucleic acids are pentose sugars; a pentose sugar has five carbon atoms. A combination of a base and a sugar is called a nucleoside.

Explanation:

Answer:

Deoxyribose and ribose

Explanation:

The backbone of DNA is based on a repeated pattern of a sugar group and a phosphate group. The full name of DNA, deoxyribonucleic acid, gives you the name of the sugar present - deoxyribose. Deoxyribose is a modified form of another sugar called ribose.

What is quantum computing

Answers

Quantum computing means storing and processing information using individual atoms, ions, electrons, or photons. On the plus side, this opens up the possibility of faster computers, but the drawback is the greater complexity of designing computers that can operate in the weird world of quantum physics.

Quantum computing is a study of computer-based technologies centered around the principles of quantum theory.

What is quantum?A quantum is the minimum amount of any physical entity involved in an interaction.Quantum physics is the study of matter and energy at the most fundamental level.Quantum theory is the basis of modern physics that briefs the nature and behavior of matter and energy on the atomic and subatomic levels. The nature and behavior of matter and energy at that level are sometimes referred to as quantum physics and quantum mechanics.Quantum computing is a rapidly-emerging technology that tackles the laws of quantum mechanics to solve problems too composite for classical computers.

To learn more about quantum refer to:

https://brainly.com/question/9108297

#SPJ2

Which of the following is a benefit of being a college graduate?

Answers

Answer:

make more money

benefits for you and your family

better career opportunities

job security and satisfaction

an investment in your future

networking

personal development

higher likeliness of high quality benefits

Explanation:

What does Verizon child allow parents to do? My parents recently got the app and put it on my phone so I was wondering...

Answers

It allows them to turn on and turn off your internet; also if you were wondering incognito or any private browsing still countermeasures all devises they can use to access your history

How can you specify a page has the highest priority?

You can specify a page has the highest priority by setting the priority tag to ____________?

Answers

Answer:

1.0

Explanation:

Priority Tag is to be mentioned in Sitemaps

Various priority values range from 0.1 to 1.0. The highest priority page has the priority value = 1.0, and the lowest priority page has a value of 0.0, and the priority value varies with the priority of the page. And these values are assigned to the priority tag in the sitemap. The sitemap, in fact, is the XML file through which we can set the priority of a webpage.  

Answer:

1.0......................

the freemen's bureau was the U.S.' first ____ program.​

Answers

Answer:

welfare

Explanation:

The Freemen's bureau was the first Welfare program in the US that was put forward in the year 1865 just after the assassination of Abraham Lincoln. It was headed by Oliver O Howard. And it was brought for providing the food, clothing, medical care, and education to the recently freed white refugees and the freed slaves. And it was supposed to be a kind of welfare.  

Why did Welles react the way he did at the press conference after his radio
broadcast of The War of the Worlds?
A. He thought the H. G. Wells novel was so well known that people
would recognize it.
O
B. He assumed listeners would recognize his voice from his previous
radio broadcasts.
mehman
senat
TIN
EDEN
U
O
C. He included several announcements within the broadcast stating
the story was not real.
HHH
) D. He didn't realize audiences would automatically believe what they
heard on the radio,​

Answers

Answer:

A. He thought the H. G. Wells novel was so well known that people would recognize it.

H.G. Wells's novel was well known. Hence, he reacted the way he did at the press conference after his radio broadcast of the war of the worlds. And other options are not correct. The correct option is certainly A. He thought .... recognize it.

Explanation:

Please check the answer section.

Answer:    He thought the H. G. Wells novel was so well known that people would recognize it.

Explanation:   I took the test.

which of the following is not a data type in python Float, string, integer, decimal ​

Answers

Answer:decimal

Explanation:

these are the types:

String, List, Tuple, Associative array, Floating-point, arithmetic, Integer,

Boolean data type, Set

Answer: All are data types except decimal.

Moore’s law refers to?

Answers

Answer:

Moore’s law states that processor speeds, or overall processing power for computers will double every two years.

Explanation:

Moore’s law is more than an observation than a law which was originated in 1970. The observation is about the number of transistors that is present in any system or an integrated system that will be doubled every couple of years. The real-world application of Moore's law can be seen during computing your business taxes, piloting a spaceship, or changing the television station, etc.

Which of the following best describes an effect of Moore’s Law?

The past record of increasing computing power has driven more investment in innovation

There is an end in sight in the power of computing.

The number of computers manufactured doubles every few years.

The number of malicious attacks on computers doubles about every two year

Answers

Answer: The past record of increasing computing power has driven more investment in innovation

Explanation: This is true, using Moore's Law he predicted that computers will improve causing sells to rise and prices to decrease.

This is based on understanding the meaning of moore's law.

Option A describes moore's law the best.

Moore's Law is a perception by an american engineer named gordon moore where he felt that regardless of the cost of computers being halved, the number of transistors on a microchip was going to double in every two years. In blanket terms, this law states that the world should expect the speed and ability of our computers to keep on increasing regularly every couple of years, and that they would be cheaper.

Option A; This statement describes the effect of moore's law because it is clear that the capability of computers has increased over the years like he predicted and as such this has led to more investment in it.

Option B; This doesn't tally with moores law because he never said there is an end in sight for computing.

Option C; This doesn't tally with his law because it is the number of transistors he said was going to double every 2 years.

Option D; This is not true because he never hinted malicious attacks doubling every 2 years.

Read more at; https://brainly.com/question/20818429

What could potentially decrease the availability of security and also test the preparedness of data loss?

Answers

Answer: Ransomware could potentially decrease the availability of security and test the preparedness of data loss.

Explanation:

Ransomware is a type of software that is malicious to computers, smartphones and other devices. This type of malware will deny the owner, or user of device, access to their computer systems and/or data. The user will be unable to gain access to their software system unless they pay a certain amount of money.

This can be picked up on any device by clicking a phishing link or even going to a website that also infected unknowingly. When the system is affected with this type of malware, it can ruin a business and a normal everyday user since they can no longer access their system.

This solution will use an item quantity and a state code to calculate the total price of an item. The solution will calculate the total cost of an item by multiplying the quantity ordered by one of two prices. For quantities less than 50 each item will cost $2.25. For quantities greater than or equal to 50, each item will cost $1.50. Should the state be Connecticut or Massachusetts, an extra $20 will be added to the total cost of the item.
Please answer!!!

Answers

Answer:

Create one label and one textbox, and name them quatity, both of them. Now add another label, and name it Price. And add a button, and name it calcprice. Also add state textbox for state. Add a textbox and name it state

Now Double click calcprice button in design mode, and add in calcprice_click, code given below:

If Convert.ToInt32(quantity.Text) <50 and (state.Text != Connecticut or state.Text !=Massachusetts) Then  

   Price= Convert.ToInt32(quantity.Text) x 2.25

If Convert.ToInt32(quantity.Text) <50 and (state.Text == Connecticut or state.Text ==Massachusetts) Then  

   Price.Text= Convert.ToInt32(quantity.Text) x 2.25 +20

ElseIf Convert.ToInt32(quantity.Text) >=50  and (state.Text != Connecticut or state.Text !=Massachusetts) Then  

 Price.Text= Convert.ToInt32(quantity.Text) x 1.50

 Else

   Price.Text= Convert.ToInt32(quantity.Text) x 1.5 +20

 End If

Please add this code and it should work fine.

Explanation:

Please check the answer section.

2. How much power is consumed by a load drawing 5 A with 120 V across it?
TATUS
GALLE
TOTA
TIEDOTTEET
ST
THTITETTISITEE
MATTA
DHE
ELE​

Answers

Answer:

P = 600 W

Explanation:

The formula used for calculating Power using the Voltage and current is given by:

P = V * I

Here V is the value of voltage and I is the applied current.

Given:

I = 5 A

V = 120 V

so by using these values in the formula, we get

P = V * I

P = 120 * 5

P = 600 W

So 600 W power is consumed by a load drawing 5 A with 120 V across it.

Final answer:

The power consumed by a load drawing 5 A with 120 V across it is 600 watts. This is calculated using the formula P = IV. It should be noted that the given voltage is an average value for AC power.

Explanation:

Calculating Power Consumption

To calculate the power consumption of a load drawing 5 A with 120 V across it, we use the formula P = IV, where P is the power in watts, I is the current in amperes, and V is the voltage in volts. Plugging in the values, we get P = 5 A × 120 V = 600 W. Therefore, the power consumed by the load is 600 watts.

Understanding AC Power

It's important to note that in household power supplies, 120 V is an average value of an alternating current (AC) supply, not a direct current (DC). However, for the purpose of calculating average power consumption, we can use the given values directly. The concept of peak current and root-mean-square (RMS) values is beyond the scope of this question but is crucial for a detailed understanding of AC circuits.

what is the purpose of background music?

Answers

Answer:

to help focus, or to enhance something you are watching

Explanation:

if you are working on something it helps you think about your assignments or what ever you're working on, if its in a movie ot video or something to be watch it helps set the mood for what is happening

Answer: To help recognize the mood of what you ware watching.

Explanation: Let's say you have a suspenseful movie, you would want to put suspenseful music that matches the mood to help enhance it and make it more clear.

Hope this helps!

which of the strategies below are likely to increase audience attention?
Avoid the use of animations
Match special effects to content
Use consistent transitions
Use lots of different animation styles on each slide
Use similar animation styles on each slide
Vary the use of transitions for each slide

Answers

Answer:

Vary the use of transitions for each slide

Explanation:

Answer:it's A B and C

Explanation:

They are right

Richard is shopping online and has to enter a password to access his bank account. Which method attribute will securely submit his credentials?

The _______ method attribute will enable Richard to securely submit his credentials.

Answers

Answer:

password

Explanation:

It is certainly the password method attribute, and this can enable Richard to securely submit the credentials. If we set the method attribute or input type as a password, then the password is sent in the encrypted form, and it remains secure. And hence, the password cannot be copied by anybody, and it remains safe. This is the characteristic of a secure web form. And remember we are dealing with an HTML form.

Answer:

The POST method attribute will enable Richard to securely submit his credentials.

Explanation:

Got this correct on edmentum!!

You want to purchase a new hard drive for your workstation and are deciding between an HDD and an SDD. Which of the following is NOT an advantage of SDDs over HDDs?

Answers

HDDs usually wear down faster and give less performance quality than SSD but HDDs are still cheaper. If your aiming for budget , HDD is the right one for you.

HDDs usually wear down faster and give less performance quality than SSD but HDDs are still cheaper. If your aiming for budget , HDD is the right one for you.

holton is the manager at a small restaurant. what can he do ensure the workplace offers a safe environment for employees?

Answers

Answer:

A. Require all employees to wear slip resistant shoes.

Explanation:

The options are:

A. Require all employees to wear slip resistant shoes.

B. Allow employees to eat one meal from an employee menu during their shift.

C. Train employees to provide great customer service.

D. Have employees set all the tables at the beginning of their shift.

The B. option is certainly  not true as that can ensure health, but not safety. The C. option can ensure skill but not safety. And the D option can ensure better time management but not safety. However, the slip resistat shoes is definitely going to ensure that the employees are safe. And hence the correction option here is A.

Other Questions
Early in 2022, Stevenson Incorporated switched to a JIT (just-in-time) inventory system. Financial information for the two most recent years is listed below: How many times did inventory turnover increase as a result of the switch to the JIT system? A force is a A. push B. pull C. Both A and B D. Neither A nor B The author contrasts words with positive and negativeconnotations tocreate humor.encourage debate.clarify his argument.make an emotional appeal. A 34-year-old woman who has no past medical problems nor is currently taking any medications comes into your office because she noticed a tender lump in her left breast starting approximately one month ago. She is worried because she has an aunt who had breast cancer that was BRCA positive, though her mother is BRCA negative. Her periods have been regular since they started at the age of 13 and occur every 32 days. She is currently menstruating. She has three children aged 12, 9, and 4. On exam, her BMI is 32, up from 28 three years ago and her other vital signs are stable. On breast exam, you note a mobile rubbery mass of approximately 1 x 1cm and with regular borders that is tender to palpation. You appreciate no axillary adenopathy. The rest of her physical exam is unremarkable. Of the information provided, which of the following places this patient at increased risk for breast cancer?A. AgeB. WeightC. Parity historyD. Family history of cancerE. Age of menarche 2 PointsWhich statement is true?OA. The growth of suburbs caused many new types of business to dowell.OB. The growth of suburbs caused most businesses to fail.OC. The growth of suburbs meant that most new businesses were setup in the cities.O D. The growth of suburbs meant fewer job opportunities.SUBMIT Solve for x: 2 over x - 2 + 7 over x^2 - 4 = 5 over xA. x = -4/3 and x = 5B. x = -4/3 and x = 5C. x = 4/3 and x = 5D. x = 4/3 and x = 5 The ratio of the number of boys to the number of girls at school is 4:5. a. What fraction of the students are boys? b. If there are 120 boys, how many students are there altogether? * Quadrilateral ABCD is an isosceles trapezoid with median EF. Which of the following statements is true?Select the best answer from the choices provided.A. EF is parallel to the bases.B. EF = 2(AB + DC)C. 1/2EF = AB + DCD. EF =1/2(AD + CB) According to Holmes and Rahe, who developed the Social Readjustment Rating Scale, persons who experience a number of major life changes over the course of a year are likely to have what kind of experience in the next one-two years? Select one:a. Change of jobs more frequently than usual.b. Have a high probability of getting a divorce.c. Have a high probability of committing a crime.d. Experience more health problems than usual. The body weighing 2 kg moves through the horizontal surface and crosses the path x = 75 cm The coefficient of friction of the body and horizontal surface is 0.8. If the kinetic energy of the body in the starting position is 16J, how much will the kinetic energy of the body be in the definitive position? Valuetronics, an electronics company, is currently in the preproduction stage of launching one of its new stereo systems. In order to analyze the feasibility of the product, Valuetronics adopts an integrated system that allows it to manufacture the product before it physically exists, that is, the system allows Valuetronics to finalize the design of the stereo, analyze it, and do a test-run. In this context, Valuetronics is using a:____________.a. enterprise resource planning (ERP) system b. flexible manufacturing system (FMS) c. computer-aided engineering (CAE) system d. computer-aided manufacturing (CAM) system Marge has 4 more than 2 times as many books as Susan. If Marge has 22 books and x is the number of books that Susan has, the relationship can be written as 4 + 2x = 22. How many books does Susan have? 9-114. While setting up a mathematical sentence to solve a problem, Paulina and Aliya came up with the equations below. Since the equations did not look alike, the girls turned to you for help. Paulina: 4x+2y=6 Aliya: 12x+6y=18 After which event did Christians start to learn more about Muslim advances in science and mathematics?A) CrusadesB) Battle of ToursC) Thirty years warD) Battle of Hastings Multiply 2 1/2 x 3 2/3 6 yd11 yd16 yd5 yd13 yd 1. Find n.2 ftArea = 28 sq ft please help!!!!!!! (attached to the file) Marge was not being asked for a follow-up interview to her job applications. She asked her friend Homer to help her solve the problem. Homer asked her if she was sure what the problem was? Homer was helping Marge:_________.1. generate an alternative course of action2. evaluate her alternatives3. clarify the problem A boat is spotted in the water with an angle of depression of 25 from the top of a lighthouse that is 89 feet tall. To the nearest foot, how far away is the boat from the base of the lighthouse?A)37 feetB)42 feetC)98 feetD)191 feet