Categories
question bank

EC6301 Object Oriented Programming and Data Structures Question Bank Regulation 2013 Anna University

EC6301 Object Oriented Programming and Data Structures Question Bank

EC6301 Object Oriented Programming and Data Structures Question Bank Regulation 2013 Anna University free download. Object Oriented Programming and Data Structures EC6301 Question Bank pdf free download.

Sample EC6301 Object Oriented Programming and Data Structures Question Bank:

PART A 2 marks

1. What are the features of Object Oriented P rogramming?

2. List out some of the benefits of OOP.

3. What is the use of scope resolution operator?

4. List out the advantages of new operator over malloc ().

5. What are the control structures used in C++? (ec6301 object oriented programming and data structures question bank)

6. State the difference between structures and class.

7. Define a class.

8. List the access modes used within a class.

9. What are the characteristics of member functions?

10. What are the properties of a static data member? (ec6301 object oriented programming and data structures question bank)

11. What are the properties of a static member function?

12. How can objects be used as function arguments?

13. Define friend function?

14. Define Constructor.

15. List some of the special cha racteristics of constructor. (ec6301 object oriented programming and data structures question bank)

16. Give the various types of constructors.

17. What are the ways in which a constructor can be called?

18. Define Destructor.

19. Give the general form of an operator function.

20. What are the types of type conversions?

PART B 16 marks (ec6301 object oriented programming and data structures question bank)

1. Explain with the Basic Concepts of object oriented programming.

2. Describe the applications of OOP technology.

3. What is a structure and explain the members of structure with an example program.

4. What is function overloading? Explain with an example program.

5. Briefly explain operator overloading with an example.

6. What is friend function? What is the use of using friend functions in c++?

Subject Name Object Oriented Programming and Data Structures
Subject Code EC6301
Regulation 2013

EC6301 Object Oriented Programming and Data Structures Question Bank click here to download

EC6301 Object Oriented Programming and Data Structures Syllabus


EC6301 Object Oriented Programming and Data Structures Notes


EC6301 Object Oriented Programming and Data Structures Important questions


 

 

Categories
Important question

EC6301 Object Oriented Programming and Data Structures important questions Regulation 2013 Anna University

EC6301 Object Oriented Programming and Data Structures important questions

EC6301 Object Oriented Programming and Data Structures important questions Regulation 2013 Anna University free download. Object Oriented Programming and Data Structures EC6301 important questions pdf free download.

Sample EC6301 Object Oriented Programming and Data Structures important questions:

1. Difference between Class and structure? [April -2010, Dec-2012]

Class is the ADT where as structure is udt. Class needs access specifier such as private, public & private where as structure members can be accessed by public by default & don’t need any accessfiers. Class is oops where structure is borrowed from traditional structured [pop] concept.

2. What is abstract Class? [Nov-2009]

An abstract class is a class that is designed to be specifically used as a base class. An abstract class contains at least one pure virtual function. You declare a pure virtual function by using a pure specifier [= 0] in the declaration of a virtual member function in the class declaration. (EC6301 Object Oriented Programming and Data Structures important questions)

3. List out the advantages of new operator over malloc[] [Dec-2012]

It automatically computes the size of the data object.
It automatically returns the correct pointer type
It is possible to initialize the objects while creating_ the memory space.
It can be overloaded.

4. What are the basic concepts of OOS? [ April -2011]
Objects.
Classes.
Data abstraction and Encapsulation.
Inheritance.
Polymorphism.
Dynamic binding.
Message passing (EC6301 Object Oriented Programming and Data Structures important questions)

5. What is the difference between local variable and data member? [Nov-2011]

A data member belongs to an object of a class whereas local variable belongs to its current scope. A local variable is declared within the body of a function and can be used only from the point at which it is declared to the immediately following closing brace. A data member is declared in a class definition, but not in the body of any of the class member functions. Data members are accessible to all member function of the class. (EC6301 Object Oriented Programming and Data Structures important questions)

