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 ---
- Explain the following: 10 x 2 = 20 - Define unilateral and bi-lateral elements.
- What are the advantages of three phase system over the single phase system?
- Why the series resonance is called the voltage resonance?
- What do you understand by an accepter and rejector circuit?
- Why damping torque in necessary for an analog type instruments?
- What do you know about phase sequence in a three phase supply system?
- How hysteresis loss can be minimised in a transformer?
- Write the function of commutator in a DC generator.
- Name any two motors, which can be used for purpose of constant speed.
- Why condensor is necessary to be connected in ceiling fan?
 --- Content provided by FirstRanker.com --- --- Content provided by FirstRanker.com --- 
SECTION – B
- Attempt any five parts of the following questions: 5 x 10 = 50 - 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.)
- For the parallel circuit shown in figure, calculate the following; - Current through each branch
- Total current drawn and power factor of complete circuit.
- Equivalent impedance of the circuit.
- Draw phasor diagram
 --- Content provided by FirstRanker.com --- Time: 3 Hours Roll No. --- Content provided by 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 - Explain the following: 10 x 2 = 20 - Define unilateral and bi-lateral elements.
- What are the advantages of three phase system over the single phase system?
- Why the series resonance is called the voltage resonance?
- What do you understand by an accepter and rejector circuit?
- Why damping torque in necessary for an analog type instruments?
- What do you know about phase sequence in a three phase supply system?
- How hysteresis loss can be minimised in a transformer?
- Write the function of commutator in a DC generator.
- Name any two motors, which can be used for purpose of constant speed.
- Why condensor is necessary to be connected in ceiling fan?
 --- Content provided by FirstRanker.com --- --- Content provided by FirstRanker.com --- 
 SECTION – B - Attempt any five parts of the following questions: 5 x 10 = 50 - 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.
 --- Content provided by FirstRanker.com --- 
- Find the current in 3 ohm resistance by loop current method and verify the answer by node voltage method. 
 SECTION - C - Attempt any two of the following questions: 2 x 15 = 30 - State and prove maximum power transfer theorem.
- 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 --- - pip install PyPDF2
- pip install transformers
 --- Content provided by FirstRanker.com --- 
 **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 
- pip install PyPDF2
 
 
 --- Content provided by FirstRanker.com --- 
- Find the current in 3 ohm resistance by loop current method and verify the answer by node voltage method. 
