Posts

Graphic design python turtle 🐢

from turtle import * import colorsys bgcolor('black') pensize(0) tracer(50) h=0 for i in range(300): c=colorsys.hsv_to_rgb(h,1,1) h+=0.9 color(c) forward(300) left(100) fd(i) goto(0,0) down() rt(90) begin_fill() circle(0) end_fill() rt(10) for j in range(5): rt(30) done() Please follow my blog and subscribe my channel for more videos and newly updates 👍👍👍👍👍 import turtle as t import colorsys t.bgcolor('black') t.tracer(100) h=0.4 def draw(ang,n): t.circle(5+n,60) t.left(ang) t.circle(5+n,60) for i in range(200): c=colorsys.hsv_to_rgb(h,1,1) h+=0.005 t.color(c) t.pensize(2) draw(90,i*2) draw(120,i*2.5) draw()

HCL hiring off campus drive

Image
  HCL - B.E/B.Tech - M.E/M.Tech Freshers Job Opportunity - 2022 HCL Off campus hiring 2022 limited seats only package 3.8 to 4.8 LPA  HCL Technologies is hiring! We are currently hiring Software Engineer/Senior Software Engineer role at HCL. This is an exclusive opportunity for Batch 2022 to be part of HCL. Eligibility : 75% across academics (10th, 12th, Grad, PG) Batch : 2022 only Location : Pan India CTC range : 3.65 LPA to 4.75 LPA Apply Here- https://forms.office.com/pages/responsepage.aspx?id=N-edGDrJWk-LaG9MqZQZEupck3aC--JHvV9bghqRtWtUQUFXUVkyVUZFV04wTDNFR0xBQ0dXS1BKQyQlQCN0PWcu

Deloitte hiring//batch 2022 //off campus drive

https://deloitteadvisoryotn.hirepro.in/  Registrations are Open! Please register before 11:55 PM, Dec 21, 2021 Analyst Trainee - Risk and Financial Advisory - Job Description At Deloitte, we do not offer you just a job, but a career in the highly sought-after Risk Management field. We are the business leader in the risk market. We work with a vision to make the world more prosperous, trustworthy, and safe. Our clients, primarily based outside of India, are large, complex organizations that constantly evolve and innovate to build better products and services. In the process, they encounter various risks and the work we do to help them address these risks is increasingly important to their success—and to the strength of the economy and public security. By joining us, you will get to work with diverse teams of professionals who design, manage and implement operations related to risk-centric solutions across a variety of risk domains for supporting global clients. In the process, you will

KPIT off campus drive 2022 batch

Image
KPIT Off Campus Drive 2022 BATCH | CSE | ECE | Many Branches Eligible Apply Now | Registration Apply Here https://talentojo-kel.kpit.com/tojo/app/job-apply/#/Campus/39959/77

TCS CodeVita Season 10

Image
About TCS CodeVita TCS CodeVita, the largest global computer programming competition, is a 24-hour online programming contest where a participant can log in from anywhere, any time. Coding enthusiasts can sharpen their programming skills through a series of intriguing real-life challenges across a stretch of 3 Rounds and an opportunity to win the coveted "World's Best Coder" title along with prize money of $10,000. Apply Here https://www.tcscodevita.com/  

DNS and it's Services

What is DNS? The essence of DNS is the invention of a hierarchical, domain-based naming scheme and a distributed database system for implementing the naming scheme. The primary use of DNS is for mapping host names and email destination to IP addresses but can also be used for other purposes. The DNS is a distributed database. It is used by TCP/IP application. We use the term distributed because no single site on the internet knows all the information. Each site maintains its own database of information and runs a server program that other system across the internet can query. The DNS provides the protocols that allow client and server to communicate with each other. Services Provided by the DNS:- There are several services provided by DNS-  1) Host Aliasing:-  A host with a complicated hostname can have one or more aliss names. 2) Mail Serve Aliasing:- DNS can be involved by a mail application to obtain the hostname for a supplied alias hostname as well as the IP address of the host. 3

1x1 Convolution in Compiler Design

Image
1x1 Convolution  

Explain binary exponential back-off algorithm.

Explain binary exponential back-off algorithm.                                   Or  Discuss any one algorithm for allocating a multiple access channel. To ensure that random back-off maintains stability, CSMA/CD uses a technique known as binary exponential back-off. Binary exponential back-off algorithm varies the limit on number of slot times. It works in the following manner- 1) if a stations frame collides for the first time, wait 0 or 1 time slot before trying again. 2) In case of colliding a second time, wait 0, 2 or 3 slot times. 3) If it collides third time, wait anywhere from 0 to 7 slots. 4) After 16 collisions, give up and report an error. Thus, as congestion increase, stations back-off by larger and larger amounts to reduce the probability of collision. This method clearly attempts to reduce excessive waits by keeping the number of possible time slots small. After all if two stations collide, there is a 50% opportunity they will succeed on the next attempt. If several stati