Subject Name Object Oriented Programming and Data Structures
Subject Code EC6301
Regulation 2013

EC6301 Object Oriented Programming and Data Structures Important questions click here to download

EC6301 Object Oriented Programming and Data Structures Syllabus


EC6301 Object Oriented Programming and Data Structures Notes


EC6301 Object Oriented Programming and Data Structures Question Bank


 

Categories
r2013 notes

EC6301 Object Oriented Programming and Data Structures Notes Regulation 2013 Anna University

EC6301 Object Oriented Programming and Data Structures Notes

EC6301 Object Oriented Programming and Data Structures Notes Regulation 2013 Anna University free download. Object Oriented Programming and Data Structures EC6301 Notes pdf free download.

OBJECTIVES: EC6301 Object Oriented Programming and Data Structures Notes

• To comprehend the fundamentals of object oriented programming, particularly in C++.

• To use object oriented programming to implement data structures.

• To introduce linear, non-linear data structures and their applications.

OUTCOMES: EC6301 Object Oriented Programming and Data Structures Notes

Upon completion of the course, students will be able to:

Explain the concepts of Object oriented programming.

Write simple applications using C++.

Discuss the different methods of organizing large amount of data.

TEXT BOOKS: EC6301 Object Oriented Programming and Data Structures Notes

1. Deitel and Deitel, “C++, How To Program”, Fifth Edition, Pearson Education, 2005.

2. Mark Allen Weiss, “Data Structures and Algorithm Analysis in C++”, Third Edition, Addison-Wesley, 2007.

REFERENCES: EC6301 Object Oriented Programming and Data Structures Notes

1. Bhushan Trivedi, “Programming with ANSI C++, A Step-By-Step approach”, Oxford University Press, 2010.

2. Goodrich, Michael T., Roberto Tamassia, David Mount, “Data Structures and Algorithms in C++”, 7th Edition, Wiley. 2004.

3. Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest and Clifford Stein, “Introduction to Algorithms”, Second Edition, Mc Graw Hill, 2002.

4. Bjarne Stroustrup, “The C++ Programming Language”, 3rd Edition, Pearson Education, 2007.

5. Ellis Horowitz, Sartaj Sahni and Dinesh Mehta, “Fundamentals of Data Structures in C++”, Galgotia Publications, 2007.

Subject Name Object Oriented Programming and Data Structures
Subject Code EC6301
Regulation 2013

EC6301 Object Oriented Programming and Data Structures Notes click here to download

EC6301 Object Oriented Programming and Data Structures Syllabus


EC6301 Object Oriented Programming and Data Structures Important questions


EC6301 Object Oriented Programming and Data Structures Question Bank

Categories
UG syllabus R 2013

EC6301 Object Oriented Programming and Data Structures Syllabus Regulation 2013 Anna University

EC6301 Object Oriented Programming and Data Structures Syllabus

EC6301 Object Oriented Programming and Data Structures Syllabus Regulation 2013 Anna University free download. Object Oriented Programming and Data Structures EC6301 Syllabus pdf free download.

UNIT I DATA ABSTRACTION & OVERLOADING EC6301 Object Oriented Programming and Data Structures Syllabus

Overview of C++ – Structures – Class Scope and Accessing Class Members – Reference Variables – Initialization – Constructors – Destructors – Member Functions and Classes – Friend Function – Dynamic Memory Allocation – Static Class Members – Container Classes and Integrators – Proxy Classes – Overloading: Function overloading and Operator Overloading.

UNIT II INHERITANCE & POLYMORPHISM EC6301 Object Oriented Programming and Data Structures Syllabus

Base Classes and Derived Classes – Protected Members – Casting Class pointers and Member Functions – Overriding – Public, Protected and Private Inheritance – Constructors and Destructors in derived Classes – Implicit Derived – Class Object To Base – Class Object Conversion – Composition Vs. Inheritance – Virtual functions – This Pointer – Abstract Base Classes and Concrete Classes – Virtual Destructors – Dynamic Binding.

