ClearConceptsWithPrachi

Hello !
Welcome to the channel , as the name indicates study is not boring, hard stuff ;
but, IT'S AN ART .
Connect your studies to the real world for knowledge that sticks !


ClearConceptsWithPrachi

राम रामेति रामेति रमे रामे मनोरमे।
सहस्रनाम तत्तुल्यं रामनाम वरानने ॥
#ram #ramnavami #god #Ramsita

2 months ago (edited) | [YT] | 0

ClearConceptsWithPrachi

Which of the following best describes a "Shallow Copy" in Python?

2 months ago | [YT] | 0

ClearConceptsWithPrachi

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Happy Women's Day 2026</title>

<link href="fonts.googleapis.com/css2?family=Great+Vibes&famil…" rel="stylesheet">

<style>

body{
margin:0;
height:100vh;
display:flex;
justify-content:center;
align-items:center;

background:linear-gradient(
to bottom,
#c6a4af,
#e3a888,
#f2bd84,
#f7d596
);

font-family:'Playfair Display', serif;
}

.container{
width:900px;
height:600px;
text-align:center;
position:relative;
}

.quote{
font-size:54px;
color:white;
line-height:1.2;
margin-top:70px;
text-shadow:3px 3px 10px rgba(0,0,0,0.35);
}

.wish{
font-family:'Great Vibes', cursive;
font-size:60px;
color:#b0184c;
margin-top:40px;
}

.silhouette{
position:absolute;
bottom:0;
left:50%;
transform:translateX(-50%);
}

</style>
</head>

<body>

<div class="container">

<div class="quote">
“There is no limit<br>
to what women<br>
can accomplish.”
</div>

<div class="wish">
Happy Women's Day 2026.
</div>

<!-- Improved Woman Silhouette -->

<svg class="silhouette" width="220" height="200" viewBox="0 0 220 200">

<!-- head -->
<circle cx="110" cy="65" r="12" fill="#5b2d12"/>

<!-- body / dress -->
<path d="
M100 75
L120 75
L130 120
L150 170
L70 170
L90 120
Z" fill="#5b2d12"/>

<!-- arms -->
<path d="
M105 85
L40 40
L35 45
L95 95
Z" fill="#5b2d12"/>

<path d="
M115 85
L180 40
L185 45
L125 95
Z" fill="#5b2d12"/>

</svg>

</div>

</body>
</html>

2 months ago | [YT] | 5

ClearConceptsWithPrachi

Which of the following is TRUE about the is operator versus ==?

2 months ago | [YT] | 0

ClearConceptsWithPrachi

Which of the following is true about __init__?

2 months ago | [YT] | 0

ClearConceptsWithPrachi

Which of the following best describes a Python "Decorator"?

2 months ago | [YT] | 0

ClearConceptsWithPrachi

What is the output of the following code?

list1 = [1, 3]
list2 = list1
list1[0] = 4
print(list2)

2 months ago | [YT] | 0

ClearConceptsWithPrachi

Which of the following is the most appropriate tag for a sidebar containing links to related articles?

2 months ago | [YT] | 5

ClearConceptsWithPrachi

What does HTML stand for?

2 months ago | [YT] | 5

ClearConceptsWithPrachi

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy Holi</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
.holi-image {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
</style>
</head>
<body>

<!-- Replace 'path/to/your/image.jpg' with your actual image file path or URL -->
<img src="path/to/your/image.jpg" alt="Bowls of colorful Holi powder" class="holi-image">

</body>
</html>
#latepost #html #happyholi #coding

2 months ago | [YT] | 5