DataGeekthecodecosmos.hashnode.dev·Nov 13, 2023[ T.E ] CN16 - DNS LookupProblem Statement Write a program for DNS lookup. Given an IP address input, it should return the URL and vice versa. What is DNS? DNS stands for Domain Name System. DNS is the system that translates the human-friendly domain name into the actual IP...26 readscomputer netwoks
Ayush Bulbuleayushbulbule.hashnode.dev·May 14, 2023Assembly Program to Input 5 numbers and print them.01Assignment Assembly Programming Write an X86/64 ALP to accept five 64 bit Hexadecimal numbers from the user and store them in an array and display the accepted numbers. section .data msg1 db "Program to accept 5 numbers and print them!",0xA ; messa...7 likes·363 readsAssembly