"Most commonly asked question by interviewers"Hello everyone! As we prepare for technical interviews, it's crucial to understand the four pillars of Object-Oriented Programming (OOP), as these concepts are frequently asked by interviewers. Here’s a brief overview and some key points you can use ...Nov 4, 2024·2 min read·9
Html Imp Basic QusQus :explain the table and its properties In HTML, a table is a structure used to display data in rows and columns. It consists of several elements and properties that define its structure and appearance. The main elements used to create a table are...Oct 24, 2023·6 min read·6
ALPHA PLUS BATCH 1st class problem-Calculate the area of a circle //find the area of circle #include<iostream> using namespace std; int main(){ int r; cout<<"enter the value of r"<<endl; cin>>r; cout<<"area of circle is :" <<3.14*r*r; return 0; } -Find the greatest ...Sep 18, 2023·1 min read·10
Responsive using css<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css...Jul 31, 2023·2 min read·17
create a small project using HTML and CSS with very minimum code<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="./hye.css"> </head> <body> <nav> <div cl...Jul 29, 2023·1 min read·26
website to understand GsapHTML code <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="./gsap.css"> </head> <body> <div ...Jul 10, 2023·2 min read·14
Golf Club Website<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="./pro2.css"> </head> <body> <div id="nav"> ...Jul 7, 2023·3 min read·22