As Seen On

Recognized By
Understanding the Differences: Misdemeanor vs. Felony Charges in Arizona
Navigating the legal waters of criminal charges in Arizona can be a daunting task. At Tamou Law Group PLLC, we believe in empowering our clients with knowledge to understand the complexities of their legal situations. This blog aims to delineate the key differences between misdemeanor and felony charges under Arizona law, providing you with a clear understanding of what each entails and their potential impact on your life.1
Severity and Classification
The fundamental difference between misdemeanors and felonies lies in their severity. Misdemeanors are considered less serious crimes compared to felonies. Arizona law classifies misdemeanors into three classes: Class 1 being the most serious and Class 3 the least. Felonies, on the other hand, are more severe and are categorized into six classes, with Class 1 felonies being the most severe, often involving capital punishment or life imprisonment for crimes such as first-degree murder.2
Punishment and Sentencing
The penalties associated with these charges vary significantly. Misdemeanors in Arizona may result in fines, community service, probation, or jail time of up to six months for a Class 1 misdemeanor. Felonies carry harsher penalties, including lengthy prison sentences, hefty fines, and more severe probation terms. For example, a Class 2 felony could result in a prison sentence ranging from 3 to 12.5 years for a first-time offender.3
Trial and Legal Process
The legal processes for misdemeanors and felonies also differ. Misdemeanor cases are typically handled by lower courts, such as municipal or justice courts, and may not require a jury trial. Felony cases, however, are tried in superior courts and almost always involve a jury to determine the verdict, ensuring a more rigorous examination of evidence and legal arguments.4
Impact on Civil Rights
A felony conviction in Arizona can lead to the loss of certain civil rights, including the right to vote, possess firearms, and hold public office. Misdemeanor convictions, while still serious, generally do not have as profound an impact on an individual’s civil rights. Restoring these rights after a felony conviction requires a separate legal process and is not automatic upon the completion of a sentence.5
Record Sealing and Expungement
Arizona’s approach to record sealing and expungement further distinguishes misdemeanors from felonies. While the state does not allow for the complete expungement of criminal records, it does permit the setting aside of judgments or convictions in certain cases. Misdemeanor convictions, especially those of a lesser degree, are more likely to be set aside than felony convictions, which are subject to stricter scrutiny and eligibility requirements.6
Employment and Housing Consequences
The long-term consequences of felony convictions extend into employment and housing opportunities. Employers and landlords may be more hesitant to hire or rent to individuals with felony records, viewing them as higher risk. Misdemeanor convictions can also affect these opportunities, but to a lesser extent, especially if they are minor and do not indicate a pattern of harmful behavior.7
Statutory References
Under Arizona law, the statutes that govern misdemeanors and felonies provide a legal framework for their classification and punishment. Key statutes include Arizona Revised Statutes (ARS) §§ 13-701 to 13-705 for sentencing guidelines, ARS § 13-707 for misdemeanors, and ARS § 13-801 for fines and penalties. These statutes outline the legal boundaries and consequences for various criminal offenses in Arizona.
Conclusion
Understanding the differences between misdemeanor and felony charges in Arizona is crucial for anyone facing criminal charges. At Tamou Law Group PLLC, we are committed to providing our clients with the knowledge and legal experience needed to navigate these challenges. If you or a loved one is facing criminal charges in Arizona, don’t hesitate to contact Tamou Law at 623-321-4699. Our experienced team is here to support you every step of the way, ensuring that your rights are protected and your case is handled with the utmost care and professionalism.
Awards & Recognition
Our recognition for Phoenix DUI defense is independently verified, click any award to confirm it:
- National Trial Lawyers Top 100
- National Trial Lawyers Top 40 Under 40
- Elite Lawyer 2026 – Criminal Defense
- Super Lawyers – Southwest
- National College for DUI Defense (NCDD)
When you are looking for the best Phoenix DUI lawyers, these are the independently verified credentials that matter, earned by Founding Attorney Michael Tamou and a full team of attorneys, including former prosecutors.
What Clients Say About Tamou Law
Real Google reviews from clients we have defended across Phoenix and Maricopa County. Every review is from a criminal defense client, never padded with non-legal work.
Two Arizona Offices, One Team
We serve all of Maricopa County and the surrounding area, with free, confidential consultations 24/7 by phone and in-person meetings at either office by appointment.
Case Results Disclaimer: The results described on this page are based on specific facts and circumstances and do not guarantee or predict a similar outcome in any future case. Every case is different. Past results do not guarantee future results. No attorney-client relationship is formed by viewing this page or submitting a contact form until a written fee agreement has been signed. Tamou Law Group, PLLC is licensed to practice law in the State of Arizona. This website is for informational purposes only and does not constitute legal advice.
(function() {
function customizeConsultForm() {
var form = document.querySelector('#consult-form');
if (!form) return false;
var fields = form.querySelectorAll('.gfield');
var emailField = null;
var didWork = false;
fields.forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var labelText = (label.textContent || '').trim().toLowerCase();
if (labelText.indexOf('best way to reply') !== -1 || labelText.indexOf('preferred contact') !== -1) {
field.classList.add('tlg-hide-field');
field.querySelectorAll('input').forEach(function(input) {
input.checked = false;
input.removeAttribute('required');
});
didWork = true;
}
if (labelText.indexOf('email') !== -1) {
emailField = field;
field.classList.add('tlg-email-required');
field.querySelectorAll('input[type="email"], input[type="text"]').forEach(function(input) {
input.setAttribute('required', 'required');
input.setAttribute('aria-required', 'true');
});
didWork = true;
}
});
var gform = form.tagName === 'FORM' ? form : (form.querySelector('form') || form.closest('form'));
if (!gform) gform = document.querySelector('#consult-form form, form[id^="gform_"]');
if (gform && !gform.dataset.tlgSourceBound) {
gform.dataset.tlgSourceBound = '1';
var pageUrl = window.location.href;
var pageTitle = document.title || 'Phoenix White Collar Defense Lawyers';
var pagePath = window.location.pathname;
var sourceTag = '[Source: ' + pageTitle.replace(/\s*[,|].*$/, '') + ' | ' + pagePath + ']';
['source_page', 'page_url', 'lander_url'].forEach(function(name) {
var h = document.createElement('input');
h.type = 'hidden';
h.name = name;
h.value = pageUrl;
gform.appendChild(h);
});
var hp = document.createElement('input');
hp.type = 'hidden';
hp.name = 'source_path';
hp.value = pagePath;
gform.appendChild(hp);
function findMessageField() {
var match = null;
form.querySelectorAll('.gfield').forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var t = (label.textContent || '').trim().toLowerCase();
if (t.indexOf('message') !== -1 || t.indexOf('comment') !== -1 || t.indexOf('detail') !== -1 || t.indexOf('describe') !== -1 || t.indexOf('tell us') !== -1 || t.indexOf('your story') !== -1) {
match = field.querySelector('textarea, input[type="text"]');
}
});
if (!match) match = form.querySelector('textarea');
return match;
}
function prependSource() {
var textarea = findMessageField();
if (textarea && textarea.value.indexOf('[Source:') === -1) {
textarea.value = sourceTag + '\n\n' + (textarea.value || '');
}
}
gform.addEventListener('submit', prependSource, true);
var submitBtns = gform.querySelectorAll('input[type="submit"], button[type="submit"], .gform_button');
submitBtns.forEach(function(btn) {
btn.addEventListener('click', function() {
setTimeout(prependSource, 0);
prependSource();
}, true);
});
}
var submitBtn = form.querySelector('input[type="submit"], button[type="submit"]');
if (submitBtn && emailField && !submitBtn.dataset.tlgBound) {
submitBtn.dataset.tlgBound = '1';
submitBtn.addEventListener('click', function(e) {
var emailInput = emailField.querySelector('input[type="email"], input[type="text"]');
if (emailInput && !emailInput.value.trim()) {
e.preventDefault();
emailInput.focus();
emailInput.style.borderColor = '#c62828';
emailInput.style.boxShadow = '0 0 0 3px rgba(198,40,40,.15)';
}
});
}
return didWork;
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', customizeConsultForm);
} else {
customizeConsultForm();
}
var attempts = 0;
var interval = setInterval(function() {
attempts++;
var done = customizeConsultForm();
if (done || attempts > 10) clearInterval(interval);
}, 500);
})();






