CONVERT to C# C# C# C# Just need C and Dpublic class Patterns { public static void main(String[]args) { char[][] arr=new char[10][10]; int starCount = 10; for(int i=0; i }}Need this code converted to "C# C# C# C# C# Just need C and D

Answers

Answer 1

Answer:

following are converted C# code:

using System; //import System

class Patterns //defining class Pattern

{

public static void Main() //defining main method

{

char[,] arr=new char[10,10];//defining char array  

int starCount = 10;//defining integer variable starCount that holds value

int c=starCount;//defining integer variable c that holds starCount value  

for(int i=0; i<c;i++,starCount--)//defining loop for column  

{

for(int j=0; j<i; j++)//defining loop for rows

{

arr[i,j]='_'; //holds underscore value

}

for(int k=i; k<c; k++)//defining loop for rows  

{

arr[i,k]='*';//holds asterik value

}

}

for(int a=0; a<c; a++)//defining loop for print column value

{

for(int b=0;b<c;b++) //defining loop for print row value

{

Console.Write(arr[a,b]);//print value

}

Console.WriteLine();//print space value

}

}

}

Output:

please find the attachment.

Explanation:

In the above given C# language code, firstly we import the package system, in the next step, Patters is declared, inside the class a char array "arr" and integer variable "starCount" is declared, that store integer value and the main method is declared.

In the method, for loop is defined, inside the loop, it stores "underscore and asterisk" value in the array.

Outside to loop another loop is defined, which uses the print method to print its value.    

CONVERT To C# C# C# C# Just Need C And Dpublic Class Patterns { Public Static Void Main(String[]args)

Related Questions


________________is a distribution of Linux Operating
system for desktop computers.

Answers

Answer:

Ubuntu

Explanation:

Ubuntu is based on Linux and Debian and is free/open-source. It’s released in 3 editions: Desktop, Core, and Server.

Hope this helped!

Write a C++ program that determines if an integer is a multiple of 7. The program should prompt the user to enter and integer, determine if it is a multiple of 7 by using a given formula and output the result. This is not meant to be a menu driven program so one run of the program will only offer one input and one output.

Answers

Answer:

#include <iostream>  // Needed for input/output operation

int main()  // define the main program

{

   int userNumber = 0; // number storage for user input

   std::cout << "Please enter an integer: ";  // Ask user for number

   std::cin >> userNumber;  // Assumes user input is an integer

   if (userNumber % 7 != 0)  // Check to see if 7 divides user input

       std::cout << "\nYour number is not a multiple of 7.\n";

   else

       std::cout << "\nYour number is a multiple of 7.\n";

   return 0;  // End program

}

Which of the following specific components are incorporated on HDInsight clusters?
A. Storm
B. Spark
C. Hive
D. All the options

Answers

Answer:

D

Explanation:

The answer to this question is option D. All of the options are incorporated on HDinsight clusters.

HDInsight is very useful in the field of computer science because it creates a fast and easy way for large amounts of data to be processed. It also has the characteristic of being cost effective.

HDInsight has different cloud and open source frameworks. These includes:

HadoopHiveRLLAPSparkStorm

Read more at https://brainly.com/question/15399234?referrer=searchResults

After completing a scan, Microsoft Baseline Security Analyzer (MBSA) will generate a report which identifies security issues and:

Answers

Complete Question:

After completing a scan, Microsoft Baseline Security Analyzer (MBSA) will generate a report which identifies security issues and:

Group of answer choices

A. Describes how the vulnerabilities could impact the organization.

B. Provides recommendations for system configuration changes.

C. Lists them in alphabetical order.

D. Provides recommendations for additional personnel needed.

Answer:

B. Provides recommendations for system configuration changes.

Explanation:

The Microsoft Baseline Security Analyzer (MBSA) is a software program or application developed by Microsoft and it helps network security administrators to check for security updates, Structured Query Language (SQL) administrative vulnerabilities, Windows administrative vulnerabilities, Internet Information Services (IIS) administrative vulnerabilities, weak passwords, identifying missing security patches and common security misconfigurations.  

