Posts

Showing posts from April, 2023

myinterview

Image
Just Interview Sceduling Sign In Sign Up Home About Contact It's Your Journey Your all-in-one online interview scheduler VIRTUAL FACE-TO-FACE MOCK INTERVIEWS WITH ME Let candidates self-book 24/7 with an online interview scheduling tool Book Appointment Projects I have worked on many projects and I am very proud of them. I am a very good developer and I am always looking for new projects. Skills I have a lot of skills and I am very good at them. I am very good at programming and I am always looking for new skills. Network I have a lot of network skills and I am very good at them. I am very good at networking and I am always looking for new network skills. About Me I am a Swapnil jamble, & I ...

Java Sem6 Programs

 Java Sem-6 Programs: //Write a java program to accept names of ‘n’ cities, insert same into array list //collection and display the contents of same array list, also remove all these elements import java.util.ArrayList ; import java.util.Scanner ; public class S2Ass1A1 { public static void main (String[] args) { Scanner sc = new Scanner(System. in ) ; ArrayList a = new ArrayList() ; System. out .println( "Enter the no. of cities:" ) ; int n = sc.nextInt() ; String s[] = new String[n] ; for ( int i= 0 ; i<n ; i++) { s[i] = sc.next() ; a.add(s[i]) ; } System. out .println( "Displaying ArrayList:" +a) ; a.clear() ; System. out .println( "After Removing ArrayList:" +a) ; } } /* OUTPUT: Enter the no. of cities: 5 pune baramti patas supe mumbai Displaying ArrayList:[pune, baramti, patas, supe, mumbai] After Removing ArrayList:[] */ //Write a...

PHP Web Tec Programs

  1.       Write a PHP script to keep track of number of times the web page has been accessed (Use Session Tracking). Q1web_access.php <html> <head> <title> Number of times the web page has been viited.</title> </head> <body> <?php                 session_start();                 if(isset($_SESSION['count']))                         $_SESSION['count']=$_SESSION['count']+1;                 else                         $_SESSION['count']=1;                 echo "<h3>This page is accessed</h3>".$_SESSION['count']; ?> </body> </html> This page is accessed 1 ................... 117 1.       2 .Write a PHP sc...