FirstRanker Logo

FirstRanker.com - FirstRanker's Choice is a hub of Question Papers & Study Materials for B-Tech, B.E, M-Tech, MCA, M.Sc, MBBS, BDS, MBA, B.Sc, Degree, B.Sc Nursing, B-Pharmacy, D-Pharmacy, MD, Medical, Dental, Engineering students. All services of FirstRanker.com are FREE

📱

Get the MBBS Question Bank Android App

Access previous years' papers, solved question papers, notes, and more on the go!

Install From Play Store

Download AKTU B-Tech 2nd Sem 2016-17 EEE201 Basic Electrical Engineering Question Paper

Download AKTU (Dr. A.P.J. Abdul Kalam Technical University (AKTU), formerly Uttar Pradesh Technical University (UPTU)) B-Tech 2nd Semester (Second Semester) 2016-17 EEE201 Basic Electrical Engineering Question Paper

This post was last modified on 29 January 2020

AKTU B-Tech Last 10 Years 2010-2020 Previous Question Papers || Dr. A.P.J. Abdul Kalam Technical University


Time: 3 Hours

Roll No.

B.TECH.

--- Content provided by⁠ FirstRanker.com ---

THEORY EXAMINATION (SEM–II) 2016-17

BASIC ELECTRICAL ENGINEERING

Max. Marks : 100

Note: Be precise in your answer. In case of numerical problem assume data wherever not provided.

SECTION – A

--- Content provided by​ FirstRanker.com ---

  1. Explain the following: 10 x 2 = 20
    1. Define unilateral and bi-lateral elements.
    2. What are the advantages of three phase system over the single phase system?
    3. Why the series resonance is called the voltage resonance?
    4. What do you understand by an accepter and rejector circuit?
    5. Why damping torque in necessary for an analog type instruments?
    6. --- Content provided by​ FirstRanker.com ---

    7. What do you know about phase sequence in a three phase supply system?
    8. How hysteresis loss can be minimised in a transformer?
    9. Write the function of commutator in a DC generator.
    10. Name any two motors, which can be used for purpose of constant speed.
    11. Why condensor is necessary to be connected in ceiling fan?
    12. --- Content provided by‌ FirstRanker.com ---