After completing a scan, Microsoft Baseline Security Analyzer (MBSA) will generate a report which identifies security issues and provides recommendations for system configuration changes.

Microsoft Baseline Security Analyzer (MBSA) is a legacy software that scores the results of a scan and displays the items posing the highest risk first, based on Microsoft’s security recommendations.

describe how to perform a task, such as following a cake recipe, using simple and clear steps PLEASE HELP

Answers

Explanation:

Step 1: Choose a Recipe.

Step 4: Prep the Pans.

Step 6: Stir Together Dry Ingredients.

Step 7: Combine the Butter and Sugar.

Step 8: Add Eggs One at a Time.

Step 9: Alternate Adding Dry and Wet Ingredients.

Step 10: Pour Batter Into Pans and Bake.

Step 11: Check Cake for Doneness.

Answer: Prep the pans and sift the flower is right but everything else was wrong

Explanation:

Where Can I Get Actual Microsoft AZ-900 Exam Questions?

Answers

Answer:

Pls check the site "examtopics"

U fill find ur questions there

What is a cyber community, and when am I a part of it?

Answers

Answer:

A cyber community is a virtual community that includes one or more groups of people. Cyber communities can be open to anyone or to a select group of people, but they often fulfill a need people have to form friendships and romantic relationships or to talk with others about certain issues or topics.

Write a function "doubleChar(" str) which returns a string where for every character in the original string, there are two characters.

Answers

Answer:

//Begin class definition

public class DoubleCharTest{

   

   //Begin the main method

    public static void main(String [ ] args){

       //Call the doubleChar method and pass some argument

       System.out.println(doubleChar("There"));

    }

   

    //Method doubleChar

    //Receives the original string as parameter

    //Returns a new string where for every character in

    //the original string, there are two characters

    public static String doubleChar(String str){

        //Initialize the new string to empty string

       String newString = "";

       

        //loop through each character in the original string

       for(int i=0; i<str.length(); i++){

            //At each cycle, get the character at that cycle

            //and concatenate it with the new string twice

           newString += str.charAt(i) + "" + str.charAt(i);

        }

        //End the for loop

       

        //Return the new string

       return newString;

       

    } //End of the method

   

} // End of class declaration

Sample Output:

TThheerree

Explanation:

The code above has been written in Java and it contains comments explaining each line of the code. Kindly go through the comments. The actual lines of executable codes have been written in bold-face to differentiate them from comments.

A sample output has also been given.

Snapshots of the program and sample output have also been attached.

Regular Expression Replace Challenge
In this challenge you will use the file regex_replace_challenge_student.py to:
Write a regular expression that will replace all occurrences of:
regular-expression
regular:expression r
egular&expression
In the string: This is a string to search for a regular expression like regular expression or regular-expression or regular:expression or regular&expression
Assign the regular expression to a variable named pattern
Using the sub() method from the re package substitute all occurrences of the 'pattern' with 'substitution'
Assign the outcome of the sub() method to a variable called replace_result
Output to the console replace_results

Answers

Answer:

Here is the Python program:

import re  # module for regular expressions

search_string='''This is a string to search for a regular expression like regular expression or  regular-expression or regular:expression or regular&expression'''  #string to search for a regular expression

pattern = "regular.expression" #Assigns the regular expression to pattern

substitution="regular expression"  #substitute all occurrences of pattern with regular expression string stored in substitution  

replace_results = re.sub(pattern,substitution,search_string)  # sub() method from the re package to substitute all occurrences of the pattern with substitution

print(replace_results) #Assigns the outcome of the sub() method to this variable

Explanation:

This is a string to search for a regular expression like regular expression or regular-expression or regular:expression or regular&expression

search_string='''This is a string to search for a regular expression like regular expression or  regular-expression or regular:expression or regular&expression'''

The following statement assigns the regular expression to a variable named pattern .

