saitm.ac.in Open in urlscan Pro
3.6.241.44  Public Scan

Submitted URL: http://saitm.ac.in/
Effective URL: https://saitm.ac.in/
Submission: On October 14 via manual from IN — Scanned from CA

Form analysis 2 forms found in the DOM

POST /save-query-form/

<form class="custom-form mr-3" action="/save-query-form/" method="post" onsubmit="return validateMobileNumber();">
  <p class="title-style">Enquiry Form</p>
  <p class="lable-style">Full Name*</p>
  <input type="text" class="form-style form-control" id="inlineFormInputGroup" placeholder="Enter Name" name="name" pattern="[A-Za-z ]+" oninput="validateInput(this)" required="">
  <p class="lable-style">Course Interested in*</p>
  <select class="dropdown-icon form-style form-control" name="course_choice" required="">
    <option value="" selected="" disabled="">Select Course</option>
    <option value="B.Tech CSE (Computer Science &amp; Engineering)">B.Tech CSE (Computer Science &amp; Engineering)</option>
    <option value="B. Tech ETCE (Electronics &amp; Telecommunication Engineering)">B. Tech ETCE (Electronics &amp; Telecommunication Engineering)</option>
    <option value="BBA (Bachelor of Business Administration)">BBA (Bachelor of Business Administration)</option>
    <option value="BCA (Bachelor of Computer Applications)">BCA (Bachelor of Computer Applications)</option>
    <option value="B.Tech (LEET)">B.Tech (LEET)</option>
    <option value="MBA (Master of Business Administration)">MBA (Master of Business Administration)</option>
    <option value="B.Tech CST (Computer Science Technology)">B.Tech CST (Computer Science Technology)</option>
    <option value="B.Tech CSE - AI/ML (Artificial Intelligence and Machine Learning)">B.Tech CSE - AI/ML (Artificial Intelligence and Machine Learning)</option>
    <option value="B.Tech CSE - DS (Data Science)">B.Tech CSE - DS (Data Science)</option>
    <option value="M.Tech (Master of Technology)">M.Tech (Master of Technology)</option>
    <option value="MCA (Master of Computer Application)">MCA (Master of Computer Application)</option>
  </select>
  <p class="lable-style">Email*</p>
  <input type="email" class="form-style form-control" id="inlineFormInputGroup" placeholder="Enter Email" name="email" required="">
  <p class="lable-style">Phone Number*</p>
  <div class="form-style-number">
    <p>+91</p>
    <input type="number" id="inlineFormInputGroup" placeholder="Enter Phone Number" name="phone" pattern="[0-9]{10}" oninput="validatePhoneNumber(this)" onkeypress="return allowOnlyNumbers(event)" required="">
  </div>
  <span id="phone-error" class="error-message"></span>
  <p class="lable-style">Present State*</p>
  <select class="dropdown-icon form-style form-control" name="state" required="">
    <option value="" disabled="">Select State</option>
    <option value="Uttar Pradesh">Uttar Pradesh</option>
    <option value="Andaman and Nicobar Islands">Andaman and Nicobar Islands</option>
    <option value="Daman and Diu">Daman and Diu</option>
    <option value="Dadra and Nagar Haveli">Dadra and Nagar Haveli</option>
    <option value="Andhra Pradesh">Andhra Pradesh</option>
    <option value="Chhattisgarh">Chhattisgarh</option>
    <option value="Gujarat">Gujarat</option>
    <option value="Jammu and Kashmir">Jammu and Kashmir</option>
    <option value="Karnataka">Karnataka</option>
    <option value="Kerala">Kerala</option>
    <option value="Ladakh">Ladakh</option>
    <option value="Lakshadweep">Lakshadweep</option>
    <option value="Madhya Pradesh">Madhya Pradesh</option>
    <option value="Puducherry">Puducherry</option>
    <option value="Odisha">Odisha</option>
    <option value="West Bengal">West Bengal</option>
    <option value="Telangana">Telangana</option>
    <option value="Tamil Nadu">Tamil Nadu</option>
    <option value="Maharashtra">Maharashtra</option>
    <option value="Goa">Goa</option>
    <option value="Himachal Pradesh">Himachal Pradesh</option>
    <option value="Chandigarh">Chandigarh</option>
    <option value="Punjab">Punjab</option>
    <option value="Rajasthan">Rajasthan</option>
    <option value="Uttarakhand">Uttarakhand</option>
    <option value="Tripura">Tripura</option>
    <option value="Sikkim">Sikkim</option>
    <option value="Nagaland">Nagaland</option>
    <option value="Mizoram">Mizoram</option>
    <option value="Meghalaya">Meghalaya</option>
    <option value="Manipur">Manipur</option>
    <option value="Arunachal Pradesh">Arunachal Pradesh</option>
    <option value="Assam">Assam</option>
    <option value="Jharkhand">Jharkhand</option>
    <option value="Bihar">Bihar</option>
    <option value="Haryana">Haryana</option>
    <option value="Delhi NCR">Delhi NCR</option>
  </select>
  <button type="submit" class="submit-button">Submit</button>
  <script>
    function validateInput(input) {
      input.value = input.value.replace(/[^a-zA-Z ]/g, "");
    }

    function onlyAlphabets(evt) {
      var charCode = evt.which ? evt.which : evt.keyCode;
      if (
        (charCode < 65 || charCode > 90) && (charCode < 97 || charCode > 122)) {
        evt.preventDefault();
        return false;
      }
      return true;
    }

    function allowOnlyNumbers(event) {
      // Allow only numbers 0-9
      return (/\d/.test(event.key) || event.key === "Backspace" || event.key === "Delete");
    }

    function validatePhoneNumber(input) {
      input.value = input.value.replace(/\D/g, ""); // Remove non-numeric characters
      // Ensure exactly 10 digits
      if (input.value.length > 10) {
        input.value = input.value.slice(0, 10);
      }
    }

    function validateMobileNumber() {
      var phoneInput = document.getElementsByName("phone")[0];
      var phoneValue = phoneInput.value.replace(/\D/g, ""); // Remove non-numeric characters
      var errorMessage = document.getElementById("phone-error");
      if (phoneValue.length !== 10) {
        errorMessage.textContent = "Phone number must contain exactly 10 digits.";
        errorMessage.style.display = "block";
        return false;
      } else {
        errorMessage.textContent = "";
        errorMessage.style.display = "none";
        return true;
      }
    }
  </script>