UNIT III LINEAR DATA STRUCTURES EC6301 Syllabus Object Oriented Programming and Data Structures

Abstract Data Types (ADTs) – List ADT – array-based implementation – linked list implementation –– singly linked lists –Polynomial Manipulation – Stack ADT – Queue ADT – Evaluating arithmetic expressions

UNIT IV NON-LINEAR DATA STRUCTURES EC6301 Object Oriented Programming and Data Structures Syllabus

Trees – Binary Trees – Binary tree representation and traversals – Application of trees: Set representation and Union-Find operations – Graph and its representations – Graph Traversals – Representation of Graphs – Breadth-first search – Depth-first search – Connected components.

UNIT V SORTING and SEARCHING EC6301 Object Oriented Programming and Data Structures Syllabus

Sorting algorithms: Insertion sort – Quick sort – Merge sort – Searching: Linear search –Binary Search

Subject Name Object Oriented Programming and Data Structures
Subject Code EC6301
Regulation 2013

EC6301 Object Oriented Programming and Data Structures Syllabus click here to download

EC6301 Object Oriented Programming and Data Structures Notes


EC6301 Object Oriented Programming and Data Structures Important questions


EC6301 Object Oriented Programming and Data Structures Question Bank


 

Categories
question bank

EE6352 Electrical Engineering and Instrumentation Question Bank Regulation 2013 Anna University

EE6352 Electrical Engineering and Instrumentation Question Bank

EE6352 Electrical Engineering and Instrumentation Question Bank Regulation 2013 Anna University free download. Electrical Engineering and Instrumentation EE6352 Question Bank pdf free download.

Sample EE6352 Electrical Engineering and Instrumentation Question Bank:

1. State Faraday’s law of Electro magnetic induction and Lenz law.

2. Mention the following functions in DC Machine (i) Commutator (ii) Brushes (iii) Yoke (iv) Field coils. (ee6352 electrical engineering and instrumentation question bank)

3. What are the main constructional element of a DC Machine?

4. What is meant by excitation of dc machine? What are the different methods for the excitation of DC Machine?

5. What are the necessary conditions for the generators to be self excited?

6. Mention any 2-popular methods for the speed control of DC Shunt motor.

7. What is meant by motor ? How the Faraday’s Left hand rule is used explain it.

8. Define critical resistance of a dc generator? (ee6352 electrical engineering and instrumentation question bank)

9. List the different method of speed control of DC Shunt motor?

10. In speed control of DC Shunt Motor how the armature control method is distinguished with field control method.

11. What are the different techniques used for the speed control of DC Series Motor? (ee6352 electrical engineering and instrumentation question bank)

12. Write the formulae for voltage equation of a DC Motor.

13. What is meant by armature reaction?

14. Write the formulae for generated emf of a Generator.

15. State two applications of DC shunt motor and series motor.

16. What is the significance of back emf Motor?

17. List the different variable and constant losses in electrical machine.

Subject Name Electrical Engineering and Instrumentation
Subject Code EE6352
Regulation 2013

EE6352 Electrical Engineering and Instrumentation Question Bank click here to download

EE6352 Electrical Engineering and Instrumentation Syllabus


EE6352 Electrical Engineering and Instrumentation Notes


EE6352 Electrical Engineering and Instrumentation Important questions


 

 

Categories
Important question

EE6352 Electrical Engineering and Instrumentation Important questions Regulation 2013 Anna University

EE6352 Electrical Engineering and Instrumentation Important questions

EE6352 Electrical Engineering and Instrumentation Important questions Regulation 2013 Anna University free download. Electrical Engineering and Instrumentation EE6352 Important questions pdf free download.

Sample EE6352 Electrical Engineering and Instrumentation Important questions

1. How will you find the direction of emf using Fleming’s Right Hand Rule?

