Coding Logic
778 subscribers
9 photos
10 videos
31 files
32 links
In this Channel you will learn about coding/programming and also get free coding stuffs πŸ‘πŸ»
Download Telegram
InsertionSort.java
672 B
Insertion Sort In Java πŸš€
Source Code πŸ‘‡
-----------------------------------------------------

<html>
<head>
<style>

.outer{
margin:auto;
height:300px;
width:400px;
border:2px solid black;
position:relative
}
p{
margin-left:80px;
}
.in{
margin-left:80px;
padding:10px
}
#bt{
margin-top:20px;
position:absolute;
left:150px;
}
#bt:hover{
background:green;
font-size:13px;
cursor:pointer;
color:white;
}
</style>
<script>
function fa(){
if(a.value=="" || b.value==""){
f()
document.getElementById("a").style.border="3px solid red"
document.getElementById("b").style.border="3px solid red"
bt.value="Pahila data tak"
}
else{
document.getElementById("a").style.border="3px solid green"
document.getElementById("b").style.border="3px solid green"
bt.value="Ha thik ahe ata"
bt.style.left="120px";
}
}
flag=1
function f(){
if(flag==1){
bt.style.left="210px"
flag=2
}
else if(flag==2){
bt.style.left="80px"
flag=1
}
}
</script>
</head>
<body>
<div class="outer">
<h1 style="text-align:center">Legend form</h1>
<p>Enter Id</p>
<input class="in" type="text" placeholder="Enter id" id="a"/>
<p>Enter Confirm Pass</p>
<input class="in" type="password" placeholder="Enter password" id="b"/>
<br>
<input type="submit" onmouseenter="fa()" onclick="alert('waaaa')" id="bt" />

</div>

</body>


</html>
5_6125174816421970019.pdf
416.5 KB
TCS Important Interview Preparation Questions
πŸ”₯2πŸ‘1
Free Training batch of Full Stack Python/Java Training is Starting from 28th Feb.

Important Points:

- : 100% Free Training with Certificate

- : Python & Ethical hacking Training

- : Get 100% Intership / Job after Training by our side in Top Tech Companies

- : Minimum package - 8-10 Lakh PA

- : Become Job ready & Professional Programmer

- : Learn everything at Free of cost with Interview Preparation also.

Register now Free, click here
πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡

http://bit.ly/3XtvFvd

Limited Free Seats Available, Register Now Fast β©πŸš€πŸš€


βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…βœ…
πŸ‘1
------ Free Python Course ------

If you want to start learning Python from Scratch to Advanced with Projects πŸ€”

Follow this playlist on YouTube
πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡

Click here πŸ‘‡
https://www.youtube.com/playlist?list=PLR0yFFg4ELYA01178pY_qAk2SUgs9PvD_


Learn from scratch and Projects step by step Tutorial also βœ…

& Do Subscribe channel also βœ…
πŸ‘3❀1
5_6125174816421970019.pdf
416.5 KB
TCS Important Interview Preparation Questions
🫑2
import turtle
from turtle import*

#screen for output
screen = turtle.Screen()

# Defining a turtle Instance
t = turtle.Turtle()
speed(0)

# initially penup()
t.penup()
t.goto(-400, 250)
t.pendown()

# Orange Rectangle
#white rectangle
t.color("orange")
t.begin_fill()
t.forward(800)
t.right(90)
t.forward(167)
t.right(90)
t.forward(800)
t.end_fill()
t.left(90)
t.forward(167)

# Green Rectangle
t.color("green")
t.begin_fill()
t.forward(167)
t.left(90)
t.forward(800)
t.left(90)
t.forward(167)
t.end_fill()

# Big Blue Circle
t.penup()
t.goto(70, 0)
t.pendown()
t.color("navy")
t.begin_fill()
t.circle(70)
t.end_fill()

# Big White Circle
t.penup()
t.goto(60, 0)
t.pendown()
t.color("white")
t.begin_fill()
t.circle(60)
t.end_fill()

# Mini Blue Circles
t.penup()
t.goto(-57, -8)
t.pendown()
t.color("navy")
for i in range(24):
t.begin_fill()
t.circle(3)
t.end_fill()
t.penup()
t.forward(15)
t.right(15)
t.pendown()

# Small Blue Circle
t.penup()
t.goto(20, 0)
t.pendown()
t.begin_fill()
t.circle(20)
t.end_fill()
# Spokes
t.penup()
t.goto(0, 0)
t.pendown()
t.pensize(2)
for i in range(24):
t.forward(60)
t.backward(60)
t.left(15)

#to hold the
#output window
turtle.done()
πŸ‘4❀1πŸ”₯1
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ‘4🀣3πŸ‘2🀩2😒1
Coding Logic
Video
πŸ”₯9🀩5❀1πŸ‘1
OOP Concept in Real Life πŸ‘
πŸ‘7❀3