</form>

POST /save-query-form/

<form class="custom-form mr-3" action="/save-query-form/" method="post" onsubmit="return validateMobileNumber();">
  <p class="title-style">Enquiry Form</p>
  <p class="lable-style">Full Name*</p>
  <input type="text" class="form-style form-control" id="inlineFormInputGroup" placeholder="Enter Name" name="name" pattern="[A-Za-z ]+" oninput="validateInput(this)" required="">
  <p class="lable-style">Course Interested in*</p>
  <select class="dropdown-icon form-style form-control" name="course_choice" required="">
    <option value="" selected="" disabled="">Select Course</option>
    <option value="B.Tech CSE (Computer Science &amp; Engineering)">B.Tech CSE (Computer Science &amp; Engineering)</option>
    <option value="B. Tech ETCE (Electronics &amp; Telecommunication Engineering)">B. Tech ETCE (Electronics &amp; Telecommunication Engineering)</option>
    <option value="BBA (Bachelor of Business Administration)">BBA (Bachelor of Business Administration)</option>
    <option value="BCA (Bachelor of Computer Applications)">BCA (Bachelor of Computer Applications)</option>
    <option value="B.Tech (LEET)">B.Tech (LEET)</option>
    <option value="MBA (Master of Business Administration)">MBA (Master of Business Administration)</option>
    <option value="B.Tech CST (Computer Science Technology)">B.Tech CST (Computer Science Technology)</option>
    <option value="B.Tech CSE - AI/ML (Artificial Intelligence and Machine Learning)">B.Tech CSE - AI/ML (Artificial Intelligence and Machine Learning)</option>
    <option value="B.Tech CSE - DS (Data Science)">B.Tech CSE - DS (Data Science)</option>
    <option value="M.Tech (Master of Technology)">M.Tech (Master of Technology)</option>
    <option value="MCA (Master of Computer Application)">MCA (Master of Computer Application)</option>
  </select>
  <p class="lable-style">Email*</p>
  <input type="email" class="form-style form-control" id="inlineFormInputGroup" placeholder="Enter Email" name="email" required="">
  <p class="lable-style">Phone Number*</p>
  <div class="form-style-number">
    <p>+91</p>
    <input type="number" id="inlineFormInputGroup" placeholder="Enter Phone Number" name="phone" pattern="[0-9]{10}" oninput="validatePhoneNumber(this)" onkeypress="return allowOnlyNumbers(event)" required="">
  </div>
  <span id="phone-error" class="error-message"></span>
  <p class="lable-style">Present State*</p>
  <select class="dropdown-icon form-style form-control" name="state" required="">
    <option value="" disabled="">Select State</option>
    <option value="Uttar Pradesh">Uttar Pradesh</option>
    <option value="Andaman and Nicobar Islands">Andaman and Nicobar Islands</option>
    <option value="Daman and Diu">Daman and Diu</option>
    <option value="Dadra and Nagar Haveli">Dadra and Nagar Haveli</option>
    <option value="Andhra Pradesh">Andhra Pradesh</option>
    <option value="Chhattisgarh">Chhattisgarh</option>
    <option value="Gujarat">Gujarat</option>
    <option value="Jammu and Kashmir">Jammu and Kashmir</option>
    <option value="Karnataka">Karnataka</option>
    <option value="Kerala">Kerala</option>
    <option value="Ladakh">Ladakh</option>
    <option value="Lakshadweep">Lakshadweep</option>
    <option value="Madhya Pradesh">Madhya Pradesh</option>
    <option value="Puducherry">Puducherry</option>
    <option value="Odisha">Odisha</option>
    <option value="West Bengal">West Bengal</option>
    <option value="Telangana">Telangana</option>
    <option value="Tamil Nadu">Tamil Nadu</option>
    <option value="Maharashtra">Maharashtra</option>
    <option value="Goa">Goa</option>
    <option value="Himachal Pradesh">Himachal Pradesh</option>
    <option value="Chandigarh">Chandigarh</option>
    <option value="Punjab">Punjab</option>
    <option value="Rajasthan">Rajasthan</option>
    <option value="Uttarakhand">Uttarakhand</option>
    <option value="Tripura">Tripura</option>
    <option value="Sikkim">Sikkim</option>
    <option value="Nagaland">Nagaland</option>
    <option value="Mizoram">Mizoram</option>
    <option value="Meghalaya">Meghalaya</option>
    <option value="Manipur">Manipur</option>
    <option value="Arunachal Pradesh">Arunachal Pradesh</option>
    <option value="Assam">Assam</option>
    <option value="Jharkhand">Jharkhand</option>
    <option value="Bihar">Bihar</option>
    <option value="Haryana">Haryana</option>
    <option value="Delhi NCR">Delhi NCR</option>
  </select>
  <button type="submit" class="submit-button">Submit</button>
  <script>
    function validateInput(input) {
      input.value = input.value.replace(/[^a-zA-Z ]/g, "");
    }

    function onlyAlphabets(evt) {
      var charCode = evt.which ? evt.which : evt.keyCode;
      if (
        (charCode < 65 || charCode > 90) && (charCode < 97 || charCode > 122)) {
        evt.preventDefault();
        return false;
      }
      return true;
    }

    function allowOnlyNumbers(event) {
      // Allow only numbers 0-9
      return (/\d/.test(event.key) || event.key === "Backspace" || event.key === "Delete");
    }

    function validatePhoneNumber(input) {
      input.value = input.value.replace(/\D/g, ""); // Remove non-numeric characters
      // Ensure exactly 10 digits
      if (input.value.length > 10) {
        input.value = input.value.slice(0, 10);
      }
    }

    function validateMobileNumber() {
      var phoneInput = document.getElementsByName("phone")[0];
      var phoneValue = phoneInput.value.replace(/\D/g, ""); // Remove non-numeric characters
      var errorMessage = document.getElementById("phone-error");
      if (phoneValue.length !== 10) {
        errorMessage.textContent = "Phone number must contain exactly 10 digits.";
        errorMessage.style.display = "block";
        return false;
      } else {
        errorMessage.textContent = "";
        errorMessage.style.display = "none";
        return true;
      }
    }
  </script>
