h1. Perl code to create random string of characters mixed-case, alphanumeric, 8 chars long code.#!/usr/bin/perl -wT use strict; my @chars = ("A".."Z", "a".."z", "0" .. "9"); my $string; $string .= $chars[rand @chars] for 1..8; print $string . "\n"; code.. #perl #programming