The thumb, the forefinger and the middle finger of the right hand are held so that these fingers are mutually perpendicular, then Forefinger – Field Thumb – Motion Middle finger- I, current

2. How will you find the direction of force produced using Fleming’s Left Hand
Rule?

The thumb , forefinger and middle finger of the left hand are held so that those fingers are mutually perpendicular then Forefinger – Field Thumb – Motion(due to force) Middle finger – I, current (ee6352 electrical engineering and instrumentation Important questions)

3. How are armature windings classified based on the placement of the coil inside the armature slots?

Single layer winding and Double layer winding

4. Write down the emf equation for d.c generator.

E = (фNZ / 60)(P/A) V Where P= number of poles Z= Total number of conductors
A= number of parallel paths Ф= flux per pole N= speed in rpm

5. Why the armature core in d.c machines is constructed with laminated steel sheets instead of solid steel steel?

Steel sheets offer low relutance path for the magnetic field , laminated sheets reduce eddy current loss. (ee6352 electrical engineering and instrumentation Important questions)

6. Why is commutator employed in d.c machines?

• Conduct electricity between armature and fixed brushes
• Converts altenatingemf into unidirectional emf and vice versa

7. Distinguish between shunt and series field coil constructions.

Shunt field coils are wound with wires of small cross section and have more number of turns. Series field coils are wound with wires of larger cross section and have less number of turns. (ee6352 electrical engineering and instrumentation Important questions)

Subject Name Electrical Engineering and Instrumentation
Subject Code EE6352
Regulation 2013

EE6352 Electrical Engineering and Instrumentation Important questions click here to download

EE6352 Electrical Engineering and Instrumentation Syllabus


EE6352 Electrical Engineering and Instrumentation Notes


EE6352 Electrical Engineering and Instrumentation Question Bank


 

Categories
r2013 notes

EE6352 Electrical Engineering and Instrumentation Notes Regulation 2013 Anna University

EE6352 Electrical Engineering and Instrumentation Notes

EE6352 Electrical Engineering and Instrumentation Notes Regulation 2013 Anna University free download. Electrical Engineering and Instrumentation EE6352 Notes pdf free download.

OBJECTIVES: EE6352 Electrical Engineering and Instrumentation Notes

To introduce three phase supply and power measurement.

To understand concepts in electrical generators, motors and transformers.

To introduce power generation, transmission and distribution concepts.

To learn basic measurement concepts.

To learn the concepts of electronic measurements.

To learn about importance of digital instruments in measurements.

OUTCOMES: EE6352 Electrical Engineering and Instrumentation Notes

Students will be able to understand

The three phase supply and power measurement.

The concepts in electrical generators, motors and transformers.

The basic measurement and instrumentation based devices.

The relevance of digital instruments in measurements.

TEXT BOOKS: EE6352 Electrical Engineering and Instrumentation Notes

1. I.J Nagarath and Kothari DP, “Electrical Machines”, McGraw-Hill Education (India) Pvt Ltd 4th Edition ,2010

2. A.K.Sawhney, “A Course in Electrical & Electronic Measurements and Instrumentation”, Dhanpat Rai and Co, 2004.

REFERENCES: EE6352 Electrical Engineering and Instrumentation Notes

1. Del Toro, “Electrical Engineering Fundamentals” Pearson Education, New Delhi, 2007.

2. W.D.Cooper & A.D.Helfrick, “Modern Electronic Instrumentation and Measurement Techniques”, 5th Edition, PHI, 2002.

3. John Bird, “Electrical Circuit Theory and Technology”, Elsevier, First Indian Edition, 2006.

4. Thereja .B.L, “Fundamentals of Electrical Engineering and Electronics”, S Chand & Co Ltd, 2008.

5. H.S.Kalsi, “Electronic Instrumentation”, Tata Mc Graw-Hill Education, 2004.

