Latest Past Events

CV Preparation

RevivingIndia Meena bazar, Patna

Objective: A recent graduate seeking an entry-level position to kickstart a career in . Eager to apply academic knowledge, demonstrate strong work ethic, and contribute positively to the team. Education: , , Relevant coursework: Highlight any courses directly related to your field of interest or industry. GPA: If notable, mention your GPA or any academic achievements. Skills: Technical Skills: Proficient in gained through coursework and projects. Soft Skills: Excellent communication skills, ability to work collaboratively in team environments, strong problem-solving skills, and a willingness to learn. Projects: , , , Developed , demonstrating proficiency in and ability to deliver results. Collaborated with peers to successfully complete , showcasing teamwork and project management abilities. Internships/Part-Time Jobs (if applicable): , , Assisted with , gaining practical experience in . Demonstrated initiative and a willingness to learn in a professional setting. Extracurricular Activities: , , Engaged in , showcasing leadership skills or organizational…

Read more

Python Conditional Statement

RevivingIndia Meena bazar, Patna

What is a Conditional Statement? Decision making statements in programming languages decides the direction of flow of program execution. Decision making statements available in python are also known as if..else statement VERSION OF IF ..ELSE STATMENT if statement if..else statements nested if statements Short Hand if-else statement IF STATEMENT It is used to decide whether a certain statement or block of statements will be executed or not. if condition: # Statements to execute if # condition is true IF- ELSE The elsestatement with ifstatement to execute a block of code when the condition is false. if (condition):   # Executes this block if   # condition is true else:   # Executes this block if   # condition is false IF-ELIF-ELSE The if statements are executed from the top down. As soon as one of the conditions controlling the if is true, the statement associated with that if is executed, and the…

Read more

IR Sensor

RevivingIndia Meena bazar, Patna

What is an IR Sensor? IR sensor with Arduino and interface it with some components like an LED and a buzzer. We'll make a setup where the LED lights up and the buzzer sounds when motion is detected by the IR sensor. Components Needed. 1.Arduino board 2.IR sensor module 3.LED 4.Buzzer 5.Jumper wires Wiring Connections: Connect the VCC pin of the IR sensor module to the 5V pin of the Arduino. Connect the GND pin of the IR sensor module to the GND pin of the Arduino. Connect the OUT pin of the IR sensor module to digital pin 2 of the Arduino. Connect the positive (anode) leg of the LED to digital pin 3 of the Arduino through a current-limiting resistor (220-330 ohms). Connect the negative (cathode) leg of the LED to the GND pin of the Arduino. Connect one terminal of the buzzer to digital pin 4 of…

Read more