pattern = "regular.expression"

The following statement is used to substitute the pattern (regular expression) in the search_string by replacing all occurrences of "regular expression" sub-string on search_string.

substitution="regular expression"  

The following statement uses re.sub() method to replace all the occurrences of a pattern with another sub string ("regular expression"). This means in search_string, the sub strings like regular expression, regular-expression, regular:expression or regular&expression are replaced with string "regular expression". This result is stored in replace_results variable. Three arguments are passed to re.sub() method:

sub string to replace  i.e. pattern

sub string to replace with  i.e. substitution

The actual string i.e. search_string

replace_results = re.sub(pattern,substitution,search_string)  

The following print statement displays the output of replace_results

print(replace_results)

The output of the above program is:

This is a string to search for a regular expression like regular expression or regular expression or regular expression or regular expression

Which of the following is a career that's indirectly linked to careers in web technologies?

ОА. system administrator

OB. UI developer

OC. UX developer

OD. web developer

Answers

Answer:

that would beA

Explanation:

What is the result if you add two decimal numbers (45+216), expressed in binary using 8-bit unsigned precision?

Answers

Answer:

261

Explanation:

Adding up two decimal numbers ( 45 + 216 ) expressed in binary using 8-bit unsigned precision

first we express the decimal numbers in 8-bit unsigned precision :

45 = 32 + 8 + 4 + 1 = 2^5 + 2^3 + 2^2 + 2^0 = 00101101

216 = 2^7 + 2^6 + 2^4 + 2^3 = 11011000

Adding the numbers together =  00101101

                                                   + 11011000

                                                 = 100000101 = 261 ( an overflow occurred )

note : The maximum value that can be expressed with 8-bit unsigned precision is  = 2^8 - 1 = 256

Jenae helps maintain her school web site and needs to create a web site poll for students. Which tool will she use? JavaScript HTML CSS Text editor

Answers

Answer:

Text Editor

Explanation:

What the question implies is that, what tool will she need to create the website.

And the answer is a text editor; this is so because the other three options are web development languages used in developing a website but the text editor is where she'll write her line of codes to create the required website poll.

Example of usable text editors are notepad and notepad++ etc.

If Janelle wants to create a school website for poll she has to make use of html.

What is HTML?

The full name for this is HyperText Markup Language. It is a programming language that is used to create websites.

It is very useful here because it helps to create structured documents. Therefore the HTML is the best tool for her.

Read more on HTML here

https://brainly.com/question/24373129

If the authenticator is encrypted with the sender's private key, it serves as a signature that verifies origin, content, and sequencinga) trueb) false

Answers

Answer:

A. True.

Explanation:

Authentication in computer technology can be defined as the process of verifying the identity of an individual or electronic device. Authentication work based on the principle (framework) of matching an incoming request from a user or electronic device to a set of uniquely defined credentials.

Basically, authentication ensures a user is truly who he or she claims to be, as well as confirm that an electronic device is valid through the process of verification

Digital certificates, smart cards, picture passwords, and biometrics are used to perform an authentication.

Hence, if the authenticator is encrypted with the sender's private key, it serves as a signature that verifies origin, content, and sequencing.

This simply means that, when a user enters his or her private key (password); the authenticator matches the private key to the uniquely defined credentials. Permission and access is granted by the authorization system right after a successful authentication.

what is the world first mobile phone brand​

Answers

Answer:

The world first mobile phone brand is Motorola.

Answer:

bruh u have the internet u must be brain dead

Explanation:

its

Motorola

Privacy is considered keeping information about a network or system user from being disclosed to unauthorized people.A. TrueB. False

Answers

Answer:

A. True

Explanation:

Privacy: In computer science, The term "privacy" is described as an issue that generally concerns specific computer community in order to maintain some personal information associated with individual citizens of specific nations in computerized systems that is responsible for keeping the records. However, it is also a major concerns for different individuals to keep their data safe.

Answer:

True

Explanation:

Privacy is considered keeping information about a network or system user from being disclosed to unauthorized people. As per the  Information privacy law,  the relationship between the collection and dissemination of data, technology, the public expectation of privacy, legal and political issues surrounding them.It is also known as data privacy or data protection.

Write an expression that continues to bid until the user enters 'n'.
Sample output with inputs: 'y' 'y' 'n'
I'll bid $7!
Continue bidding? I'll bid $15!
Continue bidding? I'll bid $23!
Continue bidding?
1 import random
2 random.seed (5)
3
4 keep going
5 next bid = 0
6
7 while Your solution goes here
8 next bid next bid + random.randint(1, 10)
9 print(' ll bid x ' (next bid))
10 print('cohtinue bidding?', end-
11 keep going input
ACTIVITY 53.3. While loop: Insect growth
Given positive integer num_insects, write a while loop that prints that number doubled up to, but without exceeding 100. Follow each number with a space.
Sample output with input:
8 8 16 32 64 1 nu
1 insects = int(input()) Must be
2
3 Your solution goes here

Answers

Answer:

1)

Add this while statement to the code:

while(keep_going!='n'):  

#the program keeps asking user to continue bidding until the user enter 'n' to stop.

2)

Here is the code for ACTIVITY 53.3. While loop: Insect growth:

num_insects = int(input())

while num_insects <= 100:

   print(num_insects, end=' ')

   num_insects = num_insects * 2

 

Explanation:

Here is the complete code for 1)

import random

random.seed (5)

keep_going='-'

next_bid = 0

while(keep_going!='n'):

   next_bid = next_bid + random.randint(1, 10)

   print('I\'ll bid $%d!' % (next_bid))

   print('continue bidding?', end='')

   keep_going = input()

Here the the variable keep_going is initialized to a character dash keep_going='-'

The statement keep_going = input() has an input() function which is used to take input from user and this input value entered by user is stored in keep_going variable. while(keep_going!='n'):  is a while loop that keeps iterating until keep_going is not equal to 'n'.    print('continue bidding?', end='')  statement prints the continue bidding? message on the output screen. For example the user enters 'y' when this message appears on screen. So keep_going = 'y' . So the operation in this statement next_bid = next_bid + random.randint(1, 10) is executed in which next_bid is added to some randomly generated integer within the range of 1 to 10 and print('I\'ll bid $%d!' % (next_bid))  prints the result on the screen. Then the user is prompted again to continue biffing. Lets say user enters 'n' this time. So keep_going = 'n'. Now the while loop breaks when user enters 'n' and the program ends.

2)

num_insects = int(input()) #the user is prompted to input an integer

while num_insects <= 100: #the loop keeps iterating until value of num_insects exceeds 100

   print(num_insects, end=' ') #prints the value of num_insects  

   num_insects = num_insects * 2 #the value of num_insects is doubled

For example user enters 8. So

num_insects = 8

Now the while loop checks if this value is less than or equal to 100. This is true because 8 is less than 100. So the body of while loop executes:

   print(num_insects, end=' ') statement prints the value of num_insects

So 8 is printed on the screen.

num_insects = num_insects * 2 statement doubles the value of num_insects So this becomes:

num_insects = 8 * 2

num_insects = 16

Now while loop checks if 16 is less than 100 which is again true so next 16 is printed on the output screen and doubled as:

num_insects = 16 * 2

num_insects = 32

Now while loop checks if 32 is less than 100 which is again true so next 32 is printed on the output screen and doubled as:

num_insects = 32 * 2

num_insects = 64

Now while loop checks if 64 is less than 100 which is again true so next 64 is printed on the output screen and doubled as:

num_insects = 64 * 2

num_insects = 128

Now while loop checks if 128 is less than 100 which is false so the program stops and the output is:

8 16 32 64  

The programs along with their output is attached.

How to improve and create beautiful graphic

Answers

Answer:

Learn OpenGL and any graphics rendering program.

Explanation:

In most languages, if a file does not exist and a program attempts to open it in append mode, what happens?

Answers

Answer:

It create a new file in which writing of data begins.

Explanation:

A file can be open in the three mode:

-r (Read mode): open an existing file for the purpose of reading data from it.

-w (write mode): Create a new file for the purpose of writing data to it.

-a (append mode): open an existing file for the purpose of appending extra data to it but if the file does not exist, it create a new file and start writing data to it.

Which of the following would allow for the QUICKEST restoration of a server into a warm recovery site in a case in which server data mirroring is not enabled?a. Full backupb. incremental backupc. Differential back upd. Snapshot

Answers

Answer: C. Differential backup

Explanation: There are several ways od ensuring the preservation and storage of data even cases of disaster, one of such ways is data data mirroring which allows data to be replicated or copied in real time and several backup options. In cases where there there is need to restore a server, the warm recovery site provides a data or disaster recovery option used to mitigate the effect of data loss on organization. In the absence of data mirroring, differential backup option, provides the quickest recovery option as it only requires changes in the data stored after the last full backup. These speed experieced should be expected due to the relatively low data been dealt with rather than the entire data.

Encryption relies on the use of _________to ensure that information is readable only by the intended recipient.

Answers

Answer:

Encryption Keys

Explanation:

In order to make sure only the intended recipient receives the information, encryption keys rely on a unique pattern, just like your house key, except instead of grooves and ridges encryption keys use numbers and letters.

Hardening FSO infrastructure includes all of the following except:______.
A. FSOs should have backstops to prevent overshoot to neighboring office windows orrooftops
B. They should be mounted in easy to reach places.
C. They should have physical security such as keycard and/or biometric access.
D. They should be protected by motion detection systems and motion-activated video.

Answers

Answer:

Hardening FSO infrastructure includes all of the following except:______.

A. FSOs should have backstops to prevent overshoot to neighboring office windows or rooftops.

Explanation:

FSO means a floating storage and offloading vessel.  It is a simplified version of a floating production, storage, and offloading (FPSO) unit.  FSO vessels are mainly floating vessels used by the offshore oil and gas industry for the storage of oil.  Unlike the more advanced FPSO it cannot be used for the production and processing of hydrocarbons, and storage of oil.  Since FSOs are installed offshore storage and offloading vessels, there is no need to harden the infrastructure by having "backstops to prevent overshooting to neighboring office windows or rooftops."

What is the part of a system that defines the extent of the design pursuant to the operational requirements?

Answers

Answer:

The system's scope defines the extent of the design according to operational requirements. The proposed system is also subject to limits known as boundaries, which are external to the system. Boundaries are also imposed by existing hardware and software.

Which of the following is the MOST likely cause of the connectivity issues?A user of the wireless network is unable to gain access to the network. the symptoms are:_______a. Unable to connect to both internal and Internet resourcesb. The wireless icon shows connectivity but has no network access

Answers

Full questions and available options

A user of the wireless network is unable to gain access to the network. The symptoms are:

1.) Unable to connect to both internal and Internet resources

2.) The wireless icon shows connectivity but has no network access

The wireless network is WPA2 Enterprise and users must be a member of the wireless security group to authenticate.

Which of the following is the MOST likely cause of the connectivity issues?

A. The wireless signal is not strong enough

B. A remote DDoS attack against the RADIUS server is taking place

C. The user's laptop only supports WPA and WEP

D. The DHCP scope is full

E. The dynamic encryption key did not update while the user was offline

Answer:

C. The user's laptop only supports WPA and WEP

Explanation:

Given that the laptop's wireless icon shows connectivity but has no network access, and at the same time it is unable to connect to both internal and Internet resources, while the wireless network is WPA2 Enterprise and users must be a member of the wireless security group to authenticate, then it can be concluded that the most likely cause of the connectivity issues is "The user's laptop only supports WPA and WEP and not WAP2 Enterprise network."

Hence the right answer is Option C.