6. J.B.Gupta, “Measurements and Instrumentation”, S K Kataria & Sons, Delhi, 2003.

Subject Name Electrical Engineering and Instrumentation
Subject Code EE6352
Regulation 2013

EE6352 Electrical Engineering and Instrumentation Notes click here to download

EE6352 Electrical Engineering and Instrumentation Syllabus


EE6352 Electrical Engineering and Instrumentation Important questions


EE6352 Electrical Engineering and Instrumentation Question Bank


 

Categories
UG syllabus R 2013

EE6352 Electrical Engineering and Instrumentation Syllabus Regulation 2013 Anna University

EE6352 Electrical Engineering and Instrumentation Syllabus

EE6352 Electrical Engineering and Instrumentation Syllabus Regulation 2013 Anna University free download. Electrical Engineering and Instrumentation EE6352 Syllabus pdf free download.

UNIT I DC MACHINES EE6352 Electrical Engineering and Instrumentation Syllabus

Three phase circuits, a review. Construction of DC machines – Theory of operation of DC generators – Characteristics of DC generators- Operating principle of DC motors – Types of DC motors and their characteristics – Speed control of DC motors- Applications.

UNIT II TRANSFORMER EE6352 Electrical Engineering and Instrumentation Syllabus

Introduction – Single phase transformer construction and principle of operation – EMF equation of transformer-Transformer no–load phasor diagram –– Transformer on–load phasor diagram –– Equivalent circuit of transformer – Regulation of transformer –Transformer losses and efficiency-All day efficiency –auto transformers.

UNIT III INDUCTION MACHINES AND SYNCHRONOUS MACHINES EE6352 Electrical Engineering and Instrumentation Syllabus

Principle of operation of three-phase induction motors – Construction –Types – Equivalent circuit –Construction of single-phase induction motors – Types of single phase induction motors – Double revolving field theory – starting methods – Principles of alternator – Construction details – Types – Equation of induced EMF – Voltage regulation. Methods of starting of synchronous motors – Torque equation – V curves – Synchronous motors.

UNIT IV BASICS OF MEASUREMENT AND INSTRUMENTATION EE6352 Electrical Engineering and Instrumentation Syllabus

Static and Dynamic Characteristics of Measurement – Errors in Measurement – Classification of Transducers – Variable resistive – Strainguage, thermistor RTD – transducer – Variable Capacitive Transducer – Capacitor Microphone – Piezo Electric Transducer – Variable Inductive transducer – LVDT, RVDT

UNIT V ANALOG AND DIGITAL INSTRUMENTS EE6352 Electrical Engineering and Instrumentation Syllabus

DVM, DMM – Storage Oscilloscope. Comparison of Analog and Digital Modes of operation, Application of measurement system, Errors. Measurement of R, L and C, Wheatstone, Kelvin, Maxwell, Anderson, Schering and Wien bridges Measurement of Inductance, Capacitance, Effective resistance at high frequency, Q-Meter.

Subject Name Electrical Engineering and Instrumentation
Subject Code EE6352
Regulation 2013

EE6352 Electrical Engineering and Instrumentation Syllabus click here to download

EE6352 Electrical Engineering and Instrumentation Notes


EE6352 Electrical Engineering and Instrumentation Important questions


EE6352 Electrical Engineering and Instrumentation Question Bank

Categories
question bank

EE6801 Electric Energy Generation Utilization and Conservation Question Bank Regulation 2013 Anna University

EE6801 Electric Energy Generation Utilization and Conservation Question Bank

EE6801 Electric Energy Generation Utilization and Conservation Question Bank Regulation 2013 Anna University free download. Electric Energy Generation Utilization and Conservation EE6801 Question Bank pdf free download.

Sample EE6801 Question Bank:

1. (i)Describe the series- parallel control of electric traction motor. Also specify the advantages of the above control.(8)  (EE6801 Question Bank)

