2.3 Ap Ankit
2.3 Ap Ankit
COMPUTER SCIENCE&ENGINEERING
Experiment- 2.3
Student Name:Ankit Chaurasiya UID: 21BCS11172
Branch: CSE Section/Group: 604 A
Semester: 5th Date of Performance: 9/10/23
Subject Name: Advance Programming Lab-1 Subject Code: 21CSP-314
Objective:
1. A pangram is a string that contains every letter of the alphabet. Given a sentence
determine whether it is a pangram in the English alphabet. Ignore case. Return
either pangram or not pangram as appropriate.
2. There is a sequence of words in CamelCase as a string of letters, s, having the
following properties:
• It is a concatenation of one or more words consisting of English letters.
• All letters in the first word are lowercase.
• For each of the subsequent words, the first letter is uppercase, and rest of the
letters are lowercase.
Given s, determine the number of words in s.
Script:
1. import java.io.*;
import java.util.*;
2.