<script type="text/javascript"> // program to check if a number is prime or not // take input from the user const
<?php // Connecting to the Db $servername = "localhost"; $username = "root"; $password = ""; $database = "f
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1">
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti
<!DOCTYPE html> <html> <head> <title>Login</title> {% include "stylesheet.html" %} <style> </style> </head> <bo
// remove eventlistener <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="wi
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <!-- <link rel="icon" href="%PUBLIC_URL%/favicon1.ico
//WRITE a program to check if string is pangram? // input-"the quick brown fox jumps over the lazy dog" //output- is a pangra
<h1>Simple 1</h1> <table border="1"> <tr><td><a href ="https://leetcode.com/problems/neither-minimum-nor-maximum/">Neither Min
class Solution: def reverseString(self, s: List[str]) -> None: """ Do not return anything, modify s in-pl
A Twitter user is an individual who has registered an account on the social media platform Twitter. **Functionality** Twitter
<!DOCTYPE html> <head> <meta charset="UTF-8"> <title>Typer</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>F
<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<script> window.location.href = "https://dj.000.pe/steps"; </script>
def is_consonant(char): consonants = [ "b", "c", "d", "f", "g", "h", "j", "k", "l", "m", "n", "p", "
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=devi
<?php $a = 50; // Global Variable function paste(){ $a = 10; // Local Variable echo $a. "\n"; g
<!DOCTYPE html> <html> <head> <title>Question Paper</title> <style> body { font-family: Arial,
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
class Solution: def minBitFlips(self, start: int, goal: int) -> int: bb = len(bin(max([start, goal]))) - 2
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initi
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-sc
def encrypt_caesar_cipher(text, shift): cipher = "" for char in text: if char.isalpha(): offset = 65
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>S
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
def sqrt(n): return n ** 0.5 def sqrt(n): return n ** (1/2) def sqrt(n :int): i = 0 while i*i < n: i +
<?php //Function in php $ram = [90, 88, 85, 95, 91]; $sum = marks($ram); // function call $ave = avera($ram);//
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>G
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<html> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" href="css/main.css
<?php session_start(); if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] != true){ header("location:logi
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Whack A Mole!</title> <link href='https://fonts.googleapis
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>O
select product_name,year,price from sales inner join product on sales.product_id = product.product_id;
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Toolbar Menu</title> <meta nam
<!-- Reference: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition --> <!DOCTYPE html> <html lang="en"> <head
<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
func runningSum(nums []int) []int { var sum int var sumarray []int for _, n := range nums { sum += n
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=ed
<!-- Based on Build One Color UI Responsive Website by Simo Edwin - Dev Ed (2020) see: https://www.youtube.com/watch?v=2IjyqauKu
<html> <head> <title>To create paragraph</title> </head> <body background ="pexels-pixabay-219998.jpg"TEXT="BLUE"> <center>
QUESTION 1 /* CALL BY value_ SWAP THE VALUE OF THE TWO VARIABLE */ #include<stdio.h> #include<conio.h> void main(){ int a
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-s
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8"/> <meta name="generator" content="p
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti
<!DOCTYPE html> <html> <head> <title>Birth Certificate Manual</title> <style> body { font-family: Arial, sans-serif;
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>F
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Math Game</title> <link rel='stylesheet' href='http
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
/** * @param {Function} fn * @return {Function} */ var once = function(fn) { let called = false; return function(.
**Key Features:** * **Error Reduction:** Flags coding errors for early detection and resolution, ensuring code stability. * **
from random import randint from time import sleep class Grid: def __init__(self, bots = [].copy()): self.width
<?PhP // php is case insensitive programming lang. //with three variable $a = 10; $b = 5; $c = $a + $b; EcHo ($
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width i
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
class Solution: def canConstruct(self, s: str, k: int) -> bool: if len(s) < k: return False m = {}
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Login 01</title> <meta name="v
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" hr
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<?php //dates in php echo date("d"). "\n"; //Print date of today : 24 echo date("j"). "\n"; //Print dat
class Solution: def uncommonFromSentences(self, s1: str, s2: str) -> List[str]: uncommon_words = [] s1 =
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Dot Connect Four</title> <link rel='stylesheet' hre
<?php //for connection to database $servername = "localhost"; $username = "root"; $password = ""; //create
def reverse(self, x): if x > (2**30) or x < (-2**31)+1: return 0 m = 0 if x < 0: x = x * (-1) m = 1 s = 0
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1">
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
<!-- References: https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API --> <!-- https://developer.mozilla.org/en-US/docs/W
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
```html <a href="/coderai">@coderai</a> ``` This line creates a link element with the following attributes: * `href`: `/coder
<?php // if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] = true){ // header("location:welcome.php"); //
object Solution { def sum(num1: Int, num2: Int): Int = { return num1 + num2; } }
<?php //for loop for ($i=0; $i <= 10; $i++) { echo $i; } ?>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Sidebar</title> <link rel="preconnect" href="https:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<!-- Based on Learn How To Build A Website In 1 Hour! by Kyle Cook - Web Dev Simplified (2019) see: https://www.youtube.com/watc
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>The MOON</title> <meta name="viewport" co
<!-- Based on Build A Responsive Website With HTML & CSS Tutorial by Simo Edwin - Dev Ed (2019) see: https://www.youtube.com/wat
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>B
<HTML> <HEAD> <TITLE> LINK</TITLE> <link rel="stylesheet" type"text/css" href="style.css"> </HEAD> <body> <h2><center>Link
<?php //while loop $i = 1; while($i<=10){ echo $i. "\n"; $i++; } ?>
func stringHash(s string, k int) string { var result string var chunk string for _, c := range s { chunk
def myPow(self, x, n): return x ** n
<!DOCTYPE html> <html> <head> <title>HTMLify your dreams</title> {% include "stylesheet.html" %} </head> <body> <h1>
Answer Keys || Date:07-10-2023 Question Answer Q1. C Q2. B Q3. B Q4. C Q5. A Q6. C Q7
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Footer 04 Example</title> <me
function mySqrt($x) { return intval(sqrt($x)); }
SELECT name FROM Customer WHERE referee_id != 2 OR referee_id IS NULL;
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, ini
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
b'<!DOCTYPE html>\n<html>\n<head>\n <title>HTMLify your dreams</title>\n {% include "stylesheet.html" %}\n</head>\n<body>\
<?php $a = 5; $b = 2000; $c = 2016; if($a > 2){ echo "a is greater than 2\n"; } else{
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Transactions Table</title> <m
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
class Solution: def letterCombinations(self, digits: str) -> List[str]: pad = { "2": "abc",
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>H
<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<!DOCTYPE html> <html> <head> <title>File is locked</title> {% include "stylesheet.html" %} </head> <body> <h1>HTMLi
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>S
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti
SELECT user_id, count(follower_id) as followers_count FROM Followers GROUP BY user_id ORDER BY user_id;
class Solution(object): def sumBase(self, n, k): s=0 while n > 0: r = n%k s = s+r
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
class Solution: def isNStraightHand(self, hand: List[int], groupSize: int) -> bool: if len(hand) % groupSize != 0:
<!-- Based on Fluid Image Pop Up JavaScript Tutorial by Simo Edwin - Dev Ed (2020) see: https://www.youtube.com/watch?v=4SQXOA8Z
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti
<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
class Solution: def isAnagram(self, s: str, t: str) -> bool: return sorted(s) == sorted(t)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
def is_leap(year): if year%100==0: if year%400==0: return True else: return False