</form>

Text Content

 * 
 * 
 * 

 * Admission helpline: +91-8505937772
 * Apply Now

 * ABOUT US
    * Overview
    * Approval & Affiliation
    * Awards & Achievements
    * Message From Leadership
    * Our Legacy

 * PROGRAMMES
    * * Under Graduate
        * B.Tech CSE (Computer Science & Engineering)
        * B.Tech CST (Computer Science Technology)
        * B.Tech CSE - AI/ML (Artificial Intelligence and Machine Learning)
        * B.Tech CSE - DS (Data Science)
        * B. Tech ETCE (Electronics & Telecommunication Engineering)
        * B.Tech (LEET)
        * BBA (Bachelor of Business Administration)
        * BCA (Bachelor of Computer Applications)
      * Post Graduate
        * M.Tech (Master of Technology)
        * MCA (Master of Computer Application)
        * MBA (Master of Business Administration)
      * Diploma

 * ADMISSION
    * Overview
    * Process: How to Apply
    * Eligibility
    * Fee Structure
    * Payment Procedure
    * FAQs

 * CDC
    * Overview
    * Message From Dean CDC
    * Training & Industry Visits
    * Workshops / Seminars
    * Placement Records
    * Alumni Cell
    * Contact Placement Cell

 * ACADEMICS
    * Overview
    * Teaching Methodologies
    * Academics Calendar
    * Examinations
    * Technical Trainings
    * Syllabus
    * Rules & Regulations
    * Grievance Redressal Portal
    * Research and Development (R&D) Cell

 * CAMPUS FACILITIES
    * Overview
    * Hostels
    * Classrooms
    * Seminar Halls
    * Conference Rooms
    * Computer Center
    * Library
    * Sports & GYM
    * Labs
    * Mess & Cafeterias
    * Transportation
    * Medical & Other Facilities

 * CAREER
    * CAREER

 * CONTACT US
   

 * ABOUT US
   * Overview
   * Approval & Affiliation
   * Awards & Achievements
   * Message From Leadership
   * Our Legacy
 * PROGRAMMES
   * Under Graduate
     * B.Tech CSE (Computer Science & Engineering)
     * B.Tech CST (Computer Science Technology)
     * B.Tech CSE - AI/ML (Artificial Intelligence and Machine Learning)
     * B.Tech CSE - DS (Data Science)
     * B. Tech ETCE (Electronics & Telecommunication Engineering)
     * B.Tech (LEET)
     * BBA (Bachelor of Business Administration)
     * BCA (Bachelor of Computer Applications)
   * Post Graduate
     * M.Tech (Master of Technology)
     * MCA (Master of Computer Application)
     * MBA (Master of Business Administration)
   * Diploma
 * ADMISSION
   * Overview
   * Process: How to Apply
   * Eligibility
   * Fee Structure
   * Payment Procedure
   * FAQs
 * CDC
   * Overview
   * Message From Dean CDC
   * Training & Industry Visits
   * Workshops / Seminars
   * Placement Records
   * Alumni Cell
   * Contact Placement Cell
 * ACADEMICS
   * Overview
   * Teaching Methodologies
   * Academics Calendar
   * Examinations
   * Technical Trainings
   * Syllabus
   * Rules & Regulations
   * Grievance Redressal Portal
   * Research and Development (R&D) Cell
 * CAMPUS FACILITIES
   * Overview
   * Hostels
   * Classrooms
   * Seminar Halls
   * Conference Rooms
   * Computer Center
   * Library
   * Sports & GYM
   * Labs
   * Mess & Cafeterias
   * Transportation
   * Medical & Other Facilities
 * CAREER
   * CAREER
 * CONTACT US

 * SAITM Hostel
 * St. Andrews Institute of Technology & Management (Main Building)
 * Major Recruiters in SAITM
 * SAITM New Hostel block was awarded the second prize in Delhi Architecture
   Festival (DAF) 2016.
 * SAITM All Generic Courses.
 * SAITM Hostel
 * St. Andrews Institute of Technology & Management (Main Building)



SAITM

Approved by AICTE, Govt. of India, New Delhi.
Affiliated to Maharshi Dayanand University.
'A' Grade state university, accredited by NAAC.


IMPORTANT NOTICES

Sessional Exam Notice

Notice for offline classes

Advertisement for Recruitment - 2023

Non -Teaching Staff Qualification (MDU)

Advertisement for recruitment 2022

Application for Teaching/Non-teaching Jobs

Registration link for 1st Research Conclave

Reappear Exam Form Notice

Sessional Exam Notice

Notice for offline classes

Advertisement for Recruitment - 2023

Non -Teaching Staff Qualification (MDU)




COURSES OFFERED

B.Tech

B.Tech CSE (Computer Science & Engineering)

B. Tech ETCE (Electronics & Telecommunication Engineering)

B.Tech (LEET)

