Sharing the link to download the PDF of the Practical file, you can find the code over there drive.google.com/file/d/1mVN9HjeogiQndwFZxb57xeL7aFdYn3M-/view?usp=sharing
@sharvinjumare2 ай бұрын
bhai hamara login nahi ho rha to kya karu
@iSmileAcademy2 ай бұрын
Virus share par ek request bhejna padega, wo aapko link send karenge uske Baad username and password create karo, then you will get the access
@LifeEffect-j7h3 ай бұрын
Sir NEP ka syllabus padhye combination sequence design chapter hai hmlg ko
@LifeEffect-j7h3 ай бұрын
Sir kab say dhu rha tha mera subject ka related konsa hai finally mil gaya app ka ❤
@arunkaintura87213 ай бұрын
We need or more this types of video's 👍
@adityasawant27223 ай бұрын
WoW...
@rahatanjum49793 ай бұрын
Can u plz tell why 2 different cables are used
@iSmileAcademy3 ай бұрын
Generally copper cross over is used to connect devices at same layer of TCP/IP And Copper straight through for connecting devices at different layers of TCP/IP
@prof.bhushanchaudhari64213 ай бұрын
Sir For FYBsc-IT CSD ?
@iSmileAcademy3 ай бұрын
This is for FYCS only, for FYIT I will prepare and share as it has more contents
@yashdhaske43413 ай бұрын
sir provide the decryption for the rail fence also
@iSmileAcademy3 ай бұрын
def encrypt_rail_fence(plaintext, num_rails): if num_rails == 1: return plaintext rail = ['' for _ in range(num_rails)] row, step = 0, 1 for char in plaintext: rail[row] += char if row == 0: step = 1 elif row == num_rails - 1: step = -1 row += step return ''.join(rail) def decrypt_rail_fence(ciphertext, num_rails): if num_rails == 1: return ciphertext pattern = [' '] * len(ciphertext) row, step = 0, 1 for i in range(len(ciphertext)): pattern[i] = row if row == 0: step = 1 elif row == num_rails - 1: step = -1 row += step rail = [''] * len(ciphertext) index = 0 for r in range(num_rails): for i in range(len(ciphertext)): if pattern[i] == r: rail[i] = ciphertext[index] index += 1 return ''.join(rail) # Example usage plaintext = "defend" num_rails = 2 # Encrypt encrypted_message = encrypt_rail_fence(plaintext, num_rails) print("Encrypted message:", encrypted_message) # Output should be "dneedf" # Decrypt decrypted_message = decrypt_rail_fence(encrypted_message, num_rails) print("Decrypted message:", decrypted_message) # Output should be "defend"
@zee_1204 ай бұрын
hjdshjdf
@zee_1204 ай бұрын
ek number
@rahatanjum49794 ай бұрын
Thank you. very useful information
@Caroline_Grace-Gaspar.4 ай бұрын
the worlds largest boat
@kanzakhurum65585 ай бұрын
Can you share the source code file?
@kanzakhurum65585 ай бұрын
Can you share the source code file?
@user-ql3bv9ut5k5 ай бұрын
how can we find this inet
@harshitchaurasia90275 ай бұрын
pdf link
@iSmileAcademy4 ай бұрын
Not available, sorry
@harshitchaurasia90274 ай бұрын
@@iSmileAcademy nvm
@ray_100015 ай бұрын
Sir, Can you please upload the reference book or the lecture ppts along with lectures Really love the way you teach 🙇♂️
@milosrajkovic53605 ай бұрын
int x[50]={0}; int y[50]={0}; int LED_UP =2; int LED_DOWN =3; int LED_RIGHT =4; int LED_LEFT =5; void setup() { Serial.begin(9600); pinMode(LED_UP, OUTPUT); pinMode(LED_DOWN, OUTPUT); pinMode(LED_RIGHT, OUTPUT); pinMode(LED_LEFT, OUTPUT); } void loop() { long int sumX =0; long int sumY =0; for(int i =0; i<50;i++){ x[i] =analogRead(A0); sumX=sumX =x[i]; y[i] =analogRead(A1); sumY=sumY =y[i]; } int Xm=sumX /50; int Ym=sumY /50; int up =0; int down =0; int right =0; int left=0; if(Xm <=500)up=map(Xm,500,0,0,100); if(Xm >=500)down=map(Xm,500,1021,0,100); if(Ym <=506)right=map(Ym,506,0,0,100); if(Ym >=506)left=map(Ym,506,1021,0,100); digitalWrite(LED_UP,LOW); digitalWrite(LED_DOWN , LOW); digitalWrite(LED_RIGHT, LOW); digitalWrite(LED_LEFT, LOW); if(up > down){ digitalWrite(LED_UP, HIGH); }else if(down > up){ digitalWrite(LED_DOWN,HIGH); } if(right>left){ digitalWrite(LED_RIGHT,HIGH); }else if(right<left){ digitalWrite(LED_LEFT,HIGH); } String phrase1 ="Xm=" +String(Xm)+" -Ym" +String(Ym); String phrase2 ="UP:" +String(up)+" -DOWN:" +String(down)+"-RIGHT:" + String(right)+" - LEFT:" +String(left); }
@andrejprenkocevic59205 ай бұрын
trh
@arunvasunny73865 ай бұрын
change the bgm
@Usersinfo1235 ай бұрын
intlightSensorValue = 0; // Variable to store the light sensor reading void setup() { pinMode(A0, INPUT); // Set A0 pin as an input for the light sensor pinMode(9, OUTPUT); // Set pin 9 as an output to control the LED Serial.begin(9600); // Initialize serial communication at 9600 baud } void loop() { lightSensorValue = analogRead(A0); // Read the light sensor value Serial.println(lightSensorValue); // Print the sensor value to the Serial Monitor intledBrightness = map(lightSensorValue, 0, 1023, 0, 255); // Map the sensor value to LED brightness analogWrite(9, ledBrightness); // Control LED brightness based on the sensor reading delay(100); // Wait for 100 milliseconds before the next loop iteration }