You are on page 1of 7

SCTR’s PUNE INSTITUTE OF COMPUTER TECHNOLOGY PUNE - 411043

Department of Electronics & Telecommunication Engineering (E&TC)


ASSESMENT YEAR: 2023-2024 CLASS: TE BATCH:- L-6
SUBJECT: Advanced JAVA Programming Performance Date:29/02/24
Assignment No:9 Roll No:32429 Submission Date:07/03/24

Programmer Name: Kaushik Aduri


Batch : L6

Problem Statement: Design a jsp page to display your resume

Note:copy code and program output for all case here

Code:

MyResume.jsp file :

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-


8"%>

<!DOCTYPE html>

<html>

<head>

<title>My Resume</title>

<style>

body {

font-family: Times New Roman, sans-serif;

margin: 10;

padding: 10;

.header {

background-color: #f2f2f2;

AJP_LAB_2023-24: Program input output 1


SCTR’s PUNE INSTITUTE OF COMPUTER TECHNOLOGY PUNE - 411043
Department of Electronics & Telecommunication Engineering (E&TC)
ASSESMENT YEAR: 2023-2024 CLASS: TE BATCH:- L-6
SUBJECT: Advanced JAVA Programming Performance Date:29/02/24
Assignment No:9 Roll No:32429 Submission Date:07/03/24

text-align: center;

padding: 20px;

.header h1 {

margin: 0;

.content {

padding: 20px;

.profile-image {

width: 150px;

border-radius: 50%;

margin: 10 auto;

.section {

font-family: Times New Roman;

size: 10;

margin-bottom: 20px;

.sub-section{

font-family:Times New Roman;

font-size: 13px;

AJP_LAB_2023-24: Program input output 2


SCTR’s PUNE INSTITUTE OF COMPUTER TECHNOLOGY PUNE - 411043
Department of Electronics & Telecommunication Engineering (E&TC)
ASSESMENT YEAR: 2023-2024 CLASS: TE BATCH:- L-6
SUBJECT: Advanced JAVA Programming Performance Date:29/02/24
Assignment No:9 Roll No:32429 Submission Date:07/03/24

margin-bottom: 20px;

.section h2 {

color: #333;

.section p {

margin: 5px 0;

</style>

</head>

<body>

<div class="header">

<img src="D:\Kaushik\PICT\Internship Drive'23\IMG_20230805_191634.jpg"


class=profile-image width="150px" height="150px">

<h1>Kaushik Aduri</h1>

<p>Data Analyst|Ex-Intern at Algo Analytics|Open to Work</p>

</div>

<div class="content">

<div class="section">

<h2>Personal Information</h2>

<p>Email: kaushikaduri03@gmail.com</p>

<p> LinkedIn: <a href>https://www.linkedin.com/in/kaushik-aduri-b3ba20142/</a


href></p>

</div>

AJP_LAB_2023-24: Program input output 3


SCTR’s PUNE INSTITUTE OF COMPUTER TECHNOLOGY PUNE - 411043
Department of Electronics & Telecommunication Engineering (E&TC)
ASSESMENT YEAR: 2023-2024 CLASS: TE BATCH:- L-6
SUBJECT: Advanced JAVA Programming Performance Date:29/02/24
Assignment No:9 Roll No:32429 Submission Date:07/03/24

<div class="section">

<h2>Education</h2>

<p>Bachelor of Engineering in Electronics and Telecommunication, Pune Institute of


Computer Technology, 2021-present</p>

<p>Magarpatta City Public School, 10th, 2006-2019</p>

<!-- Add more education details as needed -->

</div>

<div class="section">

<h2>Internships</h2>

<p>Machine Learning Intern, Algo Analytics, Aug 2023 - Dec 2023</p>

<div class="sub-section">

<p>

<ul>

<li>My primary responsibilities included learning and implementing image processing


techniques,augmentation, and image annotations using tools likeLabelImg.</li>

<li>I utilized Python scripts, incorporating modules such as OpenCV to enhance


functionality.</li>

<li>I acquired a comprehensive understanding of YOLO models and regression


concepts. </li>

<li>The hands-on experience with multiple projects using tools and Python scripts
enriched my skill set .</li>

</ul>

AJP_LAB_2023-24: Program input output 4


SCTR’s PUNE INSTITUTE OF COMPUTER TECHNOLOGY PUNE - 411043
Department of Electronics & Telecommunication Engineering (E&TC)
ASSESMENT YEAR: 2023-2024 CLASS: TE BATCH:- L-6
SUBJECT: Advanced JAVA Programming Performance Date:29/02/24
Assignment No:9 Roll No:32429 Submission Date:07/03/24

</p>

</div>

<!-- Add more internship details as needed -->

</div>

<div class="section">

<h2>Skills</h2>

<p>Programming Languages: Java,Python,MySQL</p>

<p>Frameworks: React,TensorFlow</p>

<!-- Add more skills as needed -->

</div>

<div class="section">

<h2>Hobbies and Interests</h2>

<p>Cricket,Basketball,Cooking,Chess,Creative writing</p>

</div>

</body>

</html>

AJP_LAB_2023-24: Program input output 5


SCTR’s PUNE INSTITUTE OF COMPUTER TECHNOLOGY PUNE - 411043
Department of Electronics & Telecommunication Engineering (E&TC)
ASSESMENT YEAR: 2023-2024 CLASS: TE BATCH:- L-6
SUBJECT: Advanced JAVA Programming Performance Date:29/02/24
Assignment No:9 Roll No:32429 Submission Date:07/03/24

Output:

AJP_LAB_2023-24: Program input output 6


SCTR’s PUNE INSTITUTE OF COMPUTER TECHNOLOGY PUNE - 411043
Department of Electronics & Telecommunication Engineering (E&TC)
ASSESMENT YEAR: 2023-2024 CLASS: TE BATCH:- L-6
SUBJECT: Advanced JAVA Programming Performance Date:29/02/24
Assignment No:9 Roll No:32429 Submission Date:07/03/24

AJP_LAB_2023-24: Program input output 7

You might also like