B.Tech CST (Computer Science Technology)

B.Tech CSE - AI/ML (Artificial Intelligence and Machine Learning)

B.Tech CSE - DS (Data Science)

BCA

BCA (Bachelor of Computer Applications)

BBA

BBA (Bachelor of Business Administration)

MBA

MBA (Master of Business Administration)

M.Tech

M.Tech (Master of Technology)

MCA

MCA (Master of Computer Application)

Enquiry Form

Full Name*

Course Interested in*

Select Course B.Tech CSE (Computer Science & Engineering) B. Tech ETCE
(Electronics & Telecommunication Engineering) BBA (Bachelor of Business
Administration) BCA (Bachelor of Computer Applications) B.Tech (LEET) MBA
(Master of Business Administration) B.Tech CST (Computer Science Technology)
B.Tech CSE - AI/ML (Artificial Intelligence and Machine Learning) B.Tech CSE -
DS (Data Science) M.Tech (Master of Technology) MCA (Master of Computer
Application)

Email*

Phone Number*

+91

Present State*

Select State Uttar Pradesh Andaman and Nicobar Islands Daman and Diu Dadra and
Nagar Haveli Andhra Pradesh Chhattisgarh Gujarat Jammu and Kashmir Karnataka
Kerala Ladakh Lakshadweep Madhya Pradesh Puducherry Odisha West Bengal Telangana
Tamil Nadu Maharashtra Goa Himachal Pradesh Chandigarh Punjab Rajasthan
Uttarakhand Tripura Sikkim Nagaland Mizoram Meghalaya Manipur Arunachal Pradesh
Assam Jharkhand Bihar Haryana Delhi NCR Submit

Enquiry Form

Full Name*

Course Interested in*

Select Course B.Tech CSE (Computer Science & Engineering) B. Tech ETCE
(Electronics & Telecommunication Engineering) BBA (Bachelor of Business
Administration) BCA (Bachelor of Computer Applications) B.Tech (LEET) MBA
(Master of Business Administration) B.Tech CST (Computer Science Technology)
B.Tech CSE - AI/ML (Artificial Intelligence and Machine Learning) B.Tech CSE -
DS (Data Science) M.Tech (Master of Technology) MCA (Master of Computer
Application)

Email*

Phone Number*

+91

Present State*

Select State Uttar Pradesh Andaman and Nicobar Islands Daman and Diu Dadra and
Nagar Haveli Andhra Pradesh Chhattisgarh Gujarat Jammu and Kashmir Karnataka
Kerala Ladakh Lakshadweep Madhya Pradesh Puducherry Odisha West Bengal Telangana
Tamil Nadu Maharashtra Goa Himachal Pradesh Chandigarh Punjab Rajasthan
Uttarakhand Tripura Sikkim Nagaland Mizoram Meghalaya Manipur Arunachal Pradesh
Assam Jharkhand Bihar Haryana Delhi NCR Submit


ABOUT SAITM



St. Andrews Institute of Technology & Management is a prestigious college in
India located in the industrial hub of India - Gurgaon, Delhi (NCR). SAITM
offers a variety of undergraduate(UG) and postgraduate(PG) courses in the fields
of technology and management. The campus is spread across 22 acres of land and
provides an environment-friendly space with globally acknowledged infrastructure
to accommodate students from across India and other countries. The centrally
air-conditioned classrooms at St. Andrews Institute are equipped with modern
teaching tools to enhance the overall development of students.

 

At SAITM, we believe instilling moral values and ethics is essential to
providing quality education. Therefore, we focus equally on building students'
character as much as their skills. We provide a growth-oriented environment for
students to facilitate personal and professional development. SAITM is Approved
by AICTE, Government of India, New Delhi and Affiliated with Maharshi Dayanand
University, an 'A' Grade state university accredited by NAAC.

 

The highly- experienced and dynamic faculty members at SAITM aim to deliver the
best-in-class education by adopting the new-age teaching methodologies. Having
well-equipped labs and workshops, SAITM provides a comprehensive learning
experience to students and gives almost importance to Practical Training,
Self-learning, Discipline, and Cultural Diversity.

 


BEST-IN-CLASS FACILITIES AT SAITM, GURUGRAM

St. Andrews Institute of Technology & Management provides top-notch facilities
to students ranging from a sports complex, gym, spacious conference halls to
wifi connectivity and a 24*7 infirmary. The students are facilitated by all
means to grow as responsible professionals and citizens of the country. 

Read more ...
Read more

33+ years of excellence in the field of education

51+ well equipped labs and workshops

20+ states students

20:1 student to faculty ratio

22+ acres of lush green campus

5 campuses in Delhi & NCR

6000+ Total enrolled students

250+ highly experienced faculties

20000+ total alumni till 2020.


