12:20 PM Check number is even or odd swift var i : Int = 5if (i%2==0) {print("\(i) is even number")}else{print("\(i) is odd number... Pratik Ghelani 0
12:18 PM Print prime number in given range in swift func prime(n: Int){var count = 0for i in 1...n{if(n%i==0){count+=1}}if(count==2){print(" Prime number \(n)")}else{print("Prime Not Number\(n)")}}for... Pratik Ghelani 0
12:17 PM Check the string is palindrome or not in swift var str = "Pratik"var str1 = String(str.reversed())if (str == str1){print("String is Palidrome")}else{print("String is Not Palidrome")}var str =... Pratik Ghelani 0
6:27 AM Implementation of polyalphabetic cipher. Input:- public class polyalphabetic { public static void main(String[] args) { String s="playcsgo"; String k="playeveryday"; //String s="abc"; //String... Pratik Ghelani 0
java 6:24 AM Implementation of Caesar ciphar in java Input:- import java.util.Scanner; public class main { public static void main(String[] args) { int i,key = 0; char pt[] = new char[50]; char ct[] =... Pratik Ghelani 0
Python 6:17 AM . Create a list of temperatures in degrees Celsius with the values 25.2,16.8, 31.4, 23.9, 28, 22.5, and 19.6, and assign it to a variable called temps. Using one of the list methods, sort temps in ascending order. Write for loop to convert all the values from temps_in_celsius into Fahrenheit, and store the converted values in a new list temps_in_fahrenheit. Input:- n = int(input("Enter the temperature list:")) Temp = [25.2,16.8, 31.4, 23.9, 28, 22.5,19.6] b = [] for i in range (0,n): ... Pratik Ghelani 0
Python 6:15 AM Create a class “employee” with attributes like id, name, designation, emailid, birthdate, city. a.getData() to take employee information. b.setData() to display employee information. Inherit class “Account” with attributes like acc_id, acc_type, amount and methods to generate account report of peticular employee in proper format. Implement regular expression to validate emailid and birthdate. Input:- import re class employee(object): employee_id=0 employee_name="" designation... Pratik Ghelani 0