Pete Jones, a bait shop owner, incorporates ______ within a webpage to entice customers to buy a new lure.

Answers

Answer: CTA

Explanation:

Call to action (CTA) is a piece of content, or an aspect of webpage, advertisement which encourages the audience to do something.

CTAs help an organization or company to convert a reader or visitor to a lead which will be sent to the sales team. Pete Jones, a bait shop owner, incorporates CTA within a webpage to entice customers to buy a new lure.

Competitive Pricing
Bill Schultz is thinking of starting a store that specializes in handmade cowboy boots. Bill is a longtime rancher in the town of Taos, New Mexico. Bill's reputation for honesty and integrity is well-known around town, and he is positive that his new store will be highly successful.
Before opening his store, Bill is curious about how his profit, revenue, and variable costs will change depending on the amount he charges for his boots. Bill would like you to perform the work required for this analysis and has given you the AYK12_Data.xlsx data file. Here are a few things to consider while you perform your analysis:_______.
• Current competitive prices for custom cowboy boots are between 5225 and $275 a pair.
• Variable costs will be either S100 or S150 a pair depending on the types of material Bill chooses
• to use.
• Fixed costs are $10,000 a month.
Data File: AYK12_Data.xlsx

Answers

Answer:

To calculate the profit of the month, the monthly cost should be extracted from the monthly generated revenue, while the revenue is the total sales of the store for the month.

Explanation:

In the excel file worksheet, the total number of shoes should be calculated. And a formula to calculate the revenue for the month should multiply the total shoes by the price of shoes per pair

The formula to calculate the profit is gotten from total sales minus the fixed cost.

What are the advantages, strengths and/or weaknesses of remote access methods and techniques such as RADIUS, RAS, TACACS+ and VPN?

Answers

Answer:

they store authentication details in the remote server and its retrieval is encrypted. But it can also be very slow when the network signal is down.

Explanation:

Private IP network like in a small or enterprise company needs access control methods to prevent unwanted access to files by unauthorized employees. The regular router ssh authentication is good for a small company but it has no backup storage to hold user login details and easily be hacked by attackers. So the AAA policy is adopted to prevent this. it stands for authentication, authorization and accounting, and uses protocols like the RADIUS, TACAS+, VPN, etc, to prevent unwanted access. it is fast and saves all the login details of all the employees in the network, but experiences slow or no authentication when network is down.

Which the following is NOT a reason why it is difficult to defend against today's attackers? a. increased speed of attacks b. simplicity of attack tools c. greater sophistication of defense tools d. delays in security updating

Answers

Answer:

The correct answer to the question is OPTION C "greater sophistication of defense tools"

Explanation:

An attacker is the individual or organization whose activities are illegal because they usually aim at ''stealing" people's information or getting access to their accounts without prior knowledge of the victim.

Atimes, website developers make mistakes thereby exposing files on the web server outside of the directory of the website. This files are readable by attackers who capitalize of the mistake who use command injection to carryout an attack, while some attackers use scripts or programs developed by others to attack computer systems and networks.

increased speed of attacks makes it difficult to secure computers from attackers beacause, attackers use modern simple tools  that are fast such that it can quickly scan systems for weaknesses and expose the vulnerability to carryout an attack.

The bias condition for a transistor to be used as a linear amplifier is called:________.
(a) forward-reverse
(b) forward-forward
(c) reverse-reverse
(d) collect bias

Answers

Answer:

(a) forward-reverse

Explanation:

A transistor is an electronic component which consist three electrodes, base-b, collector-c and emitter-e. It is a semiconductor and some of its types are n-p-n, p-n-p, field effect transistors (FET), bipolar junction transistors (BJT) etc.

For a transistor to function as a linear amplifier, it must be appropriately biased. The major required condition is forward-reverse bias. This ensure the appropriate functioning of the transistor as an amplifier of electronic signals.