UPDATES

 * Orientation 2017
   
   
   EVENTS-ORIENTATION 2017
   
   It is always overwhelming to move to a new place and adjust to an unfamiliar
   environment. You have to adapt to your new surroundings and new people around
   you. You have to get accustomed to a new...
   
   

 * Best Engineering college for promoting industry academia interface.
   
   Look for colleges with dedicated centers or programs:
   
   
   
   

 * Delhi Architecture Festival Ranking
   
   There are many awards given in India, recognizing achievement in a wide range
   of fields.
   
   

 * RTF Sustainability Award || St. Andrews
   
   The Architecture of the College Building was awarded 1st rank Internationally
   among the Best student accommodation in the...
   
   

 * Best Institution Award
   
   Awarded by renowned Bollywood Director Mr. Madhur Bhandarkar for the best
   institution in India.
   
   

 * Vice Chairman Shikshak Sang Award
   
   This felicitation is done to individuals for their contribution in the higher
   education field.
   
   

 * Time Engineering Ranking
   
   In the most prestigious "Times Engineering" ranking survey published by the
   national news paper "The Times of India" the...
   
   

 * Republic Day Parade 2004
   
   The institution had won 1st prize among all the performances in the republic
   day parade 2004.
   
   

 * India Today ranking
   
   The college was also ranked in of the most prestigious surveys conducted by
   the INDIA TODAY group, where the college was featured among the top 30 in...
   
   

 * Seminar Halls
   
   Seminar hall rooms are designed to facilitate interaction and face to face
   discussion among students and instructors in...
   
   

 * SAITM Central Library
   
   SAITM central library is the repository of all types of resources for
   students and faculty to gain knowledge.
   
   

 * Conference Room
   
   The Conference Room at SAITM provides facilities and services for academic
   meetings, seminars, events and corporate recruitment procedures.
   
   

 * Classroom
   
   The environment created inside a classroom is very important. Thus, the
   teachers at SAITM ensure that a productive environment is created that helps
   students grow and...
   
   

 * Hostel
   
   The Campus has a separate hostel section for girls and boys located within
   the premises under the management of Hostel Committee.
   
   

 * Transport
   
   St. Andrews Institute, Gurgaon is well-connected with the NCR region and
   offers transport facilities to all students and faculty members at very
   affordable rates. 
   
   

 * B.tech Mechanical Engineering Lab
   
   Mechanical Engineering is one of the broadcast engineering field which deals
   in research, design, develop, build and test mechanical and thermal sensors,
   devices; including tools, engines and machines, using analysis and
   computer...
   
   

 * B.tech Computer Science Engineering Lab
   
   The Computer Science Engineering (CSE) is a computational approach that
   focuses on the basic elements of computer programming & networking.
   
   

 * B.Tech Electronics & Telecommunication Engineering
   
   Engineering is a popular and specialized industry. Electronics Engineers
   design, develop and test components, devices, systems or equipment that use
   electricity as part of their source of power.
   
   

 * Kabaddi Court
   
   St. Andrews has all the latest ports facilities at the campus. Kabaddi helps
   in maintaining proper balance between physical...
   
   

 * Basket Ball
   
   Playing various games was never so easy as SAITM has all standard courts in
   the campus. Regular tournaments help build the competition but sports
   helps...
   
   

 * Football
   
   Football is a family of team sports that involve, to varying degrees, kicking
   a ball with a foot to score a goal. The students have access to standard...
   
   

 * B.Tech Civil Engineering Lab
   
   Civil Engineering is one of the most popular engineering discipline that
   involves construction, maintenance and innovative design of facilities
   essential to modern life like space satellites and launching facilities,
   offshore...
   
   

 * SAITM Labs & Workshops
   
   The way you can't learn to ride a bike by reading its manual, a professional
   is not completely ready without proper...
   
   

 * Cafeteria
   
   Pursuing higher education is a tough task for young boys & girls. In most
   cases, it requires relocation to an entirely...
   
   

 * Gym
   
   A wide selection of cardio equipment, free weights, dumbbells, benches, and
   exercise machines are available...
   
   

 * Sports
   
   Sports education not only familiarizes students about the importance of
   maintaining physical stamina, but it helps them to...
   
   

 * Table Tennis
   
   A standard table tennis is available in hostel premise for the students to
   play their favourite game. Competition and...
   
   

 * Carrom
   
   SAITM has all inhouse facilities available for indoor games. Facilities
   include material for games like chess, carrom,...
   
   

 * Online Grievance Redressal System
   
   An online grievance redressal system is a digital platform designed to
   address complaints, feedback, and grievances from individuals or entities
   regarding...
   
   

 * British Telecom
   
   
   EVENTS-BRITISH TELECOM
   
   It’s easy – perhaps too easy – to think organisations fall into two neat
   categories when it comes to cloud strategy.
   The first ‘easy’ category is a hybrid cloud...
   
   

 * Dyson
   
   
   EVENTS-DYSON
   
   Dyson Ltd (Dyson), a subsidiary of Dyson UK Holdings Ltd, designs,
   manufactures and commercializes electric domestic appliances. The company’s
   product portfolio comprises of vacuum cleaners, robot...
   
   

 * Tech Mahindra
   
   
   EVENTS-TECH MAHINDRA
   
   Tech Mahindra offers innovative and customer-centric digital experiences,
   enabling enterprises, associates, and society to Rise for a more equal world,
   future readiness, and value creation. It is a USD...
   
   

 * Orientation 2018
   
   
   EVENTS-ORIENTATION 2018
   
   It is always overwhelming to move to a new place and adjust to an unfamiliar
   environment. You have to adapt to your new surroundings and new people around
   you. You have to get accustomed to a new...
   
   

 * Freshers 2017
   
   
   EVENTS-FRESHERS 2017
   
    
   *Fresher's Party 2017* There was a fun...
   
   

 * Orientation 2017
   
   
   EVENTS-ORIENTATION 2017
   
   It is always overwhelming to move to a new place and adjust to an unfamiliar
   environment. You have to adapt to your new surroundings and new people around
   you. You have to get accustomed to a new...
   
   

 * Best Engineering college for promoting industry academia interface.
   
   Look for colleges with dedicated centers or programs:
   
   
   
   


view all updates


NEWS & EVENTS

Advertisement for Recruitment - 2023

Recruitment 2023

Read more...

Non -Teaching Staff Qualification (MDU)

Non -Teaching Staff...

Read more...

Advertisement for recruitment 2022

Recruitment 2022

Read more...
view all news


OUR BLOGS

AICTE Approved University

In the modern times, technical courses are very popular and high...

Read more...

Application Form

Application form, often misspelled as application form, is one...

Read more...

After 12 Courses

It is completely obvious that those who are in 12th standard...

Read more...
view all blogs

Testimonials

