Skip to main content

Posts

Showing posts from May, 2020

Active and Passive Voice

ACTIVE & PASSIVE VOICE ACTIVE VOICE STRUCTURE: SUB + VERB + OBJ u The active voice is when the person or thing performing the verb is also the subject of the sentence. u The subject always comes before the verb . u The active voice makes the subject the focus of the sentence . EXAMPLE: ➢His parents are always praising him. ➢Lee Harvey Oswald assassinated John F. Kennedy . u I love my students Passive Voice STRUCTURE: OBJ + HV + VERB(V3) + BY + SUB u By using the passive voice, we make the object the focus of the sentence . u When we not aware of subject. u When subject is not important. EXAMPLE: u He is always being praised by his parents . u John F. Kennedy was assassinated by Lee Harvey Oswald . u My students are loved by me. STEPS TO CONVERT u IDENTIFY SUB, OBJ, VERB. u SWAP  SUB & OBJ u CONVERT VERB TO V3 FORM u ADD HELPING VERB BEFORE MAIN VERB u ADD BY BEFORE SUB. WHILE CHANGING SUBJECT TO OBJ u I      CHANGE ...

Robotics using Arduino

Robotics using Arduino  onchipLEDonprogram: void setup()  {   // put your setup code here, to run once:   pinMode(13, OUTPUT); } void loop()  {   // put your main code here, to run repeatedly:   digitalWrite(13,HIGH); } onchipLEDoffprogram void setup() {   // put your setup code here, to run once: pinMode(13, OUTPUT); } void loop() {   // put your main code here, to run repeatedly: digitalWrite(13,LOW); } onboardLEDblink1secdelay void setup() {   // put your setup code here, to run once: pinMode(13, OUTPUT); } void loop() {   // put your main code here, to run repeatedly: digitalWrite(13,LOW); delay(1000); digitalWrite(13,HIGH); delay(1000); } externalLEDON1secOFF2secdelay void setup() {   // put your setup code here, to run once: pinMode(2, OUTPUT); } void loop() {   // put your main code here, to run repeatedly: digitalWrite(2,LOW); delay(2000); digitalWrite(2,HIGH); delay(1000); } external4LEDspattern void setup() { ...

Maths Statistics for Class 10

Mean is the sum of observations divided by the total number of observations in a raw data Example:  data:  2,3,5,7                    Mean =  (2+3+5+7) / 4                    Mean = 17/4                    Mean = 4.25 Mean for Grouped data can be obtained by three methods: Direct Method Assumed Mean Method Step-deviation Method Direct Method                            Assumed Mean Method Step-deviation Method Exercise 14.1:        Click this link for Questions and Answers on Mean all 3 Models                https://drive.google.com/file/d/1DD8mvEc0boAoGwdImEJTfnWLM3Tw7p7_/view             Click this link for Questions and Answer...

Sensors and Transducers for JNTUH Final Year Complete Notes.

The Sensors and Transducers Course divided into 5 units: In Unit I we will discuss about  Measurements,   Errors,  Sensor,  Transducer and its Classification. In Unit II we will discuss about  Characteristics of Transducers ,  Static  &  Dynamic  In Unit III, IV, V we will discuss about   Resistive Transducers,  Inductive and Capacitive Transducer,  Miscellaneous Transducers Course Objectives: To enable the students to select and design suitable instruments to meet the requirements of industrial applications and various transducers used for the measurement of various physical quantities and the following: Various types of Sensors & Transducers and their working principle Resistive, Capacitive and Inductive transducers Some of the miscellaneous transducers Characteristics of transducers Course Outcomes: Student will be able to Distinguish, analyse different types of errors. Students will be able to apply transforms ...