Posts

INS

link for the INS Exam https://60mese120.netlify.app/ alternative https://justpaste.it/hh4u7 https://justpaste.it/hh4u7/pdf Ceaser cipher import java.io.*; import java.util.*; class Decryption { public static final String ALPHABET = "abcdefghijklmnopqrstuvwxyz"; public static String decrypt(String cipherText, int shiftKey) { cipherText = cipherText.toLowerCase(); String message = ""; for (int ii = 0; ii 25) { finalPosition = finalPosition - 26; } char replaceVal = ALPHABET.charAt(finalPosition); cipherText += replaceVal; } return cipherText; } public static String Decrypt(String cipherText, int Key) { cipherText = cipherText.toLowerCase(); String plainText = ""; for (int i = 0; i 25: cipher[i] = cipher[i] - 26 for i in range(len(key)): x = cipher[i] + ord('A') cipherText += chr(x) return cipherTex...

Ankur wariko Do EPIC shit pdf

https://modijiurl.com/vxDRxk

Game Pro Practical -------- Microsoft office 2021 Professional product Key activate using CMD Cammand by Sewestian

Practical No. 1 AIM: Initialising Windows Form Using Direct X. Code: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using Microsoft.DirectX; using Microsoft.DirectX.Direct3D; namespace pract1 { public partial class Form1 : Form { Microsoft.DirectX.Direct3D.Device device; public Form1() { InitializeComponent(); InitDevice(); } private void InitDevice() { PresentParameters pp = new PresentParameters(); pp.Windowed = true; pp.SwapEffect = SwapEffect.Discard; device = new Device(0, DeviceType.Hardware, this, CreateFlags.HardwareVertexProcessing, pp); } private void Form1_Load(object sender, EventArgs e) { } private void Form1_Paint(object sender, PaintEventArgs e) { render(); } private void render() { device.Clear(ClearFlags.Target, Color.Orange, 0, 1); device.Present(); } } } Practical no 2 Practical 2-  Aim:-   Draw Transformed coloured Triangle using Direct...

Full stack development Example code

Practical No. 1 Bootstrap example <!doctype html> <html lang="en">   <head>     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1">     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">     <link href="https://getbootstrap.com/docs/5.3/assets/css/docs.css" rel="stylesheet">     <title>Bootstrap Example</title>     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>   </head>   <body class="p-3 m-0 border-0 bd-example m-0 border-0">     <div id="carouselExampleIndicators" class="carousel slide">       <div class="carousel-indicators">         <button type="button" data-bs-target="#carouselExampleIndicators...