SECTION – B

  1. Attempt any five parts of the following questions: 5 x 10 = 50
    1. Find the current in 3 ohm resistance by loop current method and verify the answer by node voltage method.
      (Please note: Due to the limitations of text-based communication and potential rendering issues, the circuit diagram is represented with text placeholders. In a real HTML context, you would need to use an actual image or vector graphics to display the circuit.)
    2. For the parallel circuit shown in figure, calculate the following;
      1. Current through each branch
      2. --- Content provided by‍ FirstRanker.com ---

      3. Total current drawn and power factor of complete circuit.
      4. Equivalent impedance of the circuit.
      5. Draw phasor diagram

      Time: 3 Hours

      Roll No.

      --- Content provided by‍ FirstRanker.com ---

      www.FirstRanker.com

      B.TECH.

      THEORY EXAMINATION (SEM–II) 2016-17

      BASIC ELECTRICAL ENGINEERING

      Max. Marks : 100

      --- Content provided by FirstRanker.com ---

      Note: Be precise in your answer. In case of numerical problem assume data wherever not provided.

      SECTION – A

      1. Explain the following: 10 x 2 = 20
        1. Define unilateral and bi-lateral elements.
        2. What are the advantages of three phase system over the single phase system?
        3. Why the series resonance is called the voltage resonance?
        4. --- Content provided by FirstRanker.com ---

        5. What do you understand by an accepter and rejector circuit?
        6. Why damping torque in necessary for an analog type instruments?
        7. What do you know about phase sequence in a three phase supply system?
        8. How hysteresis loss can be minimised in a transformer?
        9. Write the function of commutator in a DC generator.
        10. --- Content provided by​ FirstRanker.com ---

        11. Name any two motors, which can be used for purpose of constant speed.
        12. Why condensor is necessary to be connected in ceiling fan?

      SECTION – B

      1. Attempt any five parts of the following questions: 5 x 10 = 50
        1. Find the current in 3 ohm resistance by loop current method and verify the answer by node voltage method.

          --- Content provided by​ FirstRanker.com ---

          www.FirstRanker.com
          (e) Explain construction and working of auto-transformer. (f) for a transformer, when it operates at its maximum efficiency.
          Explain construction and working of attraction type moving iron instrument. List the
          advantages and disadvantages of these instruments.
          (g) A 20 KW, 250V dc shunt machine has armature and field resistances 0.1 ohm and 125

          --- Content provided by​ FirstRanker.com ---

          ohm respectively. Calculate the emf developed in armature when running (i) as a
          generator delivering 20 KW output (ii) as a motor taking 20 KW input.
          (h) Write the working principle of a three phase induction motor. Draw its torque-slip
          characteristics and show operating, breaking and generating regions of motor.
        2. --- Content provided by FirstRanker.com ---


      SECTION - C

      1. Attempt any two of the following questions: 2 x 15 = 30
        1. State and prove maximum power transfer theorem.
        2. Find the value of resistance R for maximum power transfer in the circuit shown. Also

          --- Content provided by‌ FirstRanker.com ---

          obtain the value of maximum power.


          Hi guys , how about creating something useful with code? I am looking to start a project which will use publicly available PDF files, extract the text and summarize them using AI. It could potentially be helpful to everyone. If you are interested in being a part of this effort or have ideas on a better project I'm excited to hear you. I'm a software engineer, I'm mostly using Python.

          Hi! As promised I've got a small but useful Python code example for you. This code is going to summarize a PDF text using the transformers pipeline. Here's a basic Python script that reads a PDF, extracts the text, and then summarizes it using the transformers pipeline with the bart-large-cnn model. You'll need to install the following libraries: PyPDF2 and Transformers. You can install them using pip:

          --- Content provided by‌ FirstRanker.com ---



          1. pip install PyPDF2
          2. --- Content provided by​ FirstRanker.com ---

          3. pip install transformers

          **Here's the Python code:**
          python

          --- Content provided by​ FirstRanker.com ---

          import PyPDF2
          from transformers import pipeline def read_pdf(file_path): with open(file_path, 'rb') as file: reader = PyPDF2.PdfReader(file) text = '' for page_num in range(len(reader.pages)): page = reader.pages[page_num] text += page.extract_text() return text def summarize_text(text): summarizer = pipeline("summarization", model="facebook/bart-large-cnn") summary = summarizer(text, max_length=130, min_length=30, do_sample=False) return summary[0]['summary_text'] if __name__ == "__main__": pdf_path = "your_pdf_file.pdf" # Replace with your PDF file path text = read_pdf(pdf_path) summary = summarize_text(text) print("Original Text:") print(text) print("\nSummary:") print(summary) **How to Use:** 1. **Install Libraries:** Make sure you have PyPDF2 and Transformers installed. python pip install PyPDF2 transformers 2. **Replace Placeholder:** Replace `"your_pdf_file.pdf"` with the path to your PDF file. 3. **Run the Script:** Execute the Python script. shell python your_script_name.py The script will print the original extracted text and the summarized version. Note:
          * This code may not work perfectly for all PDF files, especially those with complex formatting or images containing text.
          * The transformers pipeline might require a significant amount of memory, especially for large documents. Adjust the max\_length and min\_length parameters as needed.
          * Feel free to modify and improve this code to suit your specific requirements. I hope this helps!

          --- Content provided by‍ FirstRanker.com ---


          This download link is referred from the post: AKTU B-Tech Last 10 Years 2010-2020 Previous Question Papers || Dr. A.P.J. Abdul Kalam Technical University

    3. --- Content provided by​ FirstRanker.com ---