Skip to main content

Posts

Optimization Theory (Question Bank)

                                               Question Bank      Optimization Theory What is operations research? Explain the scope of OR. List the phases of OR and explain them. Define the following:             a. Feasible region.             b. Feasible solution.             c. Optimal solution.                   d. Unbounded solution. e.        Artificial variable. What is the difference between feasible solution and basic feasible solution? Define What are the two forms of a LPP? Explain in detail. What do you mean by standard form of LPP? What do you mean by canonical form of LPP? What are the limitations of LPP? What are the slack and surplus variables? What is meant by optimality? What are the methods used to solve an LPP involving artificial variables?      Explain various steps of the simplex method involved in the computation of an optimum solution to a linear programming problem. What is simplex

Operational Research Society of India

One of the major one in   India is  Operational Research Society of India. I t  was  founded in 1957 to provide a forum for the Operational Research Scientists as  well as an avenue to widen their horizon by exchange  of knowledge and application of techniques from outside the country.  To further that end, the Society is affiliated to the International  Federation of Operational Research Societies (IFORS). The  headquarters  of the Society is located in Kolkata at 39,  Mahanirvan Road , Kolkata 700029, India . At present the Society has  twelve operating chapters  located in  Agra , Ahmedabad ,  Ajmer ,  Bangalore ,  Chennai ,  Delhi ,  Durgapur ,  Jamshedpur ,  Kolkata ,  Madurai , Mumbai  and  Tirupati . The objectives of  the Society comprise advancement of, conducting of research in, study of,  promotion and propagation of knowledge in Operational Research and  allied techniques through exchange of information, establishment and  maintenance of professional and academic stand

Lecture Notes on Operational Research topics

Hello Students In upcoming blog posts I will be blogging more on Operational Research topics. Major ones are: Linear Programming, Applications Areas of Linear Programming, General Mathematical Model of Linear Programming Model, Guidelines on Linear Programming Model Formulation, Examples of LP Model Formulation. Linear Programming- The Graphical Method: Introduction, Important Definitions, Graphical Solution Methods of LP Problem. Linear Programming- The Simplex Method: Introduction, Standard Form of an LP Problem, Simplex Algorithm (Maximization Case), Simplex Algorithm (Minimization Case). Duality in Linear Programming: Introduction, Formulation of Dual Linear Programming Problem, Standard Results on Duality, Managerial Significance of Duality, Advantages of Duality. Integer Linear Programming: Introduction, Types of Integer Programming Problems, Enumeration and Cutting Plane Solution Concept, Gomory’s All Integer Cutting Plane Method, Gomory’s Mixed- Integer Cuttin

Lecture Notes MIS

Some of the popular MIS posts MIS POST http://lecture-notes-forstudents.blogspot.com/2010/04/system-analysis-and-design-sad.html http://lecture-notes-forstudents.blogspot.com/2010/04/types-of-information-system.html http://lecture-notes-forstudents.blogspot.com/2010/04/mis-and-system-analysis.html http://lecture-notes-forstudents.blogspot.com/2010/04/mis-and-system-analysis.html

Some questions from OS LAB

SET A Operating System Lab Quiz 1. Create a DOS batch file student.bat that examines the batch parameter %1 through %3. If a parameter is defined display the parameter’s value. If the parameter is not defined display an appropriate error message. [3] 2. Answer the following questions with respect to DOS: [3] 1. Which commands place entries in the environment? 2. How can you use SET to change your command prompt? 3. What is the function of REN command 4. what is purpose of pause command 5. How does Echo off affect pause? 3. Given the output of following: [4] 1. rm file * 2. wc < file1 3. ls|wc –l > file 4. mkdir abc|data abc|data2 abc Set B 1. Create a DOS batch file student.bat that examines the batch parameter %1 through %3. If a parameter is defined display the parameter’s value. If the parameter is not defined display an appropriate error message. [2] 2. Answer the following with respect to DOS [3]: 1. How do you change existing environ

XML Attributes

From HTML you will remember this: < IMG SRC="comp.gif" >. The SRC attribute provides additional information about the IMG element. In HTML (and in XML) attributes provide additional information about elements: < img src="computer.gif" > < a href="demo.asp" > Attributes often provide information that is not a part of the data. In the example below, the file type is irrelevant to the data, but important to the software that wants to manipulate the element: < file type="gif" > computer.gif < /file > Students now u know abt basic XML, its scripting rules. Lets understand XML attributes which can be understood as property of an element. Here are simple rules for XML elements Quote Styles, "female" or 'female'? Attribute values must always be enclosed in quotes, but either single or double quotes can be used. For a person's sex, the person tag can be written like this: < person se