What students have to say about us

 * My journey with SAITM was amazing and I got so many opportunities to explore
   the outer...
   
   Sudha Singh
   
   Read More...
   
   My journey with SAITM was amazing and I got so many opportunities to explore
   the outer world and prepare for the career perspective. No doubt, the
   teaching pedagogy has been designed in such a way that it will enhance in
   such a way you look at technology today.
   
   Sudha Singh

 * The decision of 4 years of choosing SAITM will result in the rest of 40 years
   of life....
   
   Rajnish Kumar
   
   Read More...
   
   The decision of 4 years of choosing SAITM will result in the rest of 40 years
   of life. The mentors at SAITM helped us to enhance my academic and
   interpersonal skills. The regular interaction with the Placement team also
   encouraged me to excel in my interview and developing skills that are
   required for future use.
   
   Rajnish Kumar

 * The best part of SAITM is its faculty. I was lucky enough to have some of the
   best...
   
   Tushar Arora
   
   Read More...
   
   The best part of SAITM is its faculty. I was lucky enough to have some of the
   best faculties with years of industry experience that are ever willing to
   mentor students. The campus is self contained and is fully wifi enabled with
   LAN connections in every hostel room. The course is designed to make students
   industry-ready by the time they graduate. Overall it is a great learning
   experience!
   
   Tushar Arora

 * I find the fee structure for this college quite reasonable given the quality
   of...
   
   Monika Dahal
   
   Read More...
   
   I find the fee structure for this college quite reasonable given the quality
   of education and exposure that is provided to the students.Also training and
   workshops are free of cost and included in the fee structure. Placements are
   good. And faculties are very helpful and knowledgeable.
   
   Monika Dahal

 * The experience at SAITM was enriching in terms of technical skills and
   research. The...
   
   Mohd Anas
   
   Read More...
   
   The experience at SAITM was enriching in terms of technical skills and
   research. The teaching style was very much impressive. I would say SAITM has
   taught me a lot of technical skills and great references to get me into the
   prestigious corporates from which I shaped my career as per my interest.
   SAITM proved to be a very well executed precursor in my career growth.
   
   Mohd Anas

 * The campus is on a 22 acre . Good enough. College buildings and hostels are
   very well...
   
   Ayush
   
   Read More...
   
   The campus is on a 22 acre . Good enough. College buildings and hostels are
   very well maintained.The college administration takes care of the “look of
   the college” pretty well. Lots of greenery and peace!
   
   Ayush

 * SAITM is my second home. I have built great relationships with classmates
   and...
   
   Lakshay Sethia
   
   Read More...
   
   SAITM is my second home. I have built great relationships with classmates and
   faculties. Being at SAITM has been an amazing experience for me that has
   helped me grow personally and professionally as I got multiple job offers
   from top class multi national companies like Skolar, Decimal Technologies,
   Akash+Byju's and NIIT.
   
   Lakshay Sethia

 * I have had a very good experience at SAITM. The campus environment and class
   schedule...
   
   Prashant Jha
   
   Read More...
   
   I have had a very good experience at SAITM. The campus environment and class
   schedule are very convenient. The hands on teaching style provides good
   learning opportunities which helped me to bagged the campus placement offer
   from TCS.
   
   Prashant Jha

 * I'm very much thankful to the T & P Dept. for providing the campus
   placement...
   
   Supriya Yadav
   
   Read More...
   
   I'm very much thankful to the T & P Dept. for providing the campus placement
   opportunities and showing the right path to start my career before completion
   of my graduation. The college placement cell had always been available to
   offer a helping hand to students and look for the best options available in
   the market for their students.
   
   Supriya Yadav

 * My journey with SAITM was amazing and I got so many opportunities to explore
   the outer...
   
   Sudha Singh
   
   Read More...
   
   My journey with SAITM was amazing and I got so many opportunities to explore
   the outer world and prepare for the career perspective. No doubt, the
   teaching pedagogy has been designed in such a way that it will enhance in
   such a way you look at technology today.
   
   Sudha Singh

 * The decision of 4 years of choosing SAITM will result in the rest of 40 years
   of life....
   
   Rajnish Kumar
   
   Read More...
   
   The decision of 4 years of choosing SAITM will result in the rest of 40 years
   of life. The mentors at SAITM helped us to enhance my academic and
   interpersonal skills. The regular interaction with the Placement team also
   encouraged me to excel in my interview and developing skills that are
   required for future use.
   
   Rajnish Kumar

 * The best part of SAITM is its faculty. I was lucky enough to have some of the
   best...
   
   Tushar Arora
   
   Read More...
   
   The best part of SAITM is its faculty. I was lucky enough to have some of the
   best faculties with years of industry experience that are ever willing to
   mentor students. The campus is self contained and is fully wifi enabled with
   LAN connections in every hostel room. The course is designed to make students
   industry-ready by the time they graduate. Overall it is a great learning
   experience!
   
   Tushar Arora

 * I find the fee structure for this college quite reasonable given the quality
   of...
   
   Monika Dahal
   
   Read More...
   
   I find the fee structure for this college quite reasonable given the quality
   of education and exposure that is provided to the students.Also training and
   workshops are free of cost and included in the fee structure. Placements are
   good. And faculties are very helpful and knowledgeable.
   
   Monika Dahal

 * The experience at SAITM was enriching in terms of technical skills and
   research. The...
   
   Mohd Anas
   
   Read More...
   
   The experience at SAITM was enriching in terms of technical skills and
   research. The teaching style was very much impressive. I would say SAITM has
   taught me a lot of technical skills and great references to get me into the
   prestigious corporates from which I shaped my career as per my interest.
   SAITM proved to be a very well executed precursor in my career growth.
   
   Mohd Anas

 * The campus is on a 22 acre . Good enough. College buildings and hostels are
   very well...
   
   Ayush
   
   Read More...
   
   The campus is on a 22 acre . Good enough. College buildings and hostels are
   very well maintained.The college administration takes care of the “look of
   the college” pretty well. Lots of greenery and peace!
   
   Ayush




