OTT Releases this week: March 14
List of OTT releases this week: streaming platform and release date TITLES STREAMING PLATFORM RELEASE DATE Be Happy Amazon Prime Video March 14th Agent SonyLIV March 14th Ponman Jio Hotstar … Read More
List of OTT releases this week: streaming platform and release date TITLES STREAMING PLATFORM RELEASE DATE Be Happy Amazon Prime Video March 14th Agent SonyLIV March 14th Ponman Jio Hotstar … Read More
Altered.ai Altered Studio offers exclusive access to their advanced Speech-To-Speech and Performance-To-Performance Speech Synthesis technology, expanding the possibilities for using voice in presentations. The user-friendly Altered Studio audio editor combines … Read More
Craiyon Create images from words” is a unique and innovative tool that allows users to turn text into creative and visually appealing images. This web-based application is user-friendly and easy … Read More
MidJourney AI Art Midjourney AI is a unique and powerful tool for creating artistic images, using the power of AI to bring your creative ideas to life. What’s great about … Read More
$ java helloworldError: Could not find or load main class helloworld Reason 1 – Made a mistake with the classname argument a simple class name: java ListUser
Java program for Linux server to EC2 instance with ppk file,
import java.util.*; class ArmstrongNumber { public static void main(String args[]) { int n, sum = 0, temp, r; Scanner in = new Scanner(System.in); System.out.println(“Enter a number to check if it … Read More
import java.util.Scanner; class FloydTriangle { public static void main(String args[]) { int n, num = 1, c, d; Scanner in = new Scanner(System.in); System.out.println(“Enter the number of rows of floyd’s … Read More
import java.util.*; class ReverseString { public static void main(String args[]) { String original, reverse = “”; Scanner in = new Scanner(System.in); System.out.println(“Enter a string to reverse”); original = in.nextLine(); int … Read More
import java.util.Scanner; class CompareStrings { public static void main(String args[]) { String s1, s2; Scanner in = new Scanner(System.in); System.out.println(“Enter the first string”); s1 = in.nextLine(); System.out.println(“Enter the second string”); … Read More
import java.util.Scanner; class LinearSearch { public static void main(String args[]) { int c, n, search, array[]; Scanner in = new Scanner(System.in); System.out.println(“Enter number of elements”); n = in.nextInt(); array = … Read More
import java.util.Scanner; class BinarySearch { public static void main(String args[]) { int c, first, last, middle, n, search, array[]; Scanner in = new Scanner(System.in); System.out.println(“Enter number of elements”); n = … Read More