Answers:
Hi,
1). Email the following details to eloinjess@gmail.com.
Your full name:
Your email ID: for registration purpose
Course name: Java
Your college name:
Your contact number:
You are a student/faculty:
Course name: Java
Your college name:
Your contact number:
You are a student/faculty:
2) After emailing the above details, contact 09967949342 between operating hours 10:30 am to 5:30 pm Mon-Fri. You'll be guided on the next steps to get certificates.
Best regards,
Jessie Velusamy
Spoken Tutorial - Training Manager
import java.util.Scanner;
public class RegistrationForm {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter your full name:");
String fullName = scanner.nextLine();
System.out.println("Enter your email ID:");
String email = scanner.nextLine();
System.out.println("Enter the course name:");
String courseName = scanner.nextLine();
System.out.println("Enter your college name:");
String collegeName = scanner.nextLine();
System.out.println("Enter your contact number:");
String contactNumber = scanner.nextLine();
System.out.println("Are you a student or faculty? (Enter 'student' or 'faculty'):");
String role
Login to add comment