Which of the following statements is true?
A. Project management is being used at a consistent percentage of a firm's efforts.
B. Project management is far from a standard way of doing business.
C. Project management is increasingly contributing to achieving organizational strategies.
D. Project management is a specialty that few organizations have access to.
E. All of these statements are false.

Answers

The answer is C. project management is increasingly contributing to achieving organizational strategies

Which statement is correct? a. choice of metric will influence the shape of the clusters b. choice of initial centroids will influence the result c. in general, the merges and splits in hierarchical clustering are determined in a greedy manner d. All of the above

Answers

Answer: the answer is c

Explanation:in general, the merges and splits in hierarchical clustering are determined in a greedy manner

Which statement is correct is that All of the above options are correct. Check more about metric below.

What is metric?

Metrics are known to be a unit that is often used in the measurement of quantitative works that are often used for comparing, tracking performance, etc.

Note that  Metrics can be used in a lot of purposes and as such, the  choice of metric will affect the shape of the clusters  and the use of merges and splits in hierarchical clustering are set up in a greedy manner.

Learn more about metric form

https://brainly.com/question/229459

Other Questions
____ projects are a set of projects where the acceptance of one project means that other projects cannot be accepted. Under SEC rules, filing of the Form 144, required when selling restricted stock, is the responsibility of the:________. A. issuer B. broker-dealer C. seller D. transfer agent What is Paul McCartney's first name? This table represents the proportional relationship between the number of boxes and the number of magnetic cubes held by the boxes. Cubes Boxes Number of cubes 1 n 5 625 8 1,000 What is the unknown value representing the unit rate? 4. Tom made a square measuring 8 feet by 8 feet, and had 18 friends stand inside it as if they are watching a bandat a small club. Find the ratio of this number to the rectangle's area. Choose the appropriate label for this ratio. A boy who exerts a 300-N force on the ice of a skating rink is pulled by his friend with a force of 75 N, causing the boy to accelerate across the ice. If drag and the friction from the ice apply a force of 5 N on the boy, what is the magnitude of the net force acting on him? (1 point) A) 380 N B) 80 N C) 70 N D) 370 N Which of the following was not an important invention of the early 20thcentury?O A. The airplaneB. The phonographC. The cotton ginO D. The electric lightbulbSUMIT Josh and his brother earn points when they do house chores. The ratio of Josh's points to his brother's points is 4:3. Together, they have 420 points. How many points does each boy have? What fractions are equal to 2/3 A ball starts from rest and undergoes uniform acceleration of 2.50m/s^2. What is the velocity of the ball 4s later? What are the short term causes of the protestant reformation? What Word Goes In The Blank?One of the most fundamentally important virtues of a(n)_______is that if we can specify one to solve a problem, then we can automate the solution Do you think there is such a thing as genes for aggression? Do you think genes can cause a tendency toward being aggressive? Do you think there may be another explanation for aggression across generations? I need the following solutions to the following equations. 3(4x-3) -19=8x -4-6y+14=32-4y -28+5-3x=2-2x g a small smetal sphere, carrying a net charge is held stationarry. what is the speed are 0.4 m apart What 3 things are in a nucleotide The experimental design of the study described in the advertisement best tests the hypothesis that tomatoes grown with Metabo-Herb brand fertilizer _______.In the investigation, the average number of bites per arm represents the ___________. the table below shows the amount that must be repaid, y, when x dollars are borrowed. Hay _____ chicos en la clase. poco poca pocos pocas With the sun and the earth back in their regular positions,consider a space probe with mass mp = 125 kg launched from the earth towardthe sun. When the probe is exactly halfway between the earth andthe sun along the line connecting them, what is the direction ofthe net gravitational force acting on the probe? Ignore the effects of other massive objectsin the solar system, such as the moon and other planets.A. The force is toward the sun.B. The force is toward the earth.C. There is no net force because neither the sunnor the earth attracts the probe gravitationally at themidpoint.D. There is no net force because the gravitationalattractions on the probe due to the sun and the earth are equal insize but point in opposite directions, so they cancel each otherout.