The student building her way into software engineering.
I'm Lavanya Biradawada, a final-year B.Tech CSE undergraduate from Naidupeta, Andhra Pradesh. I build with Java, I'm learning ML fundamentals with Python, and I ship small working things instead of big unfinished ones.
Still learning, already building.
I'm a final-year Computer Science student at N.B.K.R. Institute of Science & Technology, drawn to the part of engineering where an idea turns into something people can actually use.
My core strength is Java, which I use to build functional mini-systems from the ground up. Alongside coursework, I completed a hands-on internship exploring AI/ML with Python — covering the fundamentals of machine learning algorithms, deep learning, and natural language processing.
I care about writing code that works reliably, and about learning in public — through college contests, team projects, and staying curious about new tools.
From problem to working code.
The same four steps carry me from a blank page to a finished mini-project.
Understand
Break the problem down before writing a single line — what does the user actually need?
Design
Sketch the data structures and program flow on paper before touching the keyboard.
Build
Write, run, and test in Java or Python, fixing what breaks as I go.
Ship & iterate
Get something working end-to-end, then come back and improve it.
What I build with.
Languages
Tools
Soft skills
Hotel reservation system.
A simplified look at the Java project I've been building since June 2025 — a mini hotel management & reservation system.
public class HotelReservation {// Holds every booked room for the stayprivate Map<Integer, Guest> bookings = newHashMap<>();public boolean bookRoom(int roomNo, Guest guest) {if (bookings.containsKey(roomNo)) {System.out.println("Room already booked.");return false;}bookings.put(roomNo, guest); System.out.println("Booked room " + roomNo + " for " + guest.getName());return true;}public void checkOut(int roomNo) {if (bookings.remove(roomNo) != null) {System.out.println("Room " + roomNo + " is now available.");}}}Academic background.
Bachelor of Technology — Computer Science
Intermediate — MPC
SSC
Currently a final-year CSE student, open to internships and entry-level software roles — building steadily, one project at a time.
Participation
Participated in Freedom Fest 2024, held at Narayana Engineering College, Gudur.
Took part in the Web Contest at Techvyuha-2k25, NBKRIST, Vidyanagar.
Interests
Get in touch today.
Open to internship and entry-level software opportunities. Reach out — I usually reply within a day.