answersLogoWhite

0

Harvard does not publish minimum SAT scores needed to apply. I think that if you have scored 2100 or above and have a unique quality that makes your application stand out, you should apply.

In general, about 40 percent will have scored 750 or above on each section of the SAT exam. That means that the other half of students will have scored below 750.

Top athletes will be told that they need a minimum of 600 or above on each section and absolutely no C's on their transcript. My daughter was recruited to play on a team there and had a score of 2200 but I know athletes that are there playing with scores of 1950.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is H-B Woodlawn's motto?

The motto of H-B Woodlawn is 'Verbum Sap Sat'.


What would be an expected SAT score if you are interested in becoming a doctor?

h


What has the author Jerome H Lieblich written?

Jerome H. Lieblich has written: 'Drawing Requirements Manual (10th ed) (DRM)' 'Drawing Requirements Manual/Editorally Updated'


What has the author Godfrey H Thomson written?

Godfrey H. Thomson has written: 'An analysis of performance test scores of a representative group of Scottish children'


What has the author Stanley H Kaplan written?

Stanley H. Kaplan has written: 'SAT in a Week' 'SAT Math Workbook' '9th year mathematics' 'Histology' -- subject(s): Embryology, Histology, Outlines 'ACT-In-A-Week' 'SAT Classic Course, The' 'SAT Sneak Preview' 'Biochemistry' -- subject(s): Biochemistry, Outlines 'Pathology' -- subject(s): Outlines, Outlines, syllabi, Pathology 'ACT'


What Chief Justice sat as Judge in Clinton's trial?

Chief Justice William H. Rehnquist


WHAT NATIONALLY administered test that inform colleges of your understanding of specific subject areas?

The SAT Subject Tests are nationally administered tests that inform colleges of your understanding of specific subject areas. These tests assess your knowledge in particular subjects such as Math, Science, History, and Foreign Languages. Colleges use these scores to evaluate your proficiency in these areas.


Where can credit report scores be viewed?

Credit report scores can be viewed by contacting the IRS and asking them to either email, phone, or mail in your credit score. An alternative can be going to a tax store such as H&R Block or Quicken Loans.


How do you right a shape poem?

The poem should be in the shape of the subject. The poem h no other requirements.


What is the 2009 - 2010 Indiana university Football schedule?

I updated the schedule because South Florida withdrew like a month ago to play Florida St. IU just announced a H&H with the University of Virgina. IU will play at UVA this year in the USF slot and then Sept. 10th, 2011 in Bloomington, IN. I also added the dates and put the home games in bold.2009 IU Football ScheduleSat. 09/05/09 - Eastern Kentucky Sat. 09/12/09 - Western Michigan Sat. 09/19/09 - @ Akron Sat. 09/26/09 - @ Michigan Sat. 10/03/09 - Ohio State Sat. 10/10/09 - @ VirginiaSat. 10/17/09 - Illinois Sat. 10/24/09 - @ Northwestern Sat. 10/31/09 - @ Iowa Sat. 11/07/09 - Wisconsin Sat. 11/14/09 - @ Penn State Sat. 11/21/09 - Purdue


What has the author H M Dathe written?

H. M. Dathe has written: 'Review of hovering control requirements for VTOL aircraft by a flight dynamics analysis'


Java program that will input 10 scores and output the highest and lowest score?

import javax.swing.JOptionPane; //marlonroxas public class loop_exer2 { public static void main(String agrs[]) { String input; int trial=10, sc=0, h=0, l=0, test=0; System.out.print("Scores: "); for (int ctr=1;ctr<=10;ctr++) { input=JOptionPane.showInputDialog("Enter the Scores ["+trial+"] trials "); sc=Integer.valueOf(input); System.out.print(sc+", "); if(test==0){h=sc;l=sc;test=1;} if(sc>h){h=sc;} else if(sc<l){l=sc;} }JOptionPane.showMessageDialog(null, "Highest Score is: "+h+ "\n\nLowest Score is: "+l); System.out.println(); System.out.println("Highest Score: "+h); System.out.println("Lowest Score: "+l); } }