Undergraduate Professionals

Internship

LANGUAGES SPOKEN
CURRENTLY BASED IN
contact

College Freshmen are encouraged to participate in the internship program after successful completion of a high school diploma. Students will complete a 8 Month Internship with a 4 month track in research analysis and a 4 month track in business analysis.

Students will complete an 8 Month Internship.

Students can return upon satisfaction of their internship their sophomore year as an Analyst Trainee for 8 Months in the analyst role best suited for their skills displayed in the internship period. College Juniors that have successfully completed an internship and trainee track will be invited to compete for a 2 Year Analyst Contract for the role previously trained in sophomore year with a registered LLC or sole-proprietorship of their own. Lastly, collegiate seniors that have completed a 2 Year contract successfully and obtained a degree will be invited to apply for FT employment in an analyst role at Marie Marie Management.

  • Industry Specific Training
  • Industry Specific Research & Application
  • Real World Project Practice
  • Case Study Strategy Sessions

Upon the completion of the program interns are afforded the opportunity to obtain certifications in their specific industry of their choice.

Career Paths of Our Interns & Fellows:
  • Analysis
  • Business Administration
  • Information Technology Sciences
  • Library Sciences
  • Library Information
  • Political Sciences
  • Public Administration
  • Public Health
  • Public Policy
  • Urban Planning
  • History
  • Economics
  • Mathematics
Apply Here
// Import the necessary Firebase modules import { initializeApp } from "firebase/app"; import { getFirestore, collection, addDoc, serverTimestamp } from "firebase/firestore"; // Your Firebase configuration const firebaseConfig = { apiKey: "AIzaSyBQH8AyjLWh8EWs25PMYxHawMlpTTUzH38", authDomain: "business-database-56495.firebaseapp.com", projectId: "business-database-56495", storageBucket: "business-database-56495.firebasestorage.app", messagingSenderId: "345364293002", appId: "1:345364293002:web:30e85d1722c6b487809473", measurementId: "G-15S88CF8P8" }; // Initialize Firebase const app = initializeApp(firebaseConfig); const db = getFirestore(app); // Wait for the DOM to load document.addEventListener('DOMContentLoaded', function () { const form = document.querySelector('#customForm'); // Make sure this matches your form's ID in Webflow form.addEventListener('submit', async function (event) { event.preventDefault(); // Prevent default Webflow submission // Retrieve form data const formData = new FormData(form); const income = formData.get('incomeInput'); // Match input field 'name' attributes const revenue = formData.get('revenueInput'); const investments = formData.get('investmentsInput'); const unitsSold = formData.get('unitsSoldInput'); const numClients = formData.get('numClientsInput'); const industry = formData.get('industryInput'); // Save data to Firebase Firestore try { const docRef = await addDoc(collection(db, 'BusinessData'), { income: parseFloat(income), revenue: parseFloat(revenue), investments: parseFloat(investments), unitsSold: parseInt(unitsSold), numberOfClients: parseInt(numClients), industry: industry, createdAt: serverTimestamp(), }); alert('Data saved successfully! Document ID: ' + docRef.id); form.reset(); // Reset form after successful submission } catch (error) { console.error('Error adding document: ', error); alert('Failed to save data. Please try again.'); } }); });