Skip to main content

BE/B.Arch प्रवेश परीक्षा सूचना

अन्ततः IOE ले BE/B.Arch प्रवेश परीक्षाको मिति सार्वजनिक गरेको छ । संशोधित शुल्क संरचना सहित कार्तिक १४,२०८० मा आयोजना हुनेछ ।नियमित लागि शुल्क 56,700, पूरा शुल्क 4,90,000 र विदेशी विद्यार्थीहरूको लागि 13,13,500 निर्धारण गरिएको छ। 


यदि कुनै विद्यार्थीले यसअघि फारम भर्न छुटेका छन् भने उनीहरूले असोज २२ देखि असोज २४ गतेसम्म भर्न सक्नेछन्। प्रवेश परीक्षासम्बन्धी विस्तृत सूचना असोज २१ गते प्रवेश परीक्षा बोर्डको वेबसाइट entrance.ioe.edu.np मा प्रकाशित गरिनेछ।






Comments

Popular posts from this blog

Software Process Model(SPM)

  Explain spiral development model with advantages and disadvantages The Spiral Development Model is a risk-driven software development approach that combines iterative and waterfall models. It involves repeated cycles (or spirals) to incrementally refine the software project. Each spiral consists of four major phases: Planning , Risk Analysis , Engineering , and Evaluation .                                                           Fig: Spiral Software development model Phases in the Spiral Model: Planning : Requirements are gathered and objectives are set for the project. Risk Analysis : Risks are identified, analyzed, and mitigation strategies are developed. Develop/Engineering : The actual development and testing of the product take place. Evaluation : Stakeholders/users review the progress and provide feedback, inf...

Solution of NEB model quetions

 solution to model questions are : 

DBMS-SQL

SQL DDL and DML Examples Examples of DDL (Data Definition Language) and DML (Data Manipulation Language) commands in SQL. DDL (Data Definition Language) Examples: 1. Create a new database: CREATE DATABASE SchoolDB;  2. Create a table: CREATE TABLE Students ( StudentID INT PRIMARY KEY, FirstName VARCHAR(50), LastName VARCHAR(50), Age INT );  3. Alter a table to add a new column: ALTER TABLE Students ADD Email VARCHAR(100);  4. Drop a table: DROP TABLE Students;  5. Rename a table: ALTER TABLE OldTableName RENAME TO NewTableName;  DML (Data Manipulation Language) Examples: 1. Insert data into a table:  INSERT INTO Students (StudentID, FirstName, LastName, Age) VALUES (1, 'John', 'Doe', 20);  2. Update data in a table: UPDATE Students SET Age = 21 WHERE StudentID = 1;  3. Delete data from a table: DELETE FROM Students WHERE StudentID = 1;  4. Select data from a table: SELECT * FROM Students;  5. Select data with conditions: SELECT FirstName...