CodeBlockx

HackerRank Python Basic Certification Solution

In this blog post, you will find the HackerRank Python Basic certification Solutions. The answers to questions are:- Hackerrank Python Certification Solution Q1:- Shape Classes with Area import math class Rectangle:def __init__(self, l, w):self.length = lself.width = w def area(self):return self.length * self.width class Circle:def __init__(self, r):self.radius = r def area(self):return math.pi * self.radius **

HackerRank Python Basic Certification Solution Read More »

CodeTantra Python Programming L15 Solution

In this blog post, you will find all the Solutions to the L15 questions of the Codetantra Python Programming Course. Here are the answer to these question:- Q1 :- L15/Building Blocks of Algorithms/Building blocks of Algorithms :- Select the correct statements given below Selection, Sequence are the only building blocks of constructing an algorithm. A

CodeTantra Python Programming L15 Solution Read More »

CodeTantra Python Programming L14 Solution

In this blog post, you will find all the Solutions to the L14 questions of the Codetantra Python Programming Course. Here are the answer to these question:- Q1 :- L14/Introduction to Algorithms/Understanding Problem Solving :- Select the correct statements given below. Problem solving is a systematic approach to define and solve a problem.The order to

CodeTantra Python Programming L14 Solution Read More »

HackerRank CSS Skill Test Certification Solution

In this blog post, you will find the HackerRank CSS Skill test certification Solutions. The answers to questions are:- HackerRank CSS Skill Test Certification Solution :- Q1 :- CSS Animation ❌ .greyBall:hover {transform: scale(2); animate: 500ms;}✔️ .greyBall:hover {transform: scale(2); transition: 500ms transform;}✔️ .greyBall:hover {transform: scale(2); transition: 0.5s;}❌ .greyBall:focus {transform: scale(2); transition: 0.5s;} Q2 :- CSS

HackerRank CSS Skill Test Certification Solution Read More »