@burritopig
Great free resource
The free aspect of Stellar is great! Hope you don’t decide to change that :)
Ace AP®, IB®, SAT®, and Competitive Math with interactive lessons, unlimited practice, flashcards, personalized mock exams, and your own AI tutor. All in one place, and all completely free.
Free Forever. Zero Paywalls.
#1
Student's Choice
80+
Courses
100%
Free Forever
∞
Practice Questions
130+
Volunteers
40,000+
Happy Learners
How Stellar Works
Open a course, move through the learning loop, and keep every support tool attached to what you are studying.
AP Macroeconomics
Lesson 3.8: Financial assets
Core learning loop
What happens to existing bond prices when interest rates rise?
Immediate feedback
Correct. If new bonds pay more, older bonds with lower payments become less valuable.
Support tools stay attached
Not the main loop, but always nearby when the course needs backup.

Nova
Ask for help when you get stuck.
Notes
Save ideas from lessons and practice.
Flashcards
Review terms that need repetition.
My Space
Keep courses, folders, and study materials connected.
Progress
See what is mastered and what needs work.
Quasar
Use deeper tools when a course needs extra analysis.
AP Score Calculator
Estimate score targets and plan the next practice push.
Interactive Lessons
Our lessons designed to help you learn more effectively and efficiently. They are comprehensive, interactive, and make any concept intuitive.
Math Graphing Exercise
Please plot the function, on the coordinate plane. You can plot the function by simply clicking two points that are on it.
Grammar Labeling Exercise
For the sentence below, please highlight the nouns yellow, the action verbs green, the prepositions blue, the conjunctions pink, and any adjective or participle purple.
Interactive Coding Exercise
Write python code to find the
Loading editor...
Economics Guided Exercise
The price of Coke, the substitute of Pepsi has increased. How does this change in consumer preference affect the price and quantity of Pepsi? Please move the supply and/or demand curves to demonstrate this change and complete the sentence below.
After the increase of Coke's price, demand for Pepsi , and supply for Pepsi . The price of Pepsi and the quantity of Pepsi .
Foreign Language Tracing Exercise
Trace the Chinese Character below.
Interactive Exercises
Engage with interactive tasks like labeling, problem-solving, and simulations that make complex concepts easier to grasp and retain.
Infinite Practice
Access limitless, AI-generated questions that provide continuous practice opportunities, ensuring you’re prepared and confident in every subject.
Multiple Choice Question
Exam-Style MCQ
Prepare thoroughly for all AP® subjects with a variety of mock exams designed to simulate real test conditions.
Exam-Style FRQ
Master free-response questions (FRQs) with expertly crafted materials designed to mimic AP® exam formats.
“In the late 19th and early 20th centuries, American foreign policy was primarily defined by the pursuit of expansionism, driven by a belief in American exceptionalism and a duty to spread democracy and capitalism around the globe. This era saw the United States engage in several conflicts and interventions, including the Spanish-American War of 1898, which not only resulted in territorial acquisitions like Puerto Rico and the Philippines but also marked a significant shift in the nation's identity as a global power. This aggressive foreign policy was justified by arguments of moral obligation, presenting the annexation of overseas territories as a benevolent act aimed at uplifting less fortunate nations, thus embodying a humanitarian facade coupled with economic interests.”
Source: John A. Thompson, historian, “The United States and the Age of Imperialism”, 2003
“Contrarily, the rise of American imperialism during this period can be seen as a hypocritical endeavor, masking underlying motives of economic exploitation and nationalistic fervor under the guise of moral superiority. Critics of this foreign policy argued that instead of liberating oppressed peoples, the United States sought to reproduce its own dominance in foreign lands for the benefit of American corporations and investors. The consequences of such policies were often detrimental, leading to unrest and resistance in the territories affected, as exemplified by the Philippine-American War, where the rhetoric of liberation was starkly at odds with the reality of subjugation and violence. This imperialistic approach not only contradicted the founding principles of liberty and self-determination but also illuminated the darker side of America's global ambitions, showing that the nation's self-image was often built on the subjugation of others.”
Source: David S. Mason, historian, “Imperialism and American Identity”, 2010
Using the excerpts, respond to parts a, b, and c.
a. Briefly describe one major difference between Thompson’s and Mason’s interpretations of American foreign policy in the late 19th and early 20th centuries.
b. Briefly explain how one historical event or development from 1865 to 1917 not directly mentioned in the excerpts could be used to support Thompson’s interpretation.
c. Briefly explain how one historical event or development from 1865 to 1917 not directly mentioned in the excerpts could be used to support Mason’s interpretation.
Login to Stellar to Auto-Score this FRQ
The relationship between urbanization and social patterns has significant implications for both human behavior and policy planning.
A. Define urbanization in the context of human geography.
B. Describe ONE social impact of urbanization on family structures in urban areas.
C. Explain how urbanization can lead to the increased prevalence of social issues, such as crime or poverty.
D. Discuss how urban planning can address the challenges associated with rapid urbanization.
E. Explain the role of public transportation in influencing urban development and social equity.
F. Describe how suburbanization may impact the demographic characteristics of urban areas.
G. Explain the degree to which gentrification alters the cultural landscape of neighborhoods in urban settings. (Response must indicate the degree [low, moderate, high] and provide an explanation.)
Login to Stellar to Auto-Score this FRQ
The temperature of a lake is modeled by a continuous and differentiable function, T(t), which measures the temperature in degrees Celsius at time t (in hours). The following table displays selected values of T(t) over a period of 8 hours.
| t (hours) | 0 | 1 | 3 | 5 | 8 |
|---|---|---|---|---|---|
| T(t) (°C) | 15 | 17 | 20 | 23 | 25 |
(a) Using a right Riemann sum with the intervals [0, 1], [1, 3], [3, 5], and [5, 8], approximate the value of the integral
(b) According to the Mean Value Theorem for Integrals, must there exist a time c in [0, 8] such that T'(c) equals the average value of T over that interval? Justify your answer.
(c) Using the average temperature calculated in part (a), estimate the total increase in temperature from t = 0 to t = 8. Provide the mathematical setup for your calculations.
(d) When the temperature of the lake is 25°C, the rate of change of the temperature is given by
Login to Stellar to Auto-Score this FRQ
This question involves the TemperatureRecord class, which records daily temperatures for a week. You will write two methods in the TemperatureRecord class that help analyze the temperature data.
(a) Write the calculateAverageTemperature method, which calculates the average temperature for the week. The method should add up all the temperatures in the dailyTemperatures array and divide by the number of days (7). If the sum is 0, due to initialization conditions, ensure it returns 0 as the average.
Class information for this question
(b) Write the countDaysAboveThreshold method. This method iterates through the dailyTemperatures array and counts how many days have temperatures above the provided threshold. The count is then returned.
Consider the following examples:
| Input Temperatures | Threshold | Output |
|---|---|---|
| [70, 75, 80, 85, 90, 95, 100] | 80 | 4 |
| [60, 65, 70, 75, 80, 85, 90] | 80 | 3 |
| [0, -5, -10, -15, -20, -25, -30] | -10 | 2 |
Each input will be a valid set of 7 daily temperatures.
Complete the countDaysAboveThreshold method, ensuring that it iterates correctly through the dailyTemperatures array.
Class information for this question
Login to Stellar to Auto-Score this FRQ
In a 2021 TED Talk, renowned author and philosopher Alain de Botton stated: "Our culture has created the illusion that the arrived-at life is a happy life. We believe that all we need to do is find our dream job, buy a house, or travel to exotic places, and we will be fulfilled. Yet true contentment comes from a deeper understanding of ourselves, our relationships, and the acceptance of life’s inherent challenges and uncertainties."
Write an essay that argues your position on the extent to which de Botton's claim about the pursuit of happiness and fulfillment is valid.
In your response you should do the following:
Login to Stellar to Auto-Score this FRQ
AMC Question
Infinite Competition Practice
Prepare for competitions like AMC, AIME, and F=ma with thousands of curated problems and infinite practice. Track your progress, climb leaderboards, and build your rating through a gamified system.
Chat with Nova
Receive 24/7 help from your visual, intuitive, step-by-step tutor that helps you understand any concept.
Feature Comparison
We know how frustrating it can be to find a truly free app, one without ads, subscriptions, or hidden paywalls. That’s why we created a solution, with the best of all your favorite apps, that puts users first.
| | | | | | |
|---|---|---|---|---|---|---|
| Infinite AI-Powered Practice | ||||||
| High Quality Practice Questions | ||||||
| High Quality Study Guides | ||||||
| Unlimited AP FRQ Practice | ||||||
| Full-Length AP Practice Exams | ||||||
| Gamification and Streak | ||||||
| Visual-Based AI Assistant | ||||||
| Practice from Custom Notes and Flashcards | ||||||
| Interactive Lessons and Practice | ||||||
| Leaderboard | ||||||
| Authentic Competitive Math Questions | ||||||
| Intuitive Competitive Math Explanations | ||||||
| Competitive Math Visual Tracker | ||||||
| Price (per month) | Free $0.00 | $4.00 (Khanmigo) | 27.00 | $24.99 | $27.99 | ≈$40.00 (per Book) |
Browse Courses
Switch between course tracks, preview subject coverage, and open any course directly.
0
Courses
0
Subjects
Free
Access
AP
Course preview
Open a course directly, or switch tracks to see how much Stellar covers.
No courses found for this track yet.
Looking for a different track or course? Open a ticket on Discord
Student Testimony
I was completely overwhelmed with my APs at first. I didn’t have the motivation to study or the right resources to succeed. But Stellar changed everything. Its immersive experience kept me motivated, and the high-quality study guides, practice problems, and mock tests gave me the tools I needed. And it’s completely free too!
9th Grade AP Student
Stellar learner
Global Coverage
110+
Countries
40,000+
Learners
130+
Volunteers
Reviews
Now it's your turn to experience the true power of Stellar
@burritopig
The free aspect of Stellar is great! Hope you don’t decide to change that :)
@dylanh70607
Love the UI, looks exactly like the AP thing. I love the feature of the 1/4, 1/3 test stuff. Also good.
@tvisha
Stellar being free is incredibly helpful and makes it a great resource for lots of students. The layout is simple yet organized. Thank you for putting in the time to make such detailed courses.
@is_mishra
Good AP Practice Questions
@evan
I liked how many courses there are and how easy it is to navigate the app/website.
@sharkibubble
It has a good range of topics and includes important APs and competition questions for free! Really amazing.
@emilie
Easy to understand. I like the leaderboard because it instills some competition.
@javajellyfish
I'm loving the infinite practice, and the hints. I've always found it difficult to practice for math competitions due to the difficult to navigate websites, but this website puts it all in one place.
@alou
The wording of the answer choices and questions look a lot like actual AP material.
@coffeecreamer
I think Stellar is an amazing learning platform. I'm a fan of the active reading section and the mock exam. It's great to have everything completely free, no different tiers. Unlimited analysis and explanation, informative AI. Appearance wise, Stellar thrives.
@pengoh_
It is aesthetic, it works well, it has good questions.
@newrepublic
The UI is amazing and the courses are perfect, they fit curriculum perfectly for my school.
@zachyhads13
Stellar is more than an app, it’s a creative escape. I love how beautifully designed it is, how intuitive everything feels, and how it always sparks inspiration. It’s my go to space for ideas and connection.
@thunderbee
I only started using Stellar yesterday evening and I'm absolutely taken aback by how amazing this website is. My favorite part is the variety of AP- Style MCQS- the conceptual ones are perfect for building understanding and the hard AP level questions are perfect for test prep or just for a fun challenge. Thank you so much, I'll definitely being using this website for all my AP classes!
@presstart20
I love how it is so helpful and that it is completely free. Stellar gave me confidence when I go into my high school classes! The best part is that it is 100% free!!!!!!!
@infinium
I love the questions the teaching you even teach AP for free like you guys are like Santa for studying love y'all
Mission Partners
We partner with other organizations and nonprofits who support our mission of expanding the accessibility of education. Through partnerships, we strive to deliver the best content to the widest audience.
Built for access
Stellar is a nonprofit learning platform built by students, volunteers, and contributors who want high-quality education to be available to everyone.
Every contribution goes back into the learning experience: more courses, better practice, faster infrastructure, Nova support, and tools students can use without subscriptions.
Ways to help
Donate
Anyone
Make a one-time or recurring gift to help cover servers, AI usage, content tools, and student access.
Volunteer
High school students
Contribute lessons, review content, test new features, build tools, or help improve the product.
School Ambassador
High school students
Represent Stellar at your school, share free resources, and help classmates discover the platform.
Sponsor
Organizations & companies
Fund a course, exam track, student program, or infrastructure that keeps learning free.
Partner
Organizations & companies
Work with Stellar on distribution, content, programs, or mission-aligned education initiatives.
Final Clarifications
Quick answers before students, parents, or supporters jump in.
Free Forever. Zero Paywalls.
Probably the only study site you'll see all day with zero paywalls. Other "free" study sites hate us for this one.