REVIEWS & RATINGS

Our exceptional rankings from around the web

 * Facebook Ratings 4.6

 * Google Ratings 4.3

 * College Search Ratings 4.8

 * College Dunia Ratings 4.6


OUR TOP RECRUITERS

 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 


BE AT SAITM BEST IN INDUSTRY FACILITIES

The college is situated in the heart of the city. Apart from being the Garden
City, Gurgaon is now the natural choice and preferred destination for students
from different parts of the country to pursue professional education, be it in
Engineering, Medicine or any other field.


SAITM DELHI NCR | TOP ENGINEERING COLLEGE IN DELHI NCR

Classrooms

Hostel

Sports & Gym


FREQUENTLY ASKED QUESTIONS

1. How do I register for orientation?

A link will be sent to you on your email and registered phone no. Students have
to fill the form through that link and a confirmation call will be given by the
college to all the students who have registered.



2. Is any financial support given to the students who enroll?

Scholarships are being provided to eligible students. The details are mentioned
in the scholarship column.



3. How to get an education loan?

The college (SAITM) steps forward to support students by providing all the
documents required from the college/University for issuing of loan from any
bank.

SAITM has collaborations with the State Bank of India & Punjab National Bank for
the same. Many NBFC's are also availaable for education loan at SAITM.



4. What kind of Scholarships are available?

Scholarships are provided on the following basis:

 1. Class XII marks (percentage). A slab has been made and scholarships are
    given in the form of fee waiver seats at the time of admission to the
    students.
 2. Cash scholarships are given to the university rank-holders from time to
    time. 
 3. Scholarships are given to the students belonging to SC, ST, and OBC as per
    state/central government policies.



5. Why SAITM is charging lower fees as compared to other private institutions?

SAITM is in the education sector for 28+ years and understands the importance of
education. We cater to the need of society by graduating young minds who cannot
afford higher fees as per the mission of SAITM.



6. Fee structure of B.Tech?

The fee payable for B.tech is INR 47,500/- per semester.



7. Fee structure of BBA & BCA?

The fee payable for BBA is INR 37,500/- per semester.

The fee payable for BCA is INR 37,500/- per semester.



8. What are the job prospects in B.Tech?

Quality engineers are in high demand everywhere and in every sector be it
banking, manufacturing, or aviation, whether within our borders or abroad. As
the growth pace of the IT industry is consistently high, there are several
career opportunities for B.Tech graduates. India is a particularly important
outsourcing hub for clients from different parts of the world. There are plenty
of jobs for everyone in posts such as:

Website Developer

Software Engineer/Programmer

Software Designer

Research Analyst



9. What is better a degree or a diploma?

A degree in any specialized course opens wider career options than a diploma.



10. What is better BBA or B.com?

BBA programme provides different roles in all sectors across all the domains.
B.com offers the opportunities majorly in accounts department. BBA is a
professional degree course in comparison of B.com which is a normal degree
course.



11. What are the job prospects in BBA?

BBA graduates can opt for roles in business management and sales. Some companies
also offer roles of production supervisor, planner, and administrator to BBA
graduates.

BBA graduates usually get hired by companies that are involved in the business
of manufacturing, construction, retail, IT, and finance. They can also apply for
various government jobs. Some of the esteemed job profiles you can attain after
successful completion of BBA are:

Finance Manager

Business Administration Researcher

Human Resource Manager

Research and Development Manager

Business Consultant

Information Systems Manager

Marketing Manager

Some of the polished areas where a BBA graduate can look for employment are:

Banks

IT Firms

Marketing Organizations

Educational Institutes

Business Consultancies

Multinational Companies

Financial Organizations

Export Companies



12. What are the jobs prospects in BCA?

Students usually start as a Junior Programmer or a Software Tester and then move
higher up the ranks to the role of a Senior Programmer. The IT industry is
booming in India and you can find many companies with vacancies for BCA
graduates.

Though the BCA program gives students good exposure to technologies, it is
advisable for students to pursue MCA to give their career a wise push. After
graduation, a student with a B.Tech degree has greater job opportunities than a
student with a BCA. Still, junior programming positions and software testing
jobs are available to BCA graduates and from there, students can climb up.



13. How to enrol for admission at SAITM?

Students can enrol for admission at SAITM by filling an application form.
Students can either apply online or offline. The details are available on the
admission page. 



14. What scholarships are provided at SAITM?

Scholarships are provided on the following basis:

 1. Class xii marks (percentage). A slab has been made and scholarships are
    given in the form of fee waiver seats at the time of admission to the
    students.
 2. Cash scholarships are given to the university rank-holders from time to
    time. 
 3. Scholarships are given to the students belonging to SC, ST, and OBC as per
    state/central government policies.



15. What is the eligibility criteria for B.Tech?

10+2 with Physics and Mathematics as compulsory subjects along with one of the
following subjects: (a) Chemistry (b) Bio-Technology (c) Biology/ Technical
Vocational subject and minimum 45% aggregate marks from a recognized
board/university.



16. What is the eligibility for criteria BBA & BCA?

10+2 with 45% aggregate marks from a recognized board. (42.75% marks for SC/ST
candidates of Haryana only)



17. Difference between BCA & B.sc (computer science)?

BSc Computer Science is more concept-oriented while BCA is application-oriented.
BCA course will teach you about emerging technologies and their applications
while giving you a basic idea of commonly used programming languages. However,
the B.Sc (CS) course would focus more on theoretical concepts.



18. What is difference between B.Tech & B.E?

The B.Tech. program is more practical-oriented than the BE program which is more
theoretical. B.E. is more associated with theoretical ideas and principles,
while B. Tech. is more focused on the practical implementation of those
theories. However, the curriculum for B.E. and B.Tech courses offered by
different engineering colleges and institutes is more or less the same.
Employers place equal importance on both degrees.