(ii)A train runs with an average speed of 50 kmph.Distance between stations is 4.5 km. Values of acceleration and retardation are 1.5 kmphs and 1.8 kmphps respectively. Calculate the maximum speed of the train assuming a trapezoidal speed time curve.(8)  (EE6801 Question Bank)

2. (i)Explain the recent trends in electric traction systems(8) (ii).A sub urban electric train has a maximum speed of 65kmph.The schedule speed including a station stop of 30seconds is 43.5kmph.If the acceleration is 1.3kmphps; Identify the value of retardation when the distance between stops is 3km.(8)

3. (i)Explain about the types of supply system used in traction system.(8) (ii) A 250 tonnes train with 10% rotational inertia effect is started with uniform acceleration and reaches a speed of 50 kmphps in 265 seconds on level road. Calculate the specific energy consumption if the journey is to be made
according to trapezoidal speed- time curve. Acceration = 2 kmphps; Tracking retardation = 3 kmphps ; Distance between the stations = 2.4 km ; efficiency = 0.9; Track resistance = 5 kg/tones.(8)  (EE6801 Question Bank)

4. (i)With the aid of transmission of tractive effort, describe the mechanism of train movement.(8) (iiDescribe clearly regenerative braking when used for Dc series traction motors. Also discuss the requirements for ideal traction.(8)

5. (i)A sub urban electric train has a maximum speed of 65kmph.The schedule speed including a station stop of 30seconds is 43.5kmph.If the acceleration is 1.3kmphps; Calculate the value of retardation when the distance between stops is 3km. (8) (ii)Discuss short notes on Trolley bus.(8) (EE6801 Question Bank)

Subject Name Electric Energy Generation Utilization and Conservation
Subject Code EE6801
Regulation 2013

EE6801 Electric Energy Generation Utilization and Conservation Question Bank click here to download

EE6801 Syllabus Electric Energy Generation Utilization and Conservation


EE6801 Notes Electric Energy Generation Utilization and Conservation


EE6801 Important questions Electric Energy Generation Utilization and Conservation


 

Categories
Important question

EE6801 Electric Energy Generation Utilization and Conservation Important questions Regulation 2013 Anna University

EE6801 Electric Energy Generation Utilization and Conservation Important questions

EE6801 Electric Energy Generation Utilization and Conservation Important questions Regulation 2013 Anna University free download. Electric Energy Generation Utilization and Conservation EE6801 Important questions pdf free download.

Sample EE6801 Electric Energy Generation Utilization and Conservation Important questions:

1. List out the advantages of nuclear power station over thermal power station
 The amount of fuel required is very small
 There is no problem of transportation and storage less space is required
 Most economical (EE6801 Important questions)

2. Name the sub system of solar power plant
 Solar energy collection system
 Thermal energy transfer system
 Thermal energy storage system
 Energy conversion system (EE6801 Important questions)

3. Indicate the difficulties using geo thermal energy
 Overall efficiency of power production is low
 Drilling operation is noisy
 Large areas are needed for exploitation of geo thermal energy

4. State the advantages of interconnected operation of power system
 Increased reliability of supply
 The event of power failure at one station the supply can be fed from other station
 Reduction total installed capacity
 Spinning reserve is reduced (EE6801 Important questions)

5. State the advantage of MHD
 Conversion efficiency is around 50%
 The closed cycle supply produces power, free of pollution
 It has no moving parts, so more reliable

6. What are the major components of nuclear power?
 Nuclear reactor
 Heat exchanger
 Steam turbine
 Alternator (EE6801 Important questions)

Subject Name Electric Energy Generation Utilization and Conservation
Subject Code EE6801
Regulation 2013

EE6801 Electric Energy Generation Utilization and Conservation Important questions click here to download

EE6801 Syllabus Electric Energy Generation Utilization and Conservation


EE6801 Notes Electric Energy Generation Utilization and Conservation


EE6801 Questions Bank Electric Energy Generation Utilization and Conservation