19. What after 12th BBA or BCA?

Students should choose the UG program as per their interests. Students who are
interested in management studies should opt for BBA and those who are more into
technologies should choose BCA.



20. Which is better BCA or B.Tech?

Both are professional UG programs and have their own importance. BCA is a 3-year
degree program whereas B.Tech is a 4-year degree program. BCA mainly focuses on
the study of computer applications whereas B.Tech has several specializations
and the area of study depends on the chosen stream.



21. Who will address the orientation?

The respectable fraternity of the corporates is invited to address the
orientation. They motivate and guide the newly enrolled students for their
future. They ignite the passion in the students’ minds towards their future
goals.



22. How will I get all the information regarding orientation and commencement of
the session?

All the information about orientation and other events conducted in the college
is provided to the students and parents from time to time via mail, calls, and
text messages on their registered contact numbers provided by the students at
the time of admission.



23. Does orientation costs anything me to?

No, there are no charges for attending the Orientation Ceremony at SAITM for the
enrolled students. Parents are also invited for the same.



24. Is it mandatory to attend orientation?

Yes, it is mandatory to attend the orientation that takes place before the start
of an academic year at the institution. A variety of events are held to orient
and welcome new students. On this day, students get to know more about the
college, events, and facilities provided by the college.



25. Can I choose my session date or change as per my reservations?

The session date is decided in advance and students are informed about the same
through various modes such as mail, call, text message a month before. Hence,
the students are advised to make reservations according to the dates given by
the college.



26. Fee structure of MBA and Global MBA?

The fees payble for Global MBA is INR 2,95,000/- for 2 years.

The fees payble for MBA is INR 2,50,000/- for 2 years.



27. What are the job prospects in MBA/Global MBA?

MBA/Global MBA opens the diversity opportunities to work in various sector.
These opportunities can be in the domain of:

 * Marketing : Channel Management, Retail Management, Market Research, Digital
   Marketing, Media Sales, Pre Sales.
 * HR : HR Analytics, Talent Acquisition, HR Business Partner, Compensation and
   Reward Management, Industrial Relations and Labour Laws.
 * Finance : Investment Banking, Equity Research, Commercial Credit, Corporate
   Finance, Finance Quality Management
 * Business Analytics



28. How to enrol for admission in Global MBA Program at SAITM?

Steps of enroling for Global MBA program at SAITM:

 * Filling up Application form
 * Appearing for personal interview round
 * Final Selection
 * Paying registration fees Rs.25000/- within 7 days of getting admission call



29. What is the eligibility criteria for MBA/Global MBA?

Graduation from UGC recognised university with 50% aggregate marks. 47.5% marks
in case of SC/ST candidate.



30. What are the salient features of Global MBA Program?

Salient Features:

 * Approved by AICTE and affiliated to MDU, NAACA+
 * Grooming Professionals for Industry 4.0
 * Global connects for career tracks in new-age areas.
 * Dual Specialization
 * Domain specialist FacultyTechno - Managerial - Content
 * Curriculum with cutting-edge technology
 * Profile Based Training
 * 8 Value Added Certifications with 6 Core Certifications
 * Seminars/Workshops
 * Live ProjectsPaid Winter/Summer Internship/OJT
 * 100% International Placement Assistance
 * High ROI
 * Art of Infrastructure with Cutting Edge Creativity



31. What are the advantages of Global MBA?

Advantages of Global MBA:

 * Immersion Program to Dubai
 * Free Personal Laptop
 * Mentoring by International industry professionals
 * Foriegn Language classes
 * international Placement opportunities
 * Value added training Certifications & Workshops

 



32. Details of Value Added Training Certifications & Workshops in Global MBA?

Value added training Certifications & Workshops in Global MBA:

 * Microsoft Package (Basic & advance Excel)
 * Data Visualization
 * Digital marketing
 * Certification in Wealth management & Financial planning
 * Financial Derivatives
 * personality Grooming and Image Building
 * Aptitude
 * Recruitment Process
 * SAP / ERP



Contact Us
SAITM College

ADDRESS

Khurrampur, Farrukh Nagar, Haily Mandi Road, Gurgaon, Delhi (NCR), 122506

MOBILE NUMBER

8505937772

EMAIL ID

admissions@saitm.org

CORPORATE OFFICE

 * St. Andrews, 9th Avenue, IP extention, Patparganj Delhi-110092
 * (+91) 8505937772
 * admissions@saitm.org

ABOUT US

   
 * Overview
   
   
 * Approval & Affiliation
   
   
 * Awards & Achievements
   
   
 * Message From Leadership
   
   
 * Our Legacy
   

ADMISSIONS

 * Overview
 * Process: How to Apply
 * Eligibility
 * Fee Structure
 * Payment Procedure
 * FAQs
 * Apply Now
 * MBA Application
   

ACADEMICS

 * Overview
 * Teaching Methodologies
 * Academics Calendar
 * Examinations
 * Technical Trainings
 * Syllabus
 * Rules & Regulations
 * Grievance Redressal Portal
 * Research And Development (R&d) Cell

OTHER LINKS

   
   
 * Life At SAITM
 * Events & Updates
 * Career
 * FAQs
 * Blog
 * Contact Us
 * Privacy Policy
 * Terms & Conditions
 * Refund Policy
   

IMPORTANT LINKS

 * IQAC
 * Balance Sheet 2022-2023
 * Balance Sheet 2021-2022
 * Balance Sheet 2020-2021
 * Recruitment Policy
 * Promotional Policy
 * Faculty Appraisal Policy
 * List of Committee
 * BoG MoMs

Copyright © 2023

Design & Developed by Voxturr Consulting Pvt. Ltd.

Apply Now
Call Now