├── Algorithms Analysis and Design Concepts ├── Bank Ticketing System │ └── Ticket.java ├── Chocolate Boxes │ └── Chocolate.java ├── Credit Points - STACK │ └── ShopMain.java ├── Linked List - Recursion │ └── ListDriver.java ├── Merge Sort - Arrays │ └── MergeSortDriver.java ├── Occurrences │ └── DeleteMain.java ├── Quick Sort Algorithm │ └── QuickSort.java ├── Replace Character │ └── ReplaceDriver.java ├── Reversing a List │ └── List.java ├── Scorecard - Queue │ └── ScoreCardDriver.java ├── Singly Linked List │ └── ListDriver.java ├── Stack Operation │ └── StackDriver.java ├── Stack Reverse - Recursion │ └── StackDriver.java ├── String Reverse - Recursion │ └── ReverseDriver.java ├── String Sorting │ └── SortDriver.java ├── Tower-of-Hanoi │ └── TowerTest.java └── World Cup -Binary Search │ └── BinarySearch.java ├── JAVA ├── Arrays │ ├── Alternate Numbers Difference │ │ └── Alternate Numbers Difference │ │ │ └── Main.java │ ├── Array Compatiblilty │ │ └── CompatibleArrays.java │ ├── Array square │ │ └── Array square │ │ │ └── Main.java │ ├── Average and Grade Calculation │ │ ├── Student.java │ │ └── StudentMain.java │ ├── Country wise population │ │ └── Main.java │ ├── Cumulative sum in an array │ │ └── CumulativeSum.java │ ├── Display Date │ │ └── Main.java │ ├── Display array values in reverse order │ │ └── Main.java │ ├── Display array values │ │ └── Main.java │ ├── Duplicate an element │ │ └── DuplicateElement.java │ ├── Find Average Age │ │ └── Test.java │ ├── Find _ Display the position of a number │ │ └── Main.java │ ├── Find the Player Details │ │ ├── Main.java │ │ ├── Player.java │ │ └── PlayerUtility.java │ ├── Find the highest mark │ │ └── Highestmark.java │ ├── Generate number using odd digits │ │ └── Generate number using odd digits │ │ │ └── Main.java │ ├── Highest Mark in Each Semester │ │ └── HighestMarkPerSem.java │ ├── Interchange the elements of an array │ │ └── InterchangeArray.java │ ├── Make a number │ │ └── EvenNumber.java │ ├── Marathon Data Analysis (2D Array) │ │ └── Main.java │ ├── Mark Comparison │ │ └── Mark Comparison │ │ │ └── Main.java │ ├── Maximum Difference │ │ └── Main.java │ ├── Maximum repeated number │ │ └── Main.java │ ├── Next Greatest number │ │ └── Next Greatest number │ │ │ └── Main.java │ ├── Numerology │ │ └── Numerology.java │ ├── Pass and Fail Count │ │ └── Pass and Fail Count │ │ │ └── Count.java │ ├── Retail Shop │ │ └── Shop.java │ ├── Search a Course │ │ └── Course.java │ ├── Sort the first and second half of an array │ │ └── ArraySort.java │ ├── Sort the values in descending order │ │ └── Main.java │ ├── Sort the values │ │ └── Main.java │ ├── Sum of factorial of positive and single digit numbers in an array │ │ └── Factorial.java │ ├── Sum of the corresponding elements in 2 arrays │ │ └── ArrayAccumulator.java │ ├── Sum of the maximum and the minimum element │ │ └── Sum.java │ └── Zig zag Array │ │ └── Zig zag Array │ │ └── Main.java ├── Classes and Objects, Packages │ ├── Average and Grade Calculation │ │ ├── Student.java │ │ └── StudentMain.java │ ├── BankAccountDetails │ │ ├── Account.java │ │ └── AccountDetails.java │ ├── Book Detail │ │ ├── Book.java │ │ └── TestBook.java │ ├── Calculate Expiry Date - Use Calendar │ │ └── Main.java │ ├── Calculate Years of Experience │ │ └── Main.java │ ├── Call Details │ │ └── Call Details │ │ │ ├── Call.java │ │ │ └── Main.java │ ├── Date Validation - Use SimpleDateFormat │ │ └── Main.java │ ├── DreamTek Company │ │ └── DreamTek Company │ │ │ ├── Associate.java │ │ │ └── Main.java │ ├── Employee Salary Calculation │ │ ├── Employee.java │ │ └── Main.java │ ├── Employee rating │ │ └── Employee rating │ │ │ ├── Employee.java │ │ │ └── Main.java │ ├── Movie Ticket Calculation │ │ ├── Main.java │ │ └── Movie.java │ ├── Student Details - Constructor │ │ ├── Student.java │ │ └── StudentMain.java │ ├── Student and Department Detail │ │ ├── Department.java │ │ ├── Student.java │ │ └── TestMain.java │ ├── Ticket Price Calculation - Static │ │ ├── Main.java │ │ └── Ticket.java │ ├── Token Automation in Bank │ │ ├── Main.java │ │ └── Token.java │ ├── Travel Details │ │ ├── BusTicket.java │ │ ├── Person.java │ │ └── TestMain.java │ ├── Volume calculator- Over Loading │ │ ├── TestMain.java │ │ └── VolumeCalculator.java │ └── ZeeZee bank │ │ └── ZeeZee bank │ │ ├── Account.java │ │ └── Main.java ├── Collection, Generics and Stream API │ ├── ArrayList - Simple Handson1 │ │ └── UserInterface.java │ ├── ArrayList - Simple Handson2 │ │ └── UserInterface.java │ ├── Book Manipulation │ │ ├── Book.java │ │ ├── Library.java │ │ └── Main.java │ ├── Count of Each Words │ │ └── CountOfWords.java │ ├── HashMap - Simple Handson1 │ │ └── UserInterface.java │ ├── Member Manipulation │ │ ├── Library.java │ │ ├── Main.java │ │ └── Member.java │ ├── Number of New Words │ │ └── UniqueWords.java │ ├── PhoneBook Manipulation │ │ ├── Contact.java │ │ ├── Main.java │ │ └── PhoneBook.java │ ├── Remove Duplicates from the Names │ │ └── TestMain.java │ ├── Retrieve Student Info │ │ └── Retrieve Student Info │ │ │ ├── Student.java │ │ │ └── TestMain.java │ ├── TreeMap - Simple Handson1 │ │ └── UserInterface.java │ ├── TreeSet - Simple Handson1 │ │ └── UserInterface.java │ └── TreeSet - Simple Handson2 │ │ └── UserInterface.java ├── Control Structures │ ├── Bill Generation │ │ └── SnacksDetails.java │ ├── Car Details │ │ └── CarDetails.java │ ├── Celcius to Farenheit Conversion │ │ └── CelsiusConversion.java │ ├── Check for Leap Year │ │ └── LeapYear.java │ ├── Checking budget of mobile │ │ └── Main.java │ ├── Compute Gain Percentage │ │ └── Gain.java │ ├── Convert Numbers into Months │ │ └── NumToMonth.java │ ├── Display Characters │ │ └── AsciValue.java │ ├── Electricity bill calculation │ │ └── Main.java │ ├── Find Season │ │ └── Season.java │ ├── Finding Range Of The Number │ │ └── Main.java │ ├── Finding even number │ │ └── Main.java │ ├── Highest Placement │ │ └── Placement.java │ ├── Income Calulation │ │ └── IncomeCal.java │ ├── Increment Calculation │ │ └── IncrementCalculation.java │ ├── Movie Ticket Calculation │ │ └── CinemaTicket.java │ ├── Print Customer Details │ │ └── Customer.java │ ├── Print Message │ │ └── PrintMessage.java │ ├── Print Username │ │ └── Username.java │ ├── Registration Details │ │ └── RegistrationDetails.java │ ├── Road Signaling │ │ └── Main.java │ ├── Spell Check │ │ └── Character.java │ └── Triangle Validation │ │ └── Triangle.java ├── Exception Handling │ ├── Array Manipulation - Use try with multi catch │ │ └── ArrayException.java │ ├── Calculate Product cost - Try with multiple catch │ │ └── Main.java │ ├── Display Array element - Usage of finally │ │ └── Main.java │ ├── Display Product Details - User defined Exception │ │ ├── InvalidPriceException.java │ │ └── Main.java │ ├── Divide two numbers - Use finally │ │ └── Division.java │ ├── Fund Transfer │ │ ├── Account.java │ │ ├── InvalidIFSCCodeException.java │ │ └── Main.java │ ├── Get Input and handle exception │ │ └── Main.java │ ├── Marathon Registration │ │ └── Marathon Registration │ │ │ ├── Main.java │ │ │ └── Marathon.java │ ├── Register a Candidate - User defined Exception(with throw and throws) │ │ ├── Candidate.java │ │ ├── InvalidSalaryException.java │ │ └── Main.java │ ├── Simple Calculator │ │ ├── Calculator.java │ │ └── Main.java │ └── Validate Date using ParseException - Use try catch throws (1) │ │ └── Main.java ├── Inheritance, Polymorphism, Abstract class, Interface │ ├── Account Manipulation - Abstract class │ │ ├── Account.java │ │ ├── Customer.java │ │ ├── Main.java │ │ └── SavingsAccount.java │ ├── Area Calculation - abstract class │ │ ├── Circle.java │ │ ├── Main.java │ │ ├── Rectangle.java │ │ ├── Shape.java │ │ └── Triangle.java │ ├── Average and Grade Calculation │ │ └── Average and Grade Calculation │ │ │ ├── Student.java │ │ │ └── StudentMain.java │ ├── Check Number Type │ │ ├── NumberType.java │ │ └── NumberTypeUtility.java │ ├── Check for Existence of Customer - equals method │ │ ├── Customer.java │ │ └── Main.java │ ├── Contact Details of Hosteller │ │ ├── Hosteller.java │ │ ├── Main.java │ │ └── Student.java │ ├── Employee Loan Eligibility - Polymorphism │ │ ├── Employee.java │ │ ├── Loan.java │ │ ├── Main.java │ │ ├── PermanentEmployee.java │ │ └── TemporaryEmployee.java │ ├── Get Text and Display Welcome Message │ │ ├── DisplayText.java │ │ └── Main.java │ ├── Inheritance - Project Details │ │ ├── Company.java │ │ ├── InternalProject.java │ │ └── Project.java │ ├── Inheritance-Account │ │ └── Inheritance-Account │ │ │ ├── Account.java │ │ │ ├── SavingsAccount.java │ │ │ └── TestMain.java │ ├── Interest Calculator - Interface Concept │ │ └── Interest Calculator - Interface Concept │ │ │ └── Interest.java │ ├── Interface - Weather Service │ │ ├── Temperature.java │ │ ├── TodaysWeather.java │ │ ├── Weather.java │ │ └── WeatherInfo.java │ ├── Multiplier - Overloading │ │ ├── Driver.java │ │ └── Multiplier.java │ ├── PF and Salary Calculation │ │ ├── Employee.java │ │ ├── Main.java │ │ └── PermanentEmployee.java │ ├── PassengerDetails │ │ ├── Main.java │ │ └── Passenger.java │ ├── Perform Calculation │ │ ├── Calculate.java │ │ └── Calculator.java │ ├── PersonIsADoctor-Abstract │ │ ├── Doctor.java │ │ ├── Driver.java │ │ └── Person.java │ ├── PersonIsADoctor-Inheritance │ │ ├── Doctor.java │ │ ├── Driver.java │ │ └── Person.java │ ├── Polymorphism - Bank Account │ │ ├── Account.java │ │ ├── Bank.java │ │ ├── CurrentAccount.java │ │ └── SavingsAccount.java │ ├── Printer-Interface │ │ ├── Driver.java │ │ ├── LaserPrinter.java │ │ └── Printer.java │ ├── Student and Department Detail │ │ └── Student and Department Detail │ │ │ ├── Department.java │ │ │ ├── Student.java │ │ │ └── TestMain.java │ ├── Validate Name │ │ ├── Validate.java │ │ └── ValidateUtility.java │ └── Vehicle-Loan-Insurance - Use Interface │ │ ├── Insurance.java │ │ ├── Loan.java │ │ ├── Main.java │ │ └── Vehicle.java ├── Iterations │ ├── Bonus Points - Bike Race │ │ └── BikeRace.java │ ├── Count of Prime numbers │ │ └── Main.java │ ├── Display Month_Day │ │ └── Main.java │ ├── Display String │ │ └── Main.java │ ├── Factors of a Number │ │ └── FindFactor.java │ ├── Find Number for Given Factorial │ │ └── FindNumber.java │ ├── Gold Coin Count │ │ └── Coins.java │ ├── List of prime numbers │ │ └── PrimeNumbers.java │ ├── Lucky Number │ │ └── LuckyNum.java │ ├── Number Palindrome │ │ └── Palindrome.java │ ├── Palindrome numbers │ │ └── Main.java │ ├── Pencil Count │ │ └── Count.java │ ├── Power of a Number │ │ └── Power.java │ ├── Prime Factors │ │ └── Main.java │ ├── Repetition of a Number │ │ └── NumberRepetition.java │ ├── Reverse The Number (1) │ │ └── ReverseNumber.java │ └── Reverse the number │ │ └── Main.java ├── Others(Contol Structures _ Iterations) │ ├── Banner Display │ │ └── Banner Display │ │ │ └── Main.java │ ├── Clearance Sale │ │ └── Clearance Sale │ │ │ └── Main.java │ ├── Count at the Cow barn │ │ └── Count at the Cow barn │ │ │ └── Main.java │ ├── Currency calculator │ │ └── currency calculator │ │ │ └── Main.java │ ├── Daisy’s Locker Number │ │ └── Daisy’s Locker Number │ │ │ └── Main.java │ ├── Decimal to Fraction │ │ └── Decimal to Fraction │ │ │ └── Main.java │ ├── Find Profit or Loss │ │ └── Find Profit or Loss │ │ │ └── Main.java │ ├── Fuel Consumption Calculator │ │ └── Fuel Consumption Calculator │ │ │ └── Main.java │ ├── Grade Points │ │ └── Grade Points │ │ │ └── Main.java │ ├── KN Agencies Sales Orders │ │ └── KN Agencies Sales Orders │ │ │ └── Main.java │ ├── Multiplying adjacent numbers │ │ └── Multiplying adjacent numbers │ │ │ └── Main.java │ ├── Numerology number │ │ └── Numerology number │ │ │ └── Main.java │ ├── Pair of Two digits │ │ └── Pair of Two digits │ │ │ └── Main.java │ ├── Patient Details │ │ └── Patient Details │ │ │ └── Main.java │ ├── Prime numbers ending with one │ │ └── Prime numbers ending with one │ │ │ └── Main.java │ ├── Product Details │ │ └── Product Details │ │ │ ├── Main.java │ │ │ └── Shop.java │ ├── Quadrilaterals │ │ └── Quadrilaterals │ │ │ └── Main.java │ ├── Rayan’s Bamboo Tree │ │ └── Rayan’s Bamboo Tree │ │ │ └── Main.java │ ├── Siblings Fund Raising │ │ └── Siblings Fund Raising │ │ │ └── Main.java │ ├── Sum and Product │ │ └── Sum and Product │ │ │ └── Main.java │ ├── Sum of series II │ │ └── Sum of series II │ │ │ └── Main.java │ ├── Sum of the series │ │ └── Sum of the series │ │ │ └── Main.java │ ├── Terrace Garden │ │ └── Terrace Garden │ │ │ └── Main.java │ ├── Token Automation in Bank │ │ └── Token Automation in Bank │ │ │ ├── Main.java │ │ │ └── Token.java │ └── Welcoming Freshmen │ │ └── Welcoming Freshmen │ │ └── Main.java ├── Running Case Study 1-6 │ ├── State Board of Cricket Council –V1.0 _ │ │ └── SBCCBoardManagement │ │ │ └── src │ │ │ └── com │ │ │ └── sbcc │ │ │ ├── main │ │ │ └── UserInterface.java │ │ │ ├── model │ │ │ └── Player.java │ │ │ └── skeletonvalidator │ │ │ └── SkeletonValidator.java │ ├── State Board of Cricket Council –V2.0 _ │ │ └── SBCCBoardManagement │ │ │ └── src │ │ │ └── com │ │ │ └── sbcc │ │ │ ├── main │ │ │ └── UserInterface.java │ │ │ ├── model │ │ │ └── Player.java │ │ │ ├── skeletonvalidator │ │ │ └── SkeletonValidator.java │ │ │ └── utility │ │ │ └── SBCCUtility.java │ ├── State Board of Cricket Council –V3.0 _ │ │ └── SBCCBoardManagement │ │ │ └── src │ │ │ └── com │ │ │ └── sbcc │ │ │ ├── main │ │ │ └── UserInterface.java │ │ │ ├── model │ │ │ └── Player.java │ │ │ ├── skeletonvalidator │ │ │ └── SkeletonValidator.java │ │ │ └── utility │ │ │ └── SBCCUtility.java │ ├── State Board of Cricket Council –V4.0 _ │ │ └── SBCCBoardManagement │ │ │ └── src │ │ │ └── com │ │ │ └── sbcc │ │ │ ├── main │ │ │ └── UserInterface.java │ │ │ ├── model │ │ │ ├── Batsman.java │ │ │ ├── Bowler.java │ │ │ └── Player.java │ │ │ ├── skeletonvalidator │ │ │ └── SkeletonValidator.java │ │ │ └── utility │ │ │ └── SBCCUtility.java │ ├── State Board of Cricket Council –V5.0 _ │ │ └── SBCCBoardManagement │ │ │ └── src │ │ │ └── com │ │ │ └── sbcc │ │ │ ├── exception │ │ │ └── InvalidPlayerIdException.java │ │ │ ├── main │ │ │ └── UserInterface.java │ │ │ ├── model │ │ │ ├── Batsman.java │ │ │ ├── Bowler.java │ │ │ └── Player.java │ │ │ ├── skeletonvalidator │ │ │ └── SkeletonValidator.java │ │ │ └── utility │ │ │ └── SBCCUtility.java │ └── State Board of Cricket Council –V6.0 _ │ │ └── SBCCBoardManagement │ │ └── src │ │ └── com │ │ └── sbcc │ │ ├── dao │ │ └── SBCCBoard.java │ │ ├── exception │ │ └── InvalidPlayerIdException.java │ │ ├── main │ │ └── UserInterface.java │ │ ├── model │ │ ├── Batsman.java │ │ ├── Bowler.java │ │ └── Player.java │ │ ├── service │ │ └── SBCCService.java │ │ ├── skeletonvalidator │ │ └── SkeletonValidator.java │ │ └── utility │ │ └── SBCCUtility.java └── Strings │ ├── Alliteration │ └── Main.java │ ├── Ascending and descending order │ └── Ascending and descending order │ │ └── Main.java │ ├── Compare two strings │ └── Main.java │ ├── Count consecutive repeating characters │ └── Count consecutive repeating characters │ │ └── Main.java │ ├── Count occurrence of a character │ └── OccurrenceOfChar.java │ ├── Count of alphabets │ └── Main.java │ ├── Count repeating words │ └── Count repeating words │ │ └── Main.java │ ├── Count the number of characters │ └── Count.java │ ├── Employee ID Validation │ └── UserMain.java │ ├── Find and Replace │ └── ReplaceWord.java │ ├── Frame the Expression │ └── Main.java │ ├── InitCap │ └── InitCap.java │ ├── Kids school │ └── Main.java │ ├── Late to bank │ └── Main.java │ ├── Least offer │ └── Least offer │ │ └── Main.java │ ├── Least repeating character │ └── Main.java │ ├── Length of String │ └── FindLength.java │ ├── Login │ └── Login.java │ ├── Mail Domain │ └── Mail Domain │ │ └── Main.java │ ├── PAN Card Validation (1) │ └── UserMain.java │ ├── PAN Card Validation │ └── PanCard.java │ ├── Palindrome │ └── Palindrome.java │ ├── Password Generation │ └── Main.java │ ├── Print the characters in descending order │ └── Print the characters in descending order │ │ └── Main.java │ ├── Print unique characters │ └── UniqueChar.java │ ├── Reverse and find palindrome │ └── Main.java │ ├── Sentence - Convert to upper and lower │ └── Sentence - Convert to upper and lower │ │ └── Main.java │ ├── String - Find and replace the character (First occurrence) │ └── String - Find and replace the character (First occurrence) │ │ └── FirstOccurence.java │ ├── String Concatenation │ └── Authority.java │ ├── String Contains │ └── Main.java │ ├── String Spilt-Up │ └── Main.java │ ├── String length │ └── Main.java │ ├── SubString │ └── Main.java │ ├── Substitution Cipher Technique │ └── Main.java │ ├── Temperature Summary │ └── Temperature.java │ ├── Two words of same letters │ └── Main.java │ └── Vowels in a FishBowl │ └── Vowels in a FishBowl │ └── Main.java ├── JSON ├── Generate XSD 2 │ └── hotels.xsd ├── Generate XSD 4 │ └── employee.xsd ├── Generate XSD For Breakfast Menu │ └── food.xsd ├── Generate XSD For Mobile Store │ └── mobile.xsd ├── Generate XSD for Persons │ └── PersonList.xsd └── Generate XSD for Students │ └── StudentList.xsd ├── RDBMS ├── Data Control Language _ Database Objects │ ├── Create View_Mobile │ │ └── model.sql │ └── Create View_StudentDetails │ │ └── sample.sql ├── Data Definition Language │ ├── Add a column in Registration Table │ │ └── Add a column in Registration Table │ │ │ └── sample.sql │ ├── Add a column in Student Table │ │ └── Add a column in Student Table │ │ │ └── sample.sql │ ├── Add a constraint to Course Table │ │ └── Add a constraint to Course Table │ │ │ └── sample.sql │ ├── Alter - Add CHECK constraint to Mobile_Master │ │ └── model.sql │ ├── Alter - Add Check constraint to Course Table │ │ └── sample.sql │ ├── Alter - Add Referential Integrity Constraint │ │ └── sample.sql │ ├── Alter - Add a column age │ │ └── model.sql │ ├── Alter - Establish Referential Integrity Constraint │ │ └── model.sql │ ├── Alter - removing a column in Mobile Specification │ │ └── model.sql │ ├── Alter -Modify the field type │ │ └── sample.sql │ ├── Alter table buses remove column │ │ └── ddl5.sql │ ├── Alter table payments Rename column │ │ └── alter1.sql │ ├── Alter- Add a new column │ │ └── ddl3.sql │ ├── Alter- Modify the datatype │ │ └── ddl4.sql │ ├── Alter-Rename the field │ │ └── sample.sql │ ├── Change the name of the table Sales Info │ │ └── model.sql │ ├── Create Buses table │ │ └── ddl1.sql │ ├── Create Course Table │ │ └── Create Course Table │ │ │ └── sample.sql │ ├── Create Customer_info table │ │ └── sample.sql │ ├── Create Department table │ │ └── dept.sql │ ├── Create Distributor table │ │ └── sample.sql │ ├── Create Mark table │ │ └── ddl5.sql │ ├── Create Mobile_master table │ │ └── sample.sql │ ├── Create Mobile_specification table │ │ └── sample.sql │ ├── Create Payments table │ │ └── dd14.sql │ ├── Create Registration Table │ │ └── Create Registration Table │ │ │ └── sample.sql │ ├── Create SCHEDULE table │ │ └── dd2.sql │ ├── Create Sales_info table │ │ └── sample.sql │ ├── Create Staff table │ │ └── ddl3.sql │ ├── Create Student table │ │ └── ddl2.sql │ ├── Create Subject table │ │ └── ddl4.sql │ ├── Create Users table │ │ └── dd13.sql │ ├── Drop Mobile Specification table (parent) │ │ └── model.sql │ ├── Drop Registration Table │ │ └── sample.sql │ ├── Drop Sales Info table(child) │ │ └── model.sql │ ├── Drop Student Table │ │ └── sample.sql │ ├── Modify the datatype │ │ └── Modify the datatype │ │ │ └── ddl4.sql │ ├── Purge Distributor table Truncate │ │ └── model.sql │ ├── Purge Guest Table Contents - Truncate │ │ └── sample.sql │ ├── Rename PointOfInterest Table │ │ └── sample.sql │ ├── Test Your Understanding 1 │ │ └── PRODUCT.sql │ └── Test Your Understanding 2 │ │ └── DEPARTMENT.sql ├── Data Manipulation Language │ ├── Delete Records - Payments │ │ └── dml1.sql │ ├── Delete customer information details │ │ └── model.sql │ ├── Insert - All Records Payments │ │ └── dml1.sql │ ├── Insert - All records customer_info table │ │ └── model.sql │ ├── Insert - Specific Records - Tickets │ │ └── dml2.sql │ ├── Insert - specific values customer_info table │ │ └── model.sql │ ├── Insert Records - Student │ │ └── Insert Records - Student │ │ │ └── dml2.sql │ ├── Insert Records - Department │ │ └── Insert Records - Department │ │ │ └── insert.sql │ ├── Insert Records - Marks │ │ └── Insert Records - Marks │ │ │ └── insert5.sql │ ├── Insert Records - Payments │ │ └── Insert Records - Payments │ │ │ └── dml1.sql │ ├── Insert Records - Subject │ │ └── Insert Records - Subject │ │ │ └── insert4.sql │ ├── Insert Records - Tickets │ │ └── Insert Records - Tickets │ │ │ └── dml2.sql │ ├── Insert Records -Staff │ │ └── Insert Records -Staff │ │ │ └── insert3.sql │ ├── Insert Records into Course table │ │ └── Insert Records into Course table │ │ │ └── sample.sql │ ├── Insert Records into Guest table │ │ └── sample.sql │ ├── Insert Records into Resort table │ │ └── sample.sql │ ├── Insert Records into Student table │ │ └── Insert Records into Student table │ │ │ └── sample.sql │ ├── Remove Course Details │ │ └── Remove Course Details │ │ │ └── sample.sql │ ├── Remove Registration Details │ │ └── Remove Registration Details │ │ │ └── sample.sql │ ├── Remove Resort Details │ │ └── Remove Resort Details │ │ │ └── sample.sql │ ├── Remove sales information details │ │ └── model.sql │ ├── Update Address of a student │ │ └── Update Address of a student │ │ │ └── sample.sql │ ├── Update Android version and Battery-Life │ │ └── model.sql │ ├── Update Buses table │ │ └── update1.sql │ ├── Update Fees for short courses │ │ └── Update Fees for short courses │ │ │ └── sample.sql │ ├── Update Mobile Price details │ │ └── model.sql │ ├── Update Mobile Warranty details based on manufacturer │ │ └── model.sql │ ├── Update Mobile Warranty details │ │ └── dml2.sql │ ├── Update Phone in Guest Table │ │ └── Update Phone in Guest Table │ │ │ └── sample.sql │ ├── Update Schedule table │ │ └── dml3.sql │ ├── Update star-rating in Resort Tables │ │ └── sample.sql │ ├── Update table Schedule │ │ └── Update table Schedule │ │ │ └── dml3.sql │ └── Update- Multiple attributes - Schedule table │ │ └── dml2.sql ├── Function - Scalar _ Aggregate Hands on │ ├── Average mark greater than 80 │ │ └── group5.sql │ ├── Average mark │ │ └── group4.sql │ ├── Change Case of Guest Name │ │ └── sample.sql │ ├── Concatenating Details │ │ └── singlerow3.sql │ ├── Concatenating Staff details │ │ └── singlerow4.sql │ ├── Count the Characters in Review Comments │ │ └── sample.sql │ ├── Count the characters in customer name │ │ └── model.sql │ ├── Customer Address │ │ └── model.sql │ ├── Customer name in Upper case │ │ └── model.sql │ ├── Display Student Name along with age │ │ └── sample.sql │ ├── Feedback date │ │ └── model.sql │ ├── Find the Hottest and Coldest Temperature │ │ └── sample.sql │ ├── Formatting Date │ │ └── singlerow2bms.sql │ ├── Guest contact details │ │ └── sample.sql │ ├── IME number with model name │ │ └── model.sql │ ├── Length of Student name │ │ └── singlerow5.sql │ ├── List Department Name │ │ └── singlerow2.sql │ ├── Manufacturer details based on warranty │ │ └── model.sql │ ├── Manufacturer with number of models │ │ └── sample.sql │ ├── Maximum Bus Tickets Fare │ │ └── groupfunction1bms.sql │ ├── Maximum Duration of the Stay │ │ └── sample.sql │ ├── Minimum Mark │ │ └── group3.sql │ ├── Mobile details based on maximum price │ │ └── model.sql │ ├── Mobile details with price description │ │ └── model.sql │ ├── Number of Buses │ │ └── groupfuction2bms.sql │ ├── Number of Guests In each Resort │ │ └── sample.sql │ ├── Number of Resort under each Manager │ │ ├── Calculate the Sleep Capacity and Bed Rooms for Resort .zip │ │ └── sample.sql │ ├── Number of Tickets Booked │ │ └── groupfuction3bms.sql │ ├── Number of departments │ │ └── group1.sql │ ├── Password Generation │ │ └── singlerow1bms.sql │ ├── Resortwise count of Bedrooms in each Resort │ │ └── sample.sql │ ├── Sales details based on date │ │ └── model.sql │ ├── Sales details based on discount │ ├── Sales formatted date │ │ └── model.sql │ ├── Student Count │ │ └── group2.sql │ ├── Student ID based on Joining Month │ │ └── sample.sql │ ├── Student Name │ │ └── sample.sql │ ├── Student address │ │ └── SingleRow1.sql │ ├── Total Guests In each Resort │ │ └── sample.sql │ ├── Total amount on Sales │ │ └── sample.sql │ ├── Total amount paid by each guest │ │ └── sample.sql │ ├── Total sales and average sales │ │ └── model.sql │ └── _Comments based on Star Rating │ │ └── sample.sql ├── Joins _ Subquery │ ├── Block number based on Maximum department located │ │ └── subquery1.sql │ ├── Buses based on Source and Destination │ │ └── joins2bms.sql │ ├── Cabin Type and Bedroom Count in each Resort │ │ └── Cabin Type and Bedroom Count in each Resort │ │ │ └── sample.sql │ ├── Cities having Summer Temperature More than Jaipur │ │ └── sample.sql │ ├── Cities having Winter Temperature More than Jaipur │ │ └── sample.sql │ ├── Course name based on number of student registered │ │ └── sample.sql │ ├── Customer details based on booking count │ │ └── Customer details based on booking count │ │ │ └── subquery2bms.sql │ ├── Customer details based on count of mobiles purchased │ ├── Customer using HDFC bank │ │ └── subquery3bms.sql │ ├── Customer using SBI bank │ │ └── subquery3bms.sql │ ├── Customer-Mobiles based on price │ │ └── model.sql │ ├── Department Name with Maximum Student Count │ │ └── subquery3.sql │ ├── Department has Least Student Count │ │ └── join2.sql │ ├── Department has Maximum Staff │ │ └── joins6.sql │ ├── Department with Staff Count │ │ └── joins5.sql │ ├── Department with Student Count │ │ └── joins1.sql │ ├── Display Cabin Types and its Charges │ │ └── Display Cabin Types and its Charges │ │ │ └── sample.sql │ ├── Distributor details with specification and discount │ │ └── model.sql │ ├── Fetch Resort Details │ │ └── Fetch Resort Details │ │ │ └── sample.sql │ ├── Fetch Second highest cabin cost │ │ └── sample.sql │ ├── Fetch Second maximum Fees │ │ └── sample.sql │ ├── Guest details and Total Charges paid │ │ └── sample.sql │ ├── Guest who paid highest charges │ │ └── Guest who paid highest charges │ │ │ ├── sample(1).sql │ │ │ └── sample.sql │ ├── Guest_s Check-In _ Check-Out Details │ │ └── Guest_s Check-In _ Check-Out Details │ │ │ └── sample.sql │ ├── Managers from Same City │ │ └── sample.sql │ ├── Maximum amount paid by Guest │ │ └── Maximum amount paid by Guest │ │ │ ├── sample(1).sql │ │ │ └── sample.sql │ ├── Maximum mark in Subject with Staff name │ │ └── joins11.sql │ ├── Maximum repeated number │ │ └── Main.java │ ├── Maximum score in the particular subject │ │ └── subquery8.sql │ ├── Minimum Travel Time │ │ ├── Mobile model with max sales.zip │ │ └── subquery1bms.sql │ ├── Mobile details based on OS │ │ └── model.sql │ ├── Mobile details with maximum warranty │ │ └── sample.sql │ ├── Mobile model with max sales │ │ └── model.sql │ ├── Mobile model with min sales │ │ └── model.sql │ ├── Payments made by Guest │ │ └── sample.sql │ ├── PointOfInterest Locations in Chennai │ │ └── PointOfInterest Locations in Chennai │ │ │ ├── sample(1).sql │ │ │ └── sample.sql │ ├── Resort Manager_s Details │ │ └── sample.sql │ ├── Resort that charges the highest │ │ └── sample.sql │ ├── Resort with Least Capacity │ │ └── Resort with Least Capacity │ │ │ ├── sample(1).sql │ │ │ └── sample.sql │ ├── Resortwise Revenue Generated │ │ └── Resortwise Revenue Generated │ │ │ └── sample.sql │ ├── Review Comment by Guest │ │ └── Review Comment by Guest │ │ │ ├── sample(1).sql │ │ │ └── sample.sql │ ├── Review Comment for all Resort │ │ └── Review Comment for all Resort │ │ │ ├── sample(1).sql │ │ │ └── sample.sql │ ├── Review Comment for star rating Resort │ │ └── Review Comment for star rating Resort │ │ │ ├── sample(1).sql │ │ │ └── sample.sql │ ├── Review Comments Shared by Guest │ │ └── Review Comments Shared by Guest │ │ │ ├── sample(1).sql │ │ │ └── sample.sql │ ├── Second maximum Fees │ │ └── sample.sql │ ├── Staff based on Department │ │ └── subquery4.sql │ ├── Staff details based on subjects │ │ └── subquery6.sql │ ├── Staff details without handling any subjects │ │ └── subquery7.sql │ ├── Student - Department Based on City │ │ └── joins3.sql │ ├── Student ID with Total Fees │ │ └── sample.sql │ ├── Student Name alone with DOJ and DOC │ │ └── sample.sql │ ├── Student Name and Course Name │ │ └── sample.sql │ ├── Student Name based on Department │ │ └── joins4.sql │ ├── Student and their Department Based on City │ │ └── Student and their Department Based on City │ │ │ └── joins3.sql │ ├── Student details with subject name │ │ └── subquery10.sql │ ├── Student mark in particular subject │ │ └── joins9.sql │ ├── Student name list based on department name │ │ └── subquery2.sql │ ├── Student name with Computer Programming marks │ │ └── subquery11.sql │ ├── Student name with their Highest Mark │ │ └── joins10.sql │ ├── Student with Minimum mark │ │ └── joins8.sql │ ├── Students with Highest Mark │ │ └── joins10.sql │ ├── Students details based mark scored │ │ └── subquery9.sql │ ├── Subject with Staff Details │ │ └── join7.sql │ ├── Top Performer in Software Engineering │ │ └── subquery12.sql │ ├── Total fees collected from each course │ │ └── sample.sql │ ├── Townname for PointOfInterest locations │ │ └── Townname for PointOfInterest locations │ │ │ ├── sample(1).sql │ │ │ └── sample.sql │ ├── User and Payment details │ │ └── User and Payment details │ │ │ ├── joins1bms(1).sql │ │ │ └── joins1bms.sql │ ├── User details based on Cancellation │ │ └── User details based on Cancellation │ │ │ └── joins3bms.sql │ └── pointofinterest locations in each Town │ │ └── pointofinterest locations in each Town │ │ ├── sample(1).sql │ │ └── sample.sql └── Select Statement │ ├── Bus details based on availability │ └── bsselect5bms.sql │ ├── Bus number without duplicates │ └── bsselect6bms.sql │ ├── Course Details │ └── sample.sql │ ├── Course details based on Duration │ └── sample.sql │ ├── Customer details based on address │ └── model.sql │ ├── Customer details based on condition │ └── model.sql │ ├── Customer details based on phone number │ └── model.sql │ ├── Customer name with 2nd letter _a_ │ └── model.sql │ ├── Department name based on block number │ └── bselect3.sql │ ├── Details about AC Buses │ └── bsselect7bms.sql │ ├── Display Guests stayed with Pets │ └── sample.sql │ ├── Display Mobile specification details │ └── sample.sql │ ├── Display Resort based on Star-rating │ └── sample.sql │ ├── Display Resort Details │ └── sample.sql │ ├── Display Student Location │ └── sample.sql │ ├── Display Students Details │ └── bselect4.sql │ ├── Display Tourist Spots │ └── sample.sql │ ├── Display Types of Rooms available in Resorts │ └── sample.sql │ ├── Display Unique Student Location │ └── sample.sql │ ├── Display User details │ └── bselect1bms.sql │ ├── Display based on Summer Temperature of Cities │ └── sample.sql │ ├── Display the review with resort ID │ └── sample.sql │ ├── Distributor details │ └── model.sql │ ├── List Buses details │ └── bsselect3bms.sql │ ├── List Department names │ └── bselect1.sql │ ├── List Schedule details │ └── bsselect2bms.sql │ ├── List of Student names │ └── bselect2.sql │ ├── Mobile price discount details │ └── sample.sql │ ├── Mobile specification details based on battery life │ └── sample.sql │ ├── Mobile specification details based on memory capacity │ └── sample.sql │ ├── Sales details based on price and discount │ └── model.sql │ ├── Select - Specific Sales details │ └── model.sql │ ├── Select - all Course Details │ └── sample.sql │ ├── Select Unique Mobile Manufacturer details │ └── model.sql │ ├── Select all - Distributor details │ └── sample.sql │ ├── Student ID based on course │ └── sample.sql │ ├── Student Name based on a condition │ └── sample.sql │ ├── Student details based on Location and Date of Birth │ └── sample.sql │ ├── Student details based on city │ └── bselect7.sql │ ├── Students Name based on Start and Ending Character │ └── bselect6.sql │ └── Students name Starts with A │ └── bselect5.sql ├── README.md ├── UNIX ├── Bourne Shell │ ├── Script to Change Permission │ │ └── script3.sh │ ├── Script to Check Permission │ │ └── script2.sh │ ├── Script to Count │ │ └── script1.sh │ ├── ShellScript1 │ │ └── scriptprog1.sh │ ├── ShellScript2 │ │ └── scriptprog2.sh │ ├── ShellScript4 │ │ └── scriptprog4.sh │ ├── Shellscript3 │ │ └── scriptprog3.sh │ └── Shellscript5 │ │ └── scriptprog5.sh ├── File System │ ├── Copy Complete Directory │ │ └── copydirectory.sh │ ├── Copy File 1 │ │ └── copy.sh │ ├── Copy File 2 │ │ └── copy2.sh │ ├── Copy File 3 │ │ └── copy3.sh │ ├── Copy File 4 │ │ └── copy4.sh │ ├── Copy File 5 │ │ └── copy5.sh │ ├── Copy File 6 │ │ └── copy6.sh │ ├── Directory Creation - 1 │ │ └── directory.sh │ ├── Directory Creation - 2 │ │ └── directory.sh │ ├── File Permission - 1 │ │ └── filepermission.sh │ ├── File Permission - 2 │ │ └── filepermission2.sh │ ├── File Permission - 3 │ │ └── filepermission3.sh │ ├── File Permission - 4 │ │ └── filepermission4.sh │ ├── File Permission - 5 │ │ └── fileper1.sh │ ├── File Permission - 7 │ │ └── fileper2.sh │ ├── File Permission - 8 │ │ └── fileper.sh │ ├── File permission - 6 │ │ └── filper2.sh │ ├── Move File 1 │ │ └── movefile1.sh │ ├── Move File 2 │ │ └── move2.sh │ ├── Move File 3 │ │ └── movequestion2.sh │ ├── Move File 4 │ │ └── movefile1.sh │ ├── Move File 5 │ │ └── mvfile.sh │ ├── Move File 6 │ │ └── movefil2.sh │ ├── Remove Directory │ │ └── rmdir3.sh │ ├── Remove File - 1 │ │ └── remove.sh │ └── Remove File - 2 │ │ └── rmfile.sh ├── Filters │ ├── Count Files │ │ └── cmd7.sh │ ├── Find String 6 │ │ └── findstring6.sh │ ├── Find string 2 │ │ └── findstring2.sh │ ├── Find string 3 │ │ └── findstring3.sh │ ├── Find string 4 │ │ └── findstring4.sh │ ├── Find string 5 │ │ └── findstring5.sh │ ├── Find string 7 │ │ └── findstring7.sh │ ├── Find string 8 │ │ └── findstring8.sh │ ├── Find string1 │ │ └── findstring1.sh │ ├── Grep Command - 1 │ │ └── cmd1.sh │ ├── Grep Command - 2 │ │ └── cmd5.sh │ ├── Grep Command - 3 │ │ └── cmd9.sh │ ├── List Files │ │ └── cmd11.sh │ ├── List Names │ │ └── cmd4.sh │ ├── Move File 4 │ │ └── Move File 4 │ │ │ └── movefile1.sh │ ├── Pattern Search │ │ └── cmd12.sh │ ├── Redirect Command - 1 │ │ └── cmd3.sh │ ├── Redirect Command - 2 │ │ └── cmd10.sh │ ├── Tail Command - 1 │ │ └── cmd2.sh │ ├── Tail Command - 2 │ │ └── cmd6.sh │ └── Word Search │ │ └── cmd8.sh └── Introduction to Unix │ ├── Calculator1 │ └── calculator.sh │ ├── Calendar 1 │ └── calendar.sh │ ├── Calendar 2 │ └── calendar2.sh │ ├── Calendar 3 │ └── Calendar 3 │ │ └── calendar.sh │ ├── Calendar 4 │ └── Calendar 4 │ │ └── calendar2.sh │ ├── Calendar 5 │ └── Calendar3.sh │ ├── Date 1 │ └── date.sh │ ├── Date 2 │ └── Date 2 │ │ └── date2.sh │ ├── Date 3 │ └── date3.sh │ ├── DiskUage-3 │ ├── DiskUsage 1 │ └── space.sh │ ├── DiskUsage 2 │ └── freespce2.sh │ ├── DiskUsage 3 │ └── space3.sh │ ├── List of Files 1 │ └── list.sh │ ├── List of Files 2 │ └── List of Files 2 │ │ └── list2.sh │ └── List of Files 3 │ └── list3.sh └── Web Technology ├── Bootstrap ├── About TrinQet │ ├── about.html │ └── office.jpg ├── Bootstrap Panel │ └── Panel.html ├── Bootstrap Table │ └── bstable.html ├── Bootstrap Typography │ └── bootstrapex.html ├── Bootstrap Well and Glyphicons │ └── well.html ├── Bootstrap_s Navigation Bar │ └── navigation.html ├── Inline Forms │ └── inline.html ├── Page Layout │ ├── img3.png │ └── layout.html └── Responsive Web Pages │ ├── app.css │ ├── nature.jpg │ └── responsive.html ├── CSS ├── Book A Show - Online Ticket Booking │ └── ticket.html ├── CSS Effect │ ├── apple.jpg │ ├── imgeffect.html │ └── mango.jpg ├── Navigation Bar using CSS3 │ └── navigationbar.html ├── Pricing Tables │ └── pricetable.html └── WebPage Creation │ └── webpage.html ├── HTML ├── Books Form │ └── bookform.html ├── Simple CALCULATOR │ ├── Calculator.html │ ├── calc.jpg │ ├── calculator.jpg │ └── reset.jpg ├── TRAVEL RESERVATION FORM │ └── TravelForm.html └── ZEN Bank - Login │ └── login.html ├── JavaScript ├── DAC Bank Loan Automation │ └── availLoan.html ├── Discount Price Calculation │ └── discountprice.html ├── E-BOOK Portal │ └── EBook.html ├── KASA IT Finishing School - Feedback Automation │ └── feedback.html └── Palindrome Check │ └── palin.html └── Jquery ├── Check Box Using JQuery ├── chkbox.html └── chkbox.js ├── Customer Data ├── customer.html └── customer.js ├── Drag an Object ├── drag.html └── fish.jpg ├── Three Divisions ├── divisions.html └── divisions.js └── Window Resize └── window.html /Algorithms Analysis and Design Concepts/Bank Ticketing System/Ticket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Bank Ticketing System/Ticket.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Chocolate Boxes/Chocolate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Chocolate Boxes/Chocolate.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Credit Points - STACK/ShopMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Credit Points - STACK/ShopMain.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Linked List - Recursion/ListDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Linked List - Recursion/ListDriver.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Merge Sort - Arrays/MergeSortDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Merge Sort - Arrays/MergeSortDriver.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Occurrences/DeleteMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Occurrences/DeleteMain.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Quick Sort Algorithm/QuickSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Quick Sort Algorithm/QuickSort.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Replace Character/ReplaceDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Replace Character/ReplaceDriver.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Reversing a List/List.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Reversing a List/List.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Scorecard - Queue/ScoreCardDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Scorecard - Queue/ScoreCardDriver.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Singly Linked List/ListDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Singly Linked List/ListDriver.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Stack Operation/StackDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Stack Operation/StackDriver.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Stack Reverse - Recursion/StackDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Stack Reverse - Recursion/StackDriver.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/String Reverse - Recursion/ReverseDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/String Reverse - Recursion/ReverseDriver.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/String Sorting/SortDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/String Sorting/SortDriver.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/Tower-of-Hanoi/TowerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/Tower-of-Hanoi/TowerTest.java -------------------------------------------------------------------------------- /Algorithms Analysis and Design Concepts/World Cup -Binary Search/BinarySearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Algorithms Analysis and Design Concepts/World Cup -Binary Search/BinarySearch.java -------------------------------------------------------------------------------- /JAVA/Arrays/Alternate Numbers Difference/Alternate Numbers Difference/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Alternate Numbers Difference/Alternate Numbers Difference/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Array Compatiblilty/CompatibleArrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Array Compatiblilty/CompatibleArrays.java -------------------------------------------------------------------------------- /JAVA/Arrays/Array square/Array square/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Array square/Array square/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Average and Grade Calculation/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Average and Grade Calculation/Student.java -------------------------------------------------------------------------------- /JAVA/Arrays/Average and Grade Calculation/StudentMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Average and Grade Calculation/StudentMain.java -------------------------------------------------------------------------------- /JAVA/Arrays/Country wise population/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Country wise population/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Cumulative sum in an array/CumulativeSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Cumulative sum in an array/CumulativeSum.java -------------------------------------------------------------------------------- /JAVA/Arrays/Display Date/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Display Date/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Display array values in reverse order/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Display array values in reverse order/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Display array values/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Display array values/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Duplicate an element/DuplicateElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Duplicate an element/DuplicateElement.java -------------------------------------------------------------------------------- /JAVA/Arrays/Find Average Age/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Find Average Age/Test.java -------------------------------------------------------------------------------- /JAVA/Arrays/Find _ Display the position of a number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Find _ Display the position of a number/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Find the Player Details/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Find the Player Details/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Find the Player Details/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Find the Player Details/Player.java -------------------------------------------------------------------------------- /JAVA/Arrays/Find the Player Details/PlayerUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Find the Player Details/PlayerUtility.java -------------------------------------------------------------------------------- /JAVA/Arrays/Find the highest mark/Highestmark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Find the highest mark/Highestmark.java -------------------------------------------------------------------------------- /JAVA/Arrays/Generate number using odd digits/Generate number using odd digits/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Generate number using odd digits/Generate number using odd digits/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Highest Mark in Each Semester/HighestMarkPerSem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Highest Mark in Each Semester/HighestMarkPerSem.java -------------------------------------------------------------------------------- /JAVA/Arrays/Interchange the elements of an array/InterchangeArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Interchange the elements of an array/InterchangeArray.java -------------------------------------------------------------------------------- /JAVA/Arrays/Make a number/EvenNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Make a number/EvenNumber.java -------------------------------------------------------------------------------- /JAVA/Arrays/Marathon Data Analysis (2D Array)/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Marathon Data Analysis (2D Array)/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Mark Comparison/Mark Comparison/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Mark Comparison/Mark Comparison/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Maximum Difference/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Maximum Difference/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Maximum repeated number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Maximum repeated number/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Next Greatest number/Next Greatest number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Next Greatest number/Next Greatest number/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Numerology/Numerology.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Numerology/Numerology.java -------------------------------------------------------------------------------- /JAVA/Arrays/Pass and Fail Count/Pass and Fail Count/Count.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Pass and Fail Count/Pass and Fail Count/Count.java -------------------------------------------------------------------------------- /JAVA/Arrays/Retail Shop/Shop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Retail Shop/Shop.java -------------------------------------------------------------------------------- /JAVA/Arrays/Search a Course/Course.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Search a Course/Course.java -------------------------------------------------------------------------------- /JAVA/Arrays/Sort the first and second half of an array/ArraySort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Sort the first and second half of an array/ArraySort.java -------------------------------------------------------------------------------- /JAVA/Arrays/Sort the values in descending order/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Sort the values in descending order/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Sort the values/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Sort the values/Main.java -------------------------------------------------------------------------------- /JAVA/Arrays/Sum of factorial of positive and single digit numbers in an array/Factorial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Sum of factorial of positive and single digit numbers in an array/Factorial.java -------------------------------------------------------------------------------- /JAVA/Arrays/Sum of the corresponding elements in 2 arrays/ArrayAccumulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Sum of the corresponding elements in 2 arrays/ArrayAccumulator.java -------------------------------------------------------------------------------- /JAVA/Arrays/Sum of the maximum and the minimum element/Sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Sum of the maximum and the minimum element/Sum.java -------------------------------------------------------------------------------- /JAVA/Arrays/Zig zag Array/Zig zag Array/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Arrays/Zig zag Array/Zig zag Array/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Average and Grade Calculation/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Average and Grade Calculation/Student.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Average and Grade Calculation/StudentMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Average and Grade Calculation/StudentMain.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/BankAccountDetails/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/BankAccountDetails/Account.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/BankAccountDetails/AccountDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/BankAccountDetails/AccountDetails.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Book Detail/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Book Detail/Book.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Book Detail/TestBook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Book Detail/TestBook.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Calculate Expiry Date - Use Calendar/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Calculate Expiry Date - Use Calendar/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Calculate Years of Experience/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Calculate Years of Experience/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Call Details/Call Details/Call.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Call Details/Call Details/Call.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Call Details/Call Details/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Call Details/Call Details/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Date Validation - Use SimpleDateFormat/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Date Validation - Use SimpleDateFormat/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/DreamTek Company/DreamTek Company/Associate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/DreamTek Company/DreamTek Company/Associate.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/DreamTek Company/DreamTek Company/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/DreamTek Company/DreamTek Company/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Employee Salary Calculation/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Employee Salary Calculation/Employee.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Employee Salary Calculation/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Employee Salary Calculation/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Employee rating/Employee rating/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Employee rating/Employee rating/Employee.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Employee rating/Employee rating/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Employee rating/Employee rating/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Movie Ticket Calculation/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Movie Ticket Calculation/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Movie Ticket Calculation/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Movie Ticket Calculation/Movie.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Student Details - Constructor/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Student Details - Constructor/Student.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Student Details - Constructor/StudentMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Student Details - Constructor/StudentMain.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Student and Department Detail/Department.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Student and Department Detail/Department.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Student and Department Detail/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Student and Department Detail/Student.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Student and Department Detail/TestMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Student and Department Detail/TestMain.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Ticket Price Calculation - Static/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Ticket Price Calculation - Static/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Ticket Price Calculation - Static/Ticket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Ticket Price Calculation - Static/Ticket.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Token Automation in Bank/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Token Automation in Bank/Main.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Token Automation in Bank/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Token Automation in Bank/Token.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Travel Details/BusTicket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Travel Details/BusTicket.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Travel Details/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Travel Details/Person.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Travel Details/TestMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Travel Details/TestMain.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Volume calculator- Over Loading/TestMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Volume calculator- Over Loading/TestMain.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/Volume calculator- Over Loading/VolumeCalculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/Volume calculator- Over Loading/VolumeCalculator.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/ZeeZee bank/ZeeZee bank/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/ZeeZee bank/ZeeZee bank/Account.java -------------------------------------------------------------------------------- /JAVA/Classes and Objects, Packages/ZeeZee bank/ZeeZee bank/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Classes and Objects, Packages/ZeeZee bank/ZeeZee bank/Main.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/ArrayList - Simple Handson1/UserInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/ArrayList - Simple Handson1/UserInterface.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/ArrayList - Simple Handson2/UserInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/ArrayList - Simple Handson2/UserInterface.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Book Manipulation/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Book Manipulation/Book.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Book Manipulation/Library.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Book Manipulation/Library.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Book Manipulation/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Book Manipulation/Main.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Count of Each Words/CountOfWords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Count of Each Words/CountOfWords.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/HashMap - Simple Handson1/UserInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/HashMap - Simple Handson1/UserInterface.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Member Manipulation/Library.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Member Manipulation/Library.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Member Manipulation/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Member Manipulation/Main.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Member Manipulation/Member.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Member Manipulation/Member.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Number of New Words/UniqueWords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Number of New Words/UniqueWords.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/PhoneBook Manipulation/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/PhoneBook Manipulation/Contact.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/PhoneBook Manipulation/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/PhoneBook Manipulation/Main.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/PhoneBook Manipulation/PhoneBook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/PhoneBook Manipulation/PhoneBook.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Remove Duplicates from the Names/TestMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Remove Duplicates from the Names/TestMain.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Retrieve Student Info/Retrieve Student Info/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Retrieve Student Info/Retrieve Student Info/Student.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/Retrieve Student Info/Retrieve Student Info/TestMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/Retrieve Student Info/Retrieve Student Info/TestMain.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/TreeMap - Simple Handson1/UserInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/TreeMap - Simple Handson1/UserInterface.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/TreeSet - Simple Handson1/UserInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/TreeSet - Simple Handson1/UserInterface.java -------------------------------------------------------------------------------- /JAVA/Collection, Generics and Stream API/TreeSet - Simple Handson2/UserInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Collection, Generics and Stream API/TreeSet - Simple Handson2/UserInterface.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Bill Generation/SnacksDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Bill Generation/SnacksDetails.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Car Details/CarDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Car Details/CarDetails.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Celcius to Farenheit Conversion/CelsiusConversion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Celcius to Farenheit Conversion/CelsiusConversion.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Check for Leap Year/LeapYear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Check for Leap Year/LeapYear.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Checking budget of mobile/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Checking budget of mobile/Main.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Compute Gain Percentage/Gain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Compute Gain Percentage/Gain.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Convert Numbers into Months/NumToMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Convert Numbers into Months/NumToMonth.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Display Characters/AsciValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Display Characters/AsciValue.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Electricity bill calculation/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Electricity bill calculation/Main.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Find Season/Season.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Find Season/Season.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Finding Range Of The Number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Finding Range Of The Number/Main.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Finding even number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Finding even number/Main.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Highest Placement/Placement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Highest Placement/Placement.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Income Calulation/IncomeCal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Income Calulation/IncomeCal.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Increment Calculation/IncrementCalculation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Increment Calculation/IncrementCalculation.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Movie Ticket Calculation/CinemaTicket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Movie Ticket Calculation/CinemaTicket.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Print Customer Details/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Print Customer Details/Customer.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Print Message/PrintMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Print Message/PrintMessage.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Print Username/Username.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Print Username/Username.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Registration Details/RegistrationDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Registration Details/RegistrationDetails.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Road Signaling/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Road Signaling/Main.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Spell Check/Character.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Spell Check/Character.java -------------------------------------------------------------------------------- /JAVA/Control Structures/Triangle Validation/Triangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Control Structures/Triangle Validation/Triangle.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Array Manipulation - Use try with multi catch/ArrayException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Array Manipulation - Use try with multi catch/ArrayException.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Calculate Product cost - Try with multiple catch/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Calculate Product cost - Try with multiple catch/Main.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Display Array element - Usage of finally/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Display Array element - Usage of finally/Main.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Display Product Details - User defined Exception/InvalidPriceException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Display Product Details - User defined Exception/InvalidPriceException.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Display Product Details - User defined Exception/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Display Product Details - User defined Exception/Main.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Divide two numbers - Use finally/Division.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Divide two numbers - Use finally/Division.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Fund Transfer/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Fund Transfer/Account.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Fund Transfer/InvalidIFSCCodeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Fund Transfer/InvalidIFSCCodeException.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Fund Transfer/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Fund Transfer/Main.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Get Input and handle exception/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Get Input and handle exception/Main.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Marathon Registration/Marathon Registration/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Marathon Registration/Marathon Registration/Main.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Marathon Registration/Marathon Registration/Marathon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Marathon Registration/Marathon Registration/Marathon.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Register a Candidate - User defined Exception(with throw and throws)/Candidate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Register a Candidate - User defined Exception(with throw and throws)/Candidate.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Register a Candidate - User defined Exception(with throw and throws)/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Register a Candidate - User defined Exception(with throw and throws)/Main.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Simple Calculator/Calculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Simple Calculator/Calculator.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Simple Calculator/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Simple Calculator/Main.java -------------------------------------------------------------------------------- /JAVA/Exception Handling/Validate Date using ParseException - Use try catch throws (1)/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Exception Handling/Validate Date using ParseException - Use try catch throws (1)/Main.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Account Manipulation - Abstract class/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Account Manipulation - Abstract class/Account.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Account Manipulation - Abstract class/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Account Manipulation - Abstract class/Customer.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Account Manipulation - Abstract class/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Account Manipulation - Abstract class/Main.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Account Manipulation - Abstract class/SavingsAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Account Manipulation - Abstract class/SavingsAccount.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Area Calculation - abstract class/Circle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Area Calculation - abstract class/Circle.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Area Calculation - abstract class/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Area Calculation - abstract class/Main.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Area Calculation - abstract class/Rectangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Area Calculation - abstract class/Rectangle.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Area Calculation - abstract class/Shape.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Area Calculation - abstract class/Shape.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Area Calculation - abstract class/Triangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Area Calculation - abstract class/Triangle.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Check Number Type/NumberType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Check Number Type/NumberType.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Check Number Type/NumberTypeUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Check Number Type/NumberTypeUtility.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Check for Existence of Customer - equals method/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Check for Existence of Customer - equals method/Main.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Contact Details of Hosteller/Hosteller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Contact Details of Hosteller/Hosteller.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Contact Details of Hosteller/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Contact Details of Hosteller/Main.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Contact Details of Hosteller/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Contact Details of Hosteller/Student.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Employee Loan Eligibility - Polymorphism/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Employee Loan Eligibility - Polymorphism/Employee.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Employee Loan Eligibility - Polymorphism/Loan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Employee Loan Eligibility - Polymorphism/Loan.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Employee Loan Eligibility - Polymorphism/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Employee Loan Eligibility - Polymorphism/Main.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Get Text and Display Welcome Message/DisplayText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Get Text and Display Welcome Message/DisplayText.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Get Text and Display Welcome Message/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Get Text and Display Welcome Message/Main.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance - Project Details/Company.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance - Project Details/Company.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance - Project Details/InternalProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance - Project Details/InternalProject.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance - Project Details/Project.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance - Project Details/Project.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance-Account/Inheritance-Account/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance-Account/Inheritance-Account/Account.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance-Account/Inheritance-Account/SavingsAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance-Account/Inheritance-Account/SavingsAccount.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance-Account/Inheritance-Account/TestMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Inheritance-Account/Inheritance-Account/TestMain.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Interface - Weather Service/Temperature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Interface - Weather Service/Temperature.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Interface - Weather Service/TodaysWeather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Interface - Weather Service/TodaysWeather.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Interface - Weather Service/Weather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Interface - Weather Service/Weather.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Interface - Weather Service/WeatherInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Interface - Weather Service/WeatherInfo.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Multiplier - Overloading/Driver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Multiplier - Overloading/Driver.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Multiplier - Overloading/Multiplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Multiplier - Overloading/Multiplier.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PF and Salary Calculation/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PF and Salary Calculation/Employee.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PF and Salary Calculation/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PF and Salary Calculation/Main.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PF and Salary Calculation/PermanentEmployee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PF and Salary Calculation/PermanentEmployee.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PassengerDetails/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PassengerDetails/Main.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PassengerDetails/Passenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PassengerDetails/Passenger.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Perform Calculation/Calculate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Perform Calculation/Calculate.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Perform Calculation/Calculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Perform Calculation/Calculator.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Abstract/Doctor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Abstract/Doctor.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Abstract/Driver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Abstract/Driver.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Abstract/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Abstract/Person.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Inheritance/Doctor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Inheritance/Doctor.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Inheritance/Driver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Inheritance/Driver.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Inheritance/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/PersonIsADoctor-Inheritance/Person.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Polymorphism - Bank Account/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Polymorphism - Bank Account/Account.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Polymorphism - Bank Account/Bank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Polymorphism - Bank Account/Bank.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Polymorphism - Bank Account/CurrentAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Polymorphism - Bank Account/CurrentAccount.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Polymorphism - Bank Account/SavingsAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Polymorphism - Bank Account/SavingsAccount.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Printer-Interface/Driver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Printer-Interface/Driver.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Printer-Interface/LaserPrinter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Printer-Interface/LaserPrinter.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Printer-Interface/Printer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Printer-Interface/Printer.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Validate Name/Validate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Validate Name/Validate.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Validate Name/ValidateUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Validate Name/ValidateUtility.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Vehicle-Loan-Insurance - Use Interface/Insurance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Vehicle-Loan-Insurance - Use Interface/Insurance.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Vehicle-Loan-Insurance - Use Interface/Loan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Vehicle-Loan-Insurance - Use Interface/Loan.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Vehicle-Loan-Insurance - Use Interface/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Vehicle-Loan-Insurance - Use Interface/Main.java -------------------------------------------------------------------------------- /JAVA/Inheritance, Polymorphism, Abstract class, Interface/Vehicle-Loan-Insurance - Use Interface/Vehicle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Inheritance, Polymorphism, Abstract class, Interface/Vehicle-Loan-Insurance - Use Interface/Vehicle.java -------------------------------------------------------------------------------- /JAVA/Iterations/Bonus Points - Bike Race/BikeRace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Bonus Points - Bike Race/BikeRace.java -------------------------------------------------------------------------------- /JAVA/Iterations/Count of Prime numbers/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Count of Prime numbers/Main.java -------------------------------------------------------------------------------- /JAVA/Iterations/Display Month_Day/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Display Month_Day/Main.java -------------------------------------------------------------------------------- /JAVA/Iterations/Display String/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Display String/Main.java -------------------------------------------------------------------------------- /JAVA/Iterations/Factors of a Number/FindFactor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Factors of a Number/FindFactor.java -------------------------------------------------------------------------------- /JAVA/Iterations/Find Number for Given Factorial/FindNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Find Number for Given Factorial/FindNumber.java -------------------------------------------------------------------------------- /JAVA/Iterations/Gold Coin Count/Coins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Gold Coin Count/Coins.java -------------------------------------------------------------------------------- /JAVA/Iterations/List of prime numbers/PrimeNumbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/List of prime numbers/PrimeNumbers.java -------------------------------------------------------------------------------- /JAVA/Iterations/Lucky Number/LuckyNum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Lucky Number/LuckyNum.java -------------------------------------------------------------------------------- /JAVA/Iterations/Number Palindrome/Palindrome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Number Palindrome/Palindrome.java -------------------------------------------------------------------------------- /JAVA/Iterations/Palindrome numbers/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Palindrome numbers/Main.java -------------------------------------------------------------------------------- /JAVA/Iterations/Pencil Count/Count.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Pencil Count/Count.java -------------------------------------------------------------------------------- /JAVA/Iterations/Power of a Number/Power.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Power of a Number/Power.java -------------------------------------------------------------------------------- /JAVA/Iterations/Prime Factors/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Prime Factors/Main.java -------------------------------------------------------------------------------- /JAVA/Iterations/Repetition of a Number/NumberRepetition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Repetition of a Number/NumberRepetition.java -------------------------------------------------------------------------------- /JAVA/Iterations/Reverse The Number (1)/ReverseNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Reverse The Number (1)/ReverseNumber.java -------------------------------------------------------------------------------- /JAVA/Iterations/Reverse the number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Iterations/Reverse the number/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Banner Display/Banner Display/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Banner Display/Banner Display/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Clearance Sale/Clearance Sale/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Clearance Sale/Clearance Sale/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Count at the Cow barn/Count at the Cow barn/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Count at the Cow barn/Count at the Cow barn/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Currency calculator/currency calculator/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Currency calculator/currency calculator/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Daisy’s Locker Number/Daisy’s Locker Number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Daisy’s Locker Number/Daisy’s Locker Number/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Decimal to Fraction/Decimal to Fraction/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Decimal to Fraction/Decimal to Fraction/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Find Profit or Loss/Find Profit or Loss/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Find Profit or Loss/Find Profit or Loss/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Fuel Consumption Calculator/Fuel Consumption Calculator/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Fuel Consumption Calculator/Fuel Consumption Calculator/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Grade Points/Grade Points/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Grade Points/Grade Points/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/KN Agencies Sales Orders/KN Agencies Sales Orders/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/KN Agencies Sales Orders/KN Agencies Sales Orders/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Multiplying adjacent numbers/Multiplying adjacent numbers/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Multiplying adjacent numbers/Multiplying adjacent numbers/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Numerology number/Numerology number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Numerology number/Numerology number/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Pair of Two digits/Pair of Two digits/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Pair of Two digits/Pair of Two digits/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Patient Details/Patient Details/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Patient Details/Patient Details/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Prime numbers ending with one/Prime numbers ending with one/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Prime numbers ending with one/Prime numbers ending with one/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Product Details/Product Details/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Product Details/Product Details/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Product Details/Product Details/Shop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Product Details/Product Details/Shop.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Quadrilaterals/Quadrilaterals/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Quadrilaterals/Quadrilaterals/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Rayan’s Bamboo Tree/Rayan’s Bamboo Tree/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Rayan’s Bamboo Tree/Rayan’s Bamboo Tree/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Siblings Fund Raising/Siblings Fund Raising/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Siblings Fund Raising/Siblings Fund Raising/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Sum and Product/Sum and Product/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Sum and Product/Sum and Product/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Sum of series II/Sum of series II/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Sum of series II/Sum of series II/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Sum of the series/Sum of the series/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Sum of the series/Sum of the series/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Terrace Garden/Terrace Garden/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Terrace Garden/Terrace Garden/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Token Automation in Bank/Token Automation in Bank/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Token Automation in Bank/Token Automation in Bank/Main.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Token Automation in Bank/Token Automation in Bank/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Token Automation in Bank/Token Automation in Bank/Token.java -------------------------------------------------------------------------------- /JAVA/Others(Contol Structures _ Iterations)/Welcoming Freshmen/Welcoming Freshmen/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Others(Contol Structures _ Iterations)/Welcoming Freshmen/Welcoming Freshmen/Main.java -------------------------------------------------------------------------------- /JAVA/Running Case Study 1-6/State Board of Cricket Council –V1.0 _/SBCCBoardManagement/src/com/sbcc/model/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Running Case Study 1-6/State Board of Cricket Council –V1.0 _/SBCCBoardManagement/src/com/sbcc/model/Player.java -------------------------------------------------------------------------------- /JAVA/Running Case Study 1-6/State Board of Cricket Council –V2.0 _/SBCCBoardManagement/src/com/sbcc/model/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Running Case Study 1-6/State Board of Cricket Council –V2.0 _/SBCCBoardManagement/src/com/sbcc/model/Player.java -------------------------------------------------------------------------------- /JAVA/Running Case Study 1-6/State Board of Cricket Council –V3.0 _/SBCCBoardManagement/src/com/sbcc/model/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Running Case Study 1-6/State Board of Cricket Council –V3.0 _/SBCCBoardManagement/src/com/sbcc/model/Player.java -------------------------------------------------------------------------------- /JAVA/Running Case Study 1-6/State Board of Cricket Council –V4.0 _/SBCCBoardManagement/src/com/sbcc/model/Bowler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Running Case Study 1-6/State Board of Cricket Council –V4.0 _/SBCCBoardManagement/src/com/sbcc/model/Bowler.java -------------------------------------------------------------------------------- /JAVA/Running Case Study 1-6/State Board of Cricket Council –V4.0 _/SBCCBoardManagement/src/com/sbcc/model/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Running Case Study 1-6/State Board of Cricket Council –V4.0 _/SBCCBoardManagement/src/com/sbcc/model/Player.java -------------------------------------------------------------------------------- /JAVA/Running Case Study 1-6/State Board of Cricket Council –V5.0 _/SBCCBoardManagement/src/com/sbcc/model/Bowler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Running Case Study 1-6/State Board of Cricket Council –V5.0 _/SBCCBoardManagement/src/com/sbcc/model/Bowler.java -------------------------------------------------------------------------------- /JAVA/Running Case Study 1-6/State Board of Cricket Council –V5.0 _/SBCCBoardManagement/src/com/sbcc/model/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Running Case Study 1-6/State Board of Cricket Council –V5.0 _/SBCCBoardManagement/src/com/sbcc/model/Player.java -------------------------------------------------------------------------------- /JAVA/Running Case Study 1-6/State Board of Cricket Council –V6.0 _/SBCCBoardManagement/src/com/sbcc/model/Bowler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Running Case Study 1-6/State Board of Cricket Council –V6.0 _/SBCCBoardManagement/src/com/sbcc/model/Bowler.java -------------------------------------------------------------------------------- /JAVA/Strings/Alliteration/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Alliteration/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Ascending and descending order/Ascending and descending order/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Ascending and descending order/Ascending and descending order/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Compare two strings/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Compare two strings/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Count consecutive repeating characters/Count consecutive repeating characters/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Count consecutive repeating characters/Count consecutive repeating characters/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Count occurrence of a character/OccurrenceOfChar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Count occurrence of a character/OccurrenceOfChar.java -------------------------------------------------------------------------------- /JAVA/Strings/Count of alphabets/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Count of alphabets/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Count repeating words/Count repeating words/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Count repeating words/Count repeating words/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Count the number of characters/Count.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Count the number of characters/Count.java -------------------------------------------------------------------------------- /JAVA/Strings/Employee ID Validation/UserMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Employee ID Validation/UserMain.java -------------------------------------------------------------------------------- /JAVA/Strings/Find and Replace/ReplaceWord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Find and Replace/ReplaceWord.java -------------------------------------------------------------------------------- /JAVA/Strings/Frame the Expression/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Frame the Expression/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/InitCap/InitCap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/InitCap/InitCap.java -------------------------------------------------------------------------------- /JAVA/Strings/Kids school/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Kids school/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Late to bank/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Late to bank/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Least offer/Least offer/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Least offer/Least offer/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Least repeating character/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Least repeating character/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Length of String/FindLength.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Length of String/FindLength.java -------------------------------------------------------------------------------- /JAVA/Strings/Login/Login.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Login/Login.java -------------------------------------------------------------------------------- /JAVA/Strings/Mail Domain/Mail Domain/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Mail Domain/Mail Domain/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/PAN Card Validation (1)/UserMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/PAN Card Validation (1)/UserMain.java -------------------------------------------------------------------------------- /JAVA/Strings/PAN Card Validation/PanCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/PAN Card Validation/PanCard.java -------------------------------------------------------------------------------- /JAVA/Strings/Palindrome/Palindrome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Palindrome/Palindrome.java -------------------------------------------------------------------------------- /JAVA/Strings/Password Generation/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Password Generation/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Print the characters in descending order/Print the characters in descending order/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Print the characters in descending order/Print the characters in descending order/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Print unique characters/UniqueChar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Print unique characters/UniqueChar.java -------------------------------------------------------------------------------- /JAVA/Strings/Reverse and find palindrome/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Reverse and find palindrome/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Sentence - Convert to upper and lower/Sentence - Convert to upper and lower/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Sentence - Convert to upper and lower/Sentence - Convert to upper and lower/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/String Concatenation/Authority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/String Concatenation/Authority.java -------------------------------------------------------------------------------- /JAVA/Strings/String Contains/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/String Contains/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/String Spilt-Up/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/String Spilt-Up/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/String length/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/String length/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/SubString/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/SubString/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Substitution Cipher Technique/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Substitution Cipher Technique/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Temperature Summary/Temperature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Temperature Summary/Temperature.java -------------------------------------------------------------------------------- /JAVA/Strings/Two words of same letters/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Two words of same letters/Main.java -------------------------------------------------------------------------------- /JAVA/Strings/Vowels in a FishBowl/Vowels in a FishBowl/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JAVA/Strings/Vowels in a FishBowl/Vowels in a FishBowl/Main.java -------------------------------------------------------------------------------- /JSON/Generate XSD 2/hotels.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JSON/Generate XSD 2/hotels.xsd -------------------------------------------------------------------------------- /JSON/Generate XSD 4/employee.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JSON/Generate XSD 4/employee.xsd -------------------------------------------------------------------------------- /JSON/Generate XSD For Breakfast Menu/food.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JSON/Generate XSD For Breakfast Menu/food.xsd -------------------------------------------------------------------------------- /JSON/Generate XSD For Mobile Store/mobile.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JSON/Generate XSD For Mobile Store/mobile.xsd -------------------------------------------------------------------------------- /JSON/Generate XSD for Persons/PersonList.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JSON/Generate XSD for Persons/PersonList.xsd -------------------------------------------------------------------------------- /JSON/Generate XSD for Students/StudentList.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/JSON/Generate XSD for Students/StudentList.xsd -------------------------------------------------------------------------------- /RDBMS/Data Control Language _ Database Objects/Create View_Mobile/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Control Language _ Database Objects/Create View_Mobile/model.sql -------------------------------------------------------------------------------- /RDBMS/Data Control Language _ Database Objects/Create View_StudentDetails/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Control Language _ Database Objects/Create View_StudentDetails/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Add a column in Registration Table/Add a column in Registration Table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Add a column in Registration Table/Add a column in Registration Table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Add a column in Student Table/Add a column in Student Table/sample.sql: -------------------------------------------------------------------------------- 1 | alter table student add Age Number(2); -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Add a constraint to Course Table/Add a constraint to Course Table/sample.sql: -------------------------------------------------------------------------------- 1 | alter table course ADD CONSTRAINT CHK_FEES Check(fees>0); -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter - Add CHECK constraint to Mobile_Master/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Alter - Add CHECK constraint to Mobile_Master/model.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter - Add Check constraint to Course Table/sample.sql: -------------------------------------------------------------------------------- 1 | alter table course ADD CONSTRAINT CHK_FEES Check(fees>0); -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter - Add Referential Integrity Constraint/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Alter - Add Referential Integrity Constraint/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter - Add a column age/model.sql: -------------------------------------------------------------------------------- 1 | Alter table Customer_Info add Age number(10); -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter - Establish Referential Integrity Constraint/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Alter - Establish Referential Integrity Constraint/model.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter - removing a column in Mobile Specification/model.sql: -------------------------------------------------------------------------------- 1 | alter table Mobile_Specification drop column Weight; -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter -Modify the field type/sample.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE MOBILE_SPECIFICATION MODIFY WEIGHT NUMBER(10); -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter table buses remove column/ddl5.sql: -------------------------------------------------------------------------------- 1 | alter table buses drop column Ac_Available; -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter table payments Rename column/alter1.sql: -------------------------------------------------------------------------------- 1 | alter table payments rename column bd_id to booking_id; -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter- Add a new column/ddl3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Alter- Add a new column/ddl3.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter- Modify the datatype/ddl4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Alter- Modify the datatype/ddl4.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Alter-Rename the field/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Alter-Rename the field/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Change the name of the table Sales Info/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Change the name of the table Sales Info/model.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Buses table/ddl1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Buses table/ddl1.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Course Table/Create Course Table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Course Table/Create Course Table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Customer_info table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Customer_info table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Department table/dept.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Department table/dept.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Distributor table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Distributor table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Mark table/ddl5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Mark table/ddl5.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Mobile_master table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Mobile_master table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Mobile_specification table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Mobile_specification table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Payments table/dd14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Payments table/dd14.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Registration Table/Create Registration Table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Registration Table/Create Registration Table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create SCHEDULE table/dd2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create SCHEDULE table/dd2.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Sales_info table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Sales_info table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Staff table/ddl3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Staff table/ddl3.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Student table/ddl2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Student table/ddl2.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Subject table/ddl4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Subject table/ddl4.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Create Users table/dd13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Create Users table/dd13.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Drop Mobile Specification table (parent)/model.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE MOBILE_SPECIFICATION cascade constraints; -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Drop Registration Table/sample.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE REGISTRATION; -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Drop Sales Info table(child)/model.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE SALES_INFO; -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Drop Student Table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Drop Student Table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Modify the datatype/Modify the datatype/ddl4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Modify the datatype/Modify the datatype/ddl4.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Purge Distributor table Truncate/model.sql: -------------------------------------------------------------------------------- 1 | truncate table Distributor; -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Purge Guest Table Contents - Truncate/sample.sql: -------------------------------------------------------------------------------- 1 | truncate table Guest; -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Rename PointOfInterest Table/sample.sql: -------------------------------------------------------------------------------- 1 | alter table PointOfInterest rename to TOURISTSPOTS; -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Test Your Understanding 1/PRODUCT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Test Your Understanding 1/PRODUCT.sql -------------------------------------------------------------------------------- /RDBMS/Data Definition Language/Test Your Understanding 2/DEPARTMENT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Definition Language/Test Your Understanding 2/DEPARTMENT.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Delete Records - Payments/dml1.sql: -------------------------------------------------------------------------------- 1 | delete from payments where discount_id='D1'; -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Delete customer information details/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Delete customer information details/model.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert - All Records Payments/dml1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert - All Records Payments/dml1.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert - All records customer_info table/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert - All records customer_info table/model.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert - Specific Records - Tickets/dml2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert - Specific Records - Tickets/dml2.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert - specific values customer_info table/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert - specific values customer_info table/model.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records - Student/Insert Records - Student/dml2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records - Student/Insert Records - Student/dml2.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records - Department/Insert Records - Department/insert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records - Department/Insert Records - Department/insert.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records - Marks/Insert Records - Marks/insert5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records - Marks/Insert Records - Marks/insert5.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records - Payments/Insert Records - Payments/dml1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records - Payments/Insert Records - Payments/dml1.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records - Subject/Insert Records - Subject/insert4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records - Subject/Insert Records - Subject/insert4.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records - Tickets/Insert Records - Tickets/dml2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records - Tickets/Insert Records - Tickets/dml2.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records -Staff/Insert Records -Staff/insert3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records -Staff/Insert Records -Staff/insert3.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records into Course table/Insert Records into Course table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records into Course table/Insert Records into Course table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records into Guest table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records into Guest table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records into Resort table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records into Resort table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Insert Records into Student table/Insert Records into Student table/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Insert Records into Student table/Insert Records into Student table/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Remove Course Details/Remove Course Details/sample.sql: -------------------------------------------------------------------------------- 1 | delete from COURSE WHERE Duration<=3; -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Remove Registration Details/Remove Registration Details/sample.sql: -------------------------------------------------------------------------------- 1 | delete from registration WHERE DOJ = '25-May-2018'; -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Remove Resort Details/Remove Resort Details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Remove Resort Details/Remove Resort Details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Remove sales information details/model.sql: -------------------------------------------------------------------------------- 1 | delete from sales_info where price=25000; -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update Address of a student/Update Address of a student/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Update Address of a student/Update Address of a student/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update Android version and Battery-Life/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Update Android version and Battery-Life/model.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update Buses table/update1.sql: -------------------------------------------------------------------------------- 1 | update buses set type= 'ac' where BUS_NO=33; -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update Fees for short courses/Update Fees for short courses/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Update Fees for short courses/Update Fees for short courses/sample.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update Mobile Price details/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Update Mobile Price details/model.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update Mobile Warranty details based on manufacturer/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Update Mobile Warranty details based on manufacturer/model.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update Mobile Warranty details/dml2.sql: -------------------------------------------------------------------------------- 1 | update mobile_master set warranty_in_years=3; -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update Phone in Guest Table/Update Phone in Guest Table/sample.sql: -------------------------------------------------------------------------------- 1 | UPDATE Guest set phone=912233445566 where name='MARY GREY'; -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update Schedule table/dml3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Update Schedule table/dml3.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update star-rating in Resort Tables/sample.sql: -------------------------------------------------------------------------------- 1 | update resort set starRating=4.5; -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update table Schedule/Update table Schedule/dml3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Update table Schedule/Update table Schedule/dml3.sql -------------------------------------------------------------------------------- /RDBMS/Data Manipulation Language/Update- Multiple attributes - Schedule table/dml2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Data Manipulation Language/Update- Multiple attributes - Schedule table/dml2.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Average mark greater than 80/group5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Average mark greater than 80/group5.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Average mark/group4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Average mark/group4.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Change Case of Guest Name/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Change Case of Guest Name/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Concatenating Details/singlerow3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Concatenating Details/singlerow3.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Concatenating Staff details/singlerow4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Concatenating Staff details/singlerow4.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Count the Characters in Review Comments/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Count the Characters in Review Comments/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Count the characters in customer name/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Count the characters in customer name/model.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Customer Address/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Customer Address/model.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Customer name in Upper case/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Customer name in Upper case/model.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Display Student Name along with age/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Display Student Name along with age/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Feedback date/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Feedback date/model.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Find the Hottest and Coldest Temperature/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Find the Hottest and Coldest Temperature/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Formatting Date/singlerow2bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Formatting Date/singlerow2bms.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Guest contact details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Guest contact details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/IME number with model name/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/IME number with model name/model.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Length of Student name/singlerow5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Length of Student name/singlerow5.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/List Department Name/singlerow2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/List Department Name/singlerow2.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Manufacturer details based on warranty/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Manufacturer details based on warranty/model.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Manufacturer with number of models/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Manufacturer with number of models/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Maximum Bus Tickets Fare/groupfunction1bms.sql: -------------------------------------------------------------------------------- 1 | select max(fare) as Maximum_Amount from tickets; -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Maximum Duration of the Stay/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Maximum Duration of the Stay/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Minimum Mark/group3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Minimum Mark/group3.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Mobile details based on maximum price/model.sql: -------------------------------------------------------------------------------- 1 | select max(Price) as MAX_PRICE from Mobile_Master; -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Mobile details with price description/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Mobile details with price description/model.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Number of Buses/groupfuction2bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Number of Buses/groupfuction2bms.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Number of Guests In each Resort/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Number of Guests In each Resort/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Number of Resort under each Manager/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Number of Resort under each Manager/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Number of Tickets Booked/groupfuction3bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Number of Tickets Booked/groupfuction3bms.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Number of departments/group1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Number of departments/group1.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Password Generation/singlerow1bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Password Generation/singlerow1bms.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Resortwise count of Bedrooms in each Resort/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Resortwise count of Bedrooms in each Resort/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Sales details based on date/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Sales details based on date/model.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Sales details based on discount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Sales details based on discount -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Sales formatted date/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Sales formatted date/model.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Student Count/group2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Student Count/group2.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Student ID based on Joining Month/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Student ID based on Joining Month/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Student Name/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Student Name/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Student address/SingleRow1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Student address/SingleRow1.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Total Guests In each Resort/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Total Guests In each Resort/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Total amount on Sales/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Total amount on Sales/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Total amount paid by each guest/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Total amount paid by each guest/sample.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/Total sales and average sales/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/Total sales and average sales/model.sql -------------------------------------------------------------------------------- /RDBMS/Function - Scalar _ Aggregate Hands on/_Comments based on Star Rating/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Function - Scalar _ Aggregate Hands on/_Comments based on Star Rating/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Block number based on Maximum department located/subquery1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Block number based on Maximum department located/subquery1.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Buses based on Source and Destination/joins2bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Buses based on Source and Destination/joins2bms.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Cities having Summer Temperature More than Jaipur/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Cities having Summer Temperature More than Jaipur/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Cities having Winter Temperature More than Jaipur/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Cities having Winter Temperature More than Jaipur/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Course name based on number of student registered/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Course name based on number of student registered/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Customer details based on count of mobiles purchased: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Customer details based on count of mobiles purchased -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Customer using HDFC bank/subquery3bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Customer using HDFC bank/subquery3bms.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Customer using SBI bank/subquery3bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Customer using SBI bank/subquery3bms.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Customer-Mobiles based on price/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Customer-Mobiles based on price/model.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Department Name with Maximum Student Count/subquery3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Department Name with Maximum Student Count/subquery3.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Department has Least Student Count/join2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Department has Least Student Count/join2.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Department has Maximum Staff/joins6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Department has Maximum Staff/joins6.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Department with Staff Count/joins5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Department with Staff Count/joins5.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Department with Student Count/joins1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Department with Student Count/joins1.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Display Cabin Types and its Charges/Display Cabin Types and its Charges/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Display Cabin Types and its Charges/Display Cabin Types and its Charges/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Distributor details with specification and discount/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Distributor details with specification and discount/model.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Fetch Resort Details/Fetch Resort Details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Fetch Resort Details/Fetch Resort Details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Fetch Second highest cabin cost/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Fetch Second highest cabin cost/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Fetch Second maximum Fees/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Fetch Second maximum Fees/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Guest details and Total Charges paid/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Guest details and Total Charges paid/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Guest who paid highest charges/Guest who paid highest charges/sample(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Guest who paid highest charges/Guest who paid highest charges/sample(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Guest who paid highest charges/Guest who paid highest charges/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Guest who paid highest charges/Guest who paid highest charges/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Guest_s Check-In _ Check-Out Details/Guest_s Check-In _ Check-Out Details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Guest_s Check-In _ Check-Out Details/Guest_s Check-In _ Check-Out Details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Managers from Same City/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Managers from Same City/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Maximum amount paid by Guest/Maximum amount paid by Guest/sample(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Maximum amount paid by Guest/Maximum amount paid by Guest/sample(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Maximum amount paid by Guest/Maximum amount paid by Guest/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Maximum amount paid by Guest/Maximum amount paid by Guest/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Maximum mark in Subject with Staff name/joins11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Maximum mark in Subject with Staff name/joins11.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Maximum repeated number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Maximum repeated number/Main.java -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Maximum score in the particular subject/subquery8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Maximum score in the particular subject/subquery8.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Minimum Travel Time/Mobile model with max sales.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Minimum Travel Time/Mobile model with max sales.zip -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Minimum Travel Time/subquery1bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Minimum Travel Time/subquery1bms.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Mobile details based on OS/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Mobile details based on OS/model.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Mobile details with maximum warranty/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Mobile details with maximum warranty/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Mobile model with max sales/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Mobile model with max sales/model.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Mobile model with min sales/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Mobile model with min sales/model.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Payments made by Guest/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Payments made by Guest/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/PointOfInterest Locations in Chennai/PointOfInterest Locations in Chennai/sample(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/PointOfInterest Locations in Chennai/PointOfInterest Locations in Chennai/sample(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/PointOfInterest Locations in Chennai/PointOfInterest Locations in Chennai/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/PointOfInterest Locations in Chennai/PointOfInterest Locations in Chennai/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Resort Manager_s Details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Resort Manager_s Details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Resort that charges the highest/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Resort that charges the highest/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Resort with Least Capacity/Resort with Least Capacity/sample(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Resort with Least Capacity/Resort with Least Capacity/sample(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Resort with Least Capacity/Resort with Least Capacity/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Resort with Least Capacity/Resort with Least Capacity/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Resortwise Revenue Generated/Resortwise Revenue Generated/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Resortwise Revenue Generated/Resortwise Revenue Generated/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Review Comment by Guest/Review Comment by Guest/sample(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Review Comment by Guest/Review Comment by Guest/sample(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Review Comment by Guest/Review Comment by Guest/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Review Comment by Guest/Review Comment by Guest/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Review Comment for all Resort/Review Comment for all Resort/sample(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Review Comment for all Resort/Review Comment for all Resort/sample(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Review Comment for all Resort/Review Comment for all Resort/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Review Comment for all Resort/Review Comment for all Resort/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Review Comment for star rating Resort/Review Comment for star rating Resort/sample(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Review Comment for star rating Resort/Review Comment for star rating Resort/sample(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Review Comment for star rating Resort/Review Comment for star rating Resort/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Review Comment for star rating Resort/Review Comment for star rating Resort/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Review Comments Shared by Guest/Review Comments Shared by Guest/sample(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Review Comments Shared by Guest/Review Comments Shared by Guest/sample(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Review Comments Shared by Guest/Review Comments Shared by Guest/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Review Comments Shared by Guest/Review Comments Shared by Guest/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Second maximum Fees/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Second maximum Fees/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Staff based on Department/subquery4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Staff based on Department/subquery4.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Staff details based on subjects/subquery6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Staff details based on subjects/subquery6.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Staff details without handling any subjects/subquery7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Staff details without handling any subjects/subquery7.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student - Department Based on City/joins3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student - Department Based on City/joins3.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student ID with Total Fees/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student ID with Total Fees/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student Name alone with DOJ and DOC/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student Name alone with DOJ and DOC/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student Name and Course Name/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student Name and Course Name/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student Name based on Department/joins4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student Name based on Department/joins4.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student details with subject name/subquery10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student details with subject name/subquery10.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student mark in particular subject/joins9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student mark in particular subject/joins9.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student name list based on department name/subquery2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student name list based on department name/subquery2.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student name with Computer Programming marks/subquery11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student name with Computer Programming marks/subquery11.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student name with their Highest Mark/joins10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student name with their Highest Mark/joins10.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Student with Minimum mark/joins8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Student with Minimum mark/joins8.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Students with Highest Mark/joins10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Students with Highest Mark/joins10.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Students details based mark scored/subquery9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Students details based mark scored/subquery9.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Subject with Staff Details/join7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Subject with Staff Details/join7.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Top Performer in Software Engineering/subquery12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Top Performer in Software Engineering/subquery12.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Total fees collected from each course/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Total fees collected from each course/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Townname for PointOfInterest locations/Townname for PointOfInterest locations/sample(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Townname for PointOfInterest locations/Townname for PointOfInterest locations/sample(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/Townname for PointOfInterest locations/Townname for PointOfInterest locations/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/Townname for PointOfInterest locations/Townname for PointOfInterest locations/sample.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/User and Payment details/User and Payment details/joins1bms(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/User and Payment details/User and Payment details/joins1bms(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/User and Payment details/User and Payment details/joins1bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/User and Payment details/User and Payment details/joins1bms.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/User details based on Cancellation/User details based on Cancellation/joins3bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/User details based on Cancellation/User details based on Cancellation/joins3bms.sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/pointofinterest locations in each Town/pointofinterest locations in each Town/sample(1).sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/pointofinterest locations in each Town/pointofinterest locations in each Town/sample(1).sql -------------------------------------------------------------------------------- /RDBMS/Joins _ Subquery/pointofinterest locations in each Town/pointofinterest locations in each Town/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Joins _ Subquery/pointofinterest locations in each Town/pointofinterest locations in each Town/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Bus details based on availability/bsselect5bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Bus details based on availability/bsselect5bms.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Bus number without duplicates/bsselect6bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Bus number without duplicates/bsselect6bms.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Course Details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Course Details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Course details based on Duration/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Course details based on Duration/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Customer details based on address/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Customer details based on address/model.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Customer details based on condition/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Customer details based on condition/model.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Customer details based on phone number/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Customer details based on phone number/model.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Customer name with 2nd letter _a_/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Customer name with 2nd letter _a_/model.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Department name based on block number/bselect3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Department name based on block number/bselect3.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Details about AC Buses/bsselect7bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Details about AC Buses/bsselect7bms.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display Guests stayed with Pets/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display Guests stayed with Pets/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display Mobile specification details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display Mobile specification details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display Resort based on Star-rating/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display Resort based on Star-rating/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display Resort Details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display Resort Details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display Student Location/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display Student Location/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display Students Details/bselect4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display Students Details/bselect4.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display Tourist Spots/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display Tourist Spots/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display Types of Rooms available in Resorts/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display Types of Rooms available in Resorts/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display Unique Student Location/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display Unique Student Location/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display User details/bselect1bms.sql: -------------------------------------------------------------------------------- 1 | select * from users order by NAME; -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display based on Summer Temperature of Cities/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display based on Summer Temperature of Cities/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Display the review with resort ID/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Display the review with resort ID/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Distributor details/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Distributor details/model.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/List Buses details/bsselect3bms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/List Buses details/bsselect3bms.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/List Department names/bselect1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/List Department names/bselect1.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/List Schedule details/bsselect2bms.sql: -------------------------------------------------------------------------------- 1 | select * from Schedule order by SCHEDULE_ID desc; -------------------------------------------------------------------------------- /RDBMS/Select Statement/List of Student names/bselect2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/List of Student names/bselect2.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Mobile price discount details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Mobile price discount details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Mobile specification details based on battery life/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Mobile specification details based on battery life/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Mobile specification details based on memory capacity/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Mobile specification details based on memory capacity/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Sales details based on price and discount/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Sales details based on price and discount/model.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Select - Specific Sales details/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Select - Specific Sales details/model.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Select - all Course Details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Select - all Course Details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Select Unique Mobile Manufacturer details/model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Select Unique Mobile Manufacturer details/model.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Select all - Distributor details/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Select all - Distributor details/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Student ID based on course/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Student ID based on course/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Student Name based on a condition/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Student Name based on a condition/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Student details based on Location and Date of Birth/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Student details based on Location and Date of Birth/sample.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Student details based on city/bselect7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Student details based on city/bselect7.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Students Name based on Start and Ending Character/bselect6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Students Name based on Start and Ending Character/bselect6.sql -------------------------------------------------------------------------------- /RDBMS/Select Statement/Students name Starts with A/bselect5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/RDBMS/Select Statement/Students name Starts with A/bselect5.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/README.md -------------------------------------------------------------------------------- /UNIX/Bourne Shell/Script to Change Permission/script3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Bourne Shell/Script to Change Permission/script3.sh -------------------------------------------------------------------------------- /UNIX/Bourne Shell/Script to Check Permission/script2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Bourne Shell/Script to Check Permission/script2.sh -------------------------------------------------------------------------------- /UNIX/Bourne Shell/Script to Count/script1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Bourne Shell/Script to Count/script1.sh -------------------------------------------------------------------------------- /UNIX/Bourne Shell/ShellScript1/scriptprog1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Bourne Shell/ShellScript1/scriptprog1.sh -------------------------------------------------------------------------------- /UNIX/Bourne Shell/ShellScript2/scriptprog2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Bourne Shell/ShellScript2/scriptprog2.sh -------------------------------------------------------------------------------- /UNIX/Bourne Shell/ShellScript4/scriptprog4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Bourne Shell/ShellScript4/scriptprog4.sh -------------------------------------------------------------------------------- /UNIX/Bourne Shell/Shellscript3/scriptprog3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Bourne Shell/Shellscript3/scriptprog3.sh -------------------------------------------------------------------------------- /UNIX/Bourne Shell/Shellscript5/scriptprog5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Bourne Shell/Shellscript5/scriptprog5.sh -------------------------------------------------------------------------------- /UNIX/File System/Copy Complete Directory/copydirectory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Copy Complete Directory/copydirectory.sh -------------------------------------------------------------------------------- /UNIX/File System/Copy File 1/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Copy File 1/copy.sh -------------------------------------------------------------------------------- /UNIX/File System/Copy File 2/copy2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Copy File 2/copy2.sh -------------------------------------------------------------------------------- /UNIX/File System/Copy File 3/copy3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Copy File 3/copy3.sh -------------------------------------------------------------------------------- /UNIX/File System/Copy File 4/copy4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Copy File 4/copy4.sh -------------------------------------------------------------------------------- /UNIX/File System/Copy File 5/copy5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Copy File 5/copy5.sh -------------------------------------------------------------------------------- /UNIX/File System/Copy File 6/copy6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Copy File 6/copy6.sh -------------------------------------------------------------------------------- /UNIX/File System/Directory Creation - 1/directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Directory Creation - 1/directory.sh -------------------------------------------------------------------------------- /UNIX/File System/Directory Creation - 2/directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Directory Creation - 2/directory.sh -------------------------------------------------------------------------------- /UNIX/File System/File Permission - 1/filepermission.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/File Permission - 1/filepermission.sh -------------------------------------------------------------------------------- /UNIX/File System/File Permission - 2/filepermission2.sh: -------------------------------------------------------------------------------- 1 | chmod 620 dept.txt -------------------------------------------------------------------------------- /UNIX/File System/File Permission - 3/filepermission3.sh: -------------------------------------------------------------------------------- 1 | chmod g-w emp.txt -------------------------------------------------------------------------------- /UNIX/File System/File Permission - 4/filepermission4.sh: -------------------------------------------------------------------------------- 1 | chmod 711 emp.txt 2 | -------------------------------------------------------------------------------- /UNIX/File System/File Permission - 5/fileper1.sh: -------------------------------------------------------------------------------- 1 | chmod 666 student.txt -------------------------------------------------------------------------------- /UNIX/File System/File Permission - 7/fileper2.sh: -------------------------------------------------------------------------------- 1 | chmod g+x department.txt -------------------------------------------------------------------------------- /UNIX/File System/File Permission - 8/fileper.sh: -------------------------------------------------------------------------------- 1 | chmod 626 student.txt -------------------------------------------------------------------------------- /UNIX/File System/File permission - 6/filper2.sh: -------------------------------------------------------------------------------- 1 | chmod 646 student.txt -------------------------------------------------------------------------------- /UNIX/File System/Move File 1/movefile1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Move File 1/movefile1.sh -------------------------------------------------------------------------------- /UNIX/File System/Move File 2/move2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Move File 2/move2.sh -------------------------------------------------------------------------------- /UNIX/File System/Move File 3/movequestion2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Move File 3/movequestion2.sh -------------------------------------------------------------------------------- /UNIX/File System/Move File 4/movefile1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Move File 4/movefile1.sh -------------------------------------------------------------------------------- /UNIX/File System/Move File 5/mvfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Move File 5/mvfile.sh -------------------------------------------------------------------------------- /UNIX/File System/Move File 6/movefil2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Move File 6/movefil2.sh -------------------------------------------------------------------------------- /UNIX/File System/Remove Directory/rmdir3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Remove Directory/rmdir3.sh -------------------------------------------------------------------------------- /UNIX/File System/Remove File - 1/remove.sh: -------------------------------------------------------------------------------- 1 | rm mydir/colors/blended/orange -------------------------------------------------------------------------------- /UNIX/File System/Remove File - 2/rmfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/File System/Remove File - 2/rmfile.sh -------------------------------------------------------------------------------- /UNIX/Filters/Count Files/cmd7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Filters/Count Files/cmd7.sh -------------------------------------------------------------------------------- /UNIX/Filters/Find String 6/findstring6.sh: -------------------------------------------------------------------------------- 1 | grep -F '#' teknoscript.txt 2 | -------------------------------------------------------------------------------- /UNIX/Filters/Find string 2/findstring2.sh: -------------------------------------------------------------------------------- 1 | grep -v lin teknoscript.txt -------------------------------------------------------------------------------- /UNIX/Filters/Find string 3/findstring3.sh: -------------------------------------------------------------------------------- 1 | grep -n lin teknoscript.txt -------------------------------------------------------------------------------- /UNIX/Filters/Find string 4/findstring4.sh: -------------------------------------------------------------------------------- 1 | grep '^f' teknoscript.txt 2 | -------------------------------------------------------------------------------- /UNIX/Filters/Find string 5/findstring5.sh: -------------------------------------------------------------------------------- 1 | grep h$ teknoscript.txt -------------------------------------------------------------------------------- /UNIX/Filters/Find string 7/findstring7.sh: -------------------------------------------------------------------------------- 1 | grep ^echo teknoscript.txt -------------------------------------------------------------------------------- /UNIX/Filters/Find string 8/findstring8.sh: -------------------------------------------------------------------------------- 1 | grep -v ^# teknoscript.txt -------------------------------------------------------------------------------- /UNIX/Filters/Find string1/findstring1.sh: -------------------------------------------------------------------------------- 1 | grep -F lin teknoscript.txt 2 | -------------------------------------------------------------------------------- /UNIX/Filters/Grep Command - 1/cmd1.sh: -------------------------------------------------------------------------------- 1 | grep ';$' employee.txt 2 | -------------------------------------------------------------------------------- /UNIX/Filters/Grep Command - 2/cmd5.sh: -------------------------------------------------------------------------------- 1 | grep -v ';$' employee.txt -------------------------------------------------------------------------------- /UNIX/Filters/Grep Command - 3/cmd9.sh: -------------------------------------------------------------------------------- 1 | grep ':$' employee.txt -------------------------------------------------------------------------------- /UNIX/Filters/List Files/cmd11.sh: -------------------------------------------------------------------------------- 1 | ls | grep '^s' -------------------------------------------------------------------------------- /UNIX/Filters/List Names/cmd4.sh: -------------------------------------------------------------------------------- 1 | ls -d [ts]* 2 | -------------------------------------------------------------------------------- /UNIX/Filters/Move File 4/Move File 4/movefile1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Filters/Move File 4/Move File 4/movefile1.sh -------------------------------------------------------------------------------- /UNIX/Filters/Pattern Search/cmd12.sh: -------------------------------------------------------------------------------- 1 | ls -1 | grep ^.[0-9].*$ -------------------------------------------------------------------------------- /UNIX/Filters/Redirect Command - 1/cmd3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Filters/Redirect Command - 1/cmd3.sh -------------------------------------------------------------------------------- /UNIX/Filters/Redirect Command - 2/cmd10.sh: -------------------------------------------------------------------------------- 1 | echo '4' -------------------------------------------------------------------------------- /UNIX/Filters/Tail Command - 1/cmd2.sh: -------------------------------------------------------------------------------- 1 | ls | tail -n3 2 | -------------------------------------------------------------------------------- /UNIX/Filters/Tail Command - 2/cmd6.sh: -------------------------------------------------------------------------------- 1 | tail -3 sample.txt -------------------------------------------------------------------------------- /UNIX/Filters/Word Search/cmd8.sh: -------------------------------------------------------------------------------- 1 | grep -i 'birbal' story.txt -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/Calculator1/calculator.sh: -------------------------------------------------------------------------------- 1 | bc -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/Calendar 1/calendar.sh: -------------------------------------------------------------------------------- 1 | cal -3 8 1987 -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/Calendar 2/calendar2.sh: -------------------------------------------------------------------------------- 1 | cal 9 1752 -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/Calendar 3/Calendar 3/calendar.sh: -------------------------------------------------------------------------------- 1 | cal 12 2015 -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/Calendar 4/Calendar 4/calendar2.sh: -------------------------------------------------------------------------------- 1 | cal -j 2016 -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/Calendar 5/Calendar3.sh: -------------------------------------------------------------------------------- 1 | cal -3 12 2015 -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/Date 1/date.sh: -------------------------------------------------------------------------------- 1 | date "+%A" -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/Date 2/Date 2/date2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Introduction to Unix/Date 2/Date 2/date2.sh -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/Date 3/date3.sh: -------------------------------------------------------------------------------- 1 | date "+%P" -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/DiskUage-3: -------------------------------------------------------------------------------- 1 | du -s 2 | -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/DiskUsage 1/space.sh: -------------------------------------------------------------------------------- 1 | du Contest -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/DiskUsage 2/freespce2.sh: -------------------------------------------------------------------------------- 1 | du -S -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/DiskUsage 3/space3.sh: -------------------------------------------------------------------------------- 1 | du -s 2 | -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/List of Files 1/list.sh: -------------------------------------------------------------------------------- 1 | ls -a #fill with correct option comment -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/List of Files 2/List of Files 2/list2.sh: -------------------------------------------------------------------------------- 1 | ls -r -------------------------------------------------------------------------------- /UNIX/Introduction to Unix/List of Files 3/list3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/UNIX/Introduction to Unix/List of Files 3/list3.sh -------------------------------------------------------------------------------- /Web Technology/Bootstrap/About TrinQet/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/About TrinQet/about.html -------------------------------------------------------------------------------- /Web Technology/Bootstrap/About TrinQet/office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/About TrinQet/office.jpg -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Bootstrap Panel/Panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Bootstrap Panel/Panel.html -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Bootstrap Table/bstable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Bootstrap Table/bstable.html -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Bootstrap Typography/bootstrapex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Bootstrap Typography/bootstrapex.html -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Bootstrap Well and Glyphicons/well.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Bootstrap Well and Glyphicons/well.html -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Bootstrap_s Navigation Bar/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Bootstrap_s Navigation Bar/navigation.html -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Inline Forms/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Inline Forms/inline.html -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Page Layout/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Page Layout/img3.png -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Page Layout/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Page Layout/layout.html -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Responsive Web Pages/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Responsive Web Pages/app.css -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Responsive Web Pages/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Responsive Web Pages/nature.jpg -------------------------------------------------------------------------------- /Web Technology/Bootstrap/Responsive Web Pages/responsive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Bootstrap/Responsive Web Pages/responsive.html -------------------------------------------------------------------------------- /Web Technology/CSS/Book A Show - Online Ticket Booking/ticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/CSS/Book A Show - Online Ticket Booking/ticket.html -------------------------------------------------------------------------------- /Web Technology/CSS/CSS Effect/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/CSS/CSS Effect/apple.jpg -------------------------------------------------------------------------------- /Web Technology/CSS/CSS Effect/imgeffect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/CSS/CSS Effect/imgeffect.html -------------------------------------------------------------------------------- /Web Technology/CSS/CSS Effect/mango.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/CSS/CSS Effect/mango.jpg -------------------------------------------------------------------------------- /Web Technology/CSS/Navigation Bar using CSS3/navigationbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/CSS/Navigation Bar using CSS3/navigationbar.html -------------------------------------------------------------------------------- /Web Technology/CSS/Pricing Tables/pricetable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/CSS/Pricing Tables/pricetable.html -------------------------------------------------------------------------------- /Web Technology/CSS/WebPage Creation/webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/CSS/WebPage Creation/webpage.html -------------------------------------------------------------------------------- /Web Technology/HTML/Books Form/bookform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/HTML/Books Form/bookform.html -------------------------------------------------------------------------------- /Web Technology/HTML/Simple CALCULATOR/Calculator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/HTML/Simple CALCULATOR/Calculator.html -------------------------------------------------------------------------------- /Web Technology/HTML/Simple CALCULATOR/calc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/HTML/Simple CALCULATOR/calc.jpg -------------------------------------------------------------------------------- /Web Technology/HTML/Simple CALCULATOR/calculator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/HTML/Simple CALCULATOR/calculator.jpg -------------------------------------------------------------------------------- /Web Technology/HTML/Simple CALCULATOR/reset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/HTML/Simple CALCULATOR/reset.jpg -------------------------------------------------------------------------------- /Web Technology/HTML/TRAVEL RESERVATION FORM/TravelForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/HTML/TRAVEL RESERVATION FORM/TravelForm.html -------------------------------------------------------------------------------- /Web Technology/HTML/ZEN Bank - Login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/HTML/ZEN Bank - Login/login.html -------------------------------------------------------------------------------- /Web Technology/JavaScript/DAC Bank Loan Automation/availLoan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/JavaScript/DAC Bank Loan Automation/availLoan.html -------------------------------------------------------------------------------- /Web Technology/JavaScript/Discount Price Calculation/discountprice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/JavaScript/Discount Price Calculation/discountprice.html -------------------------------------------------------------------------------- /Web Technology/JavaScript/E-BOOK Portal/EBook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/JavaScript/E-BOOK Portal/EBook.html -------------------------------------------------------------------------------- /Web Technology/JavaScript/KASA IT Finishing School - Feedback Automation/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/JavaScript/KASA IT Finishing School - Feedback Automation/feedback.html -------------------------------------------------------------------------------- /Web Technology/JavaScript/Palindrome Check/palin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/JavaScript/Palindrome Check/palin.html -------------------------------------------------------------------------------- /Web Technology/Jquery/Check Box Using JQuery/chkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Jquery/Check Box Using JQuery/chkbox.html -------------------------------------------------------------------------------- /Web Technology/Jquery/Check Box Using JQuery/chkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Jquery/Check Box Using JQuery/chkbox.js -------------------------------------------------------------------------------- /Web Technology/Jquery/Customer Data/customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Jquery/Customer Data/customer.html -------------------------------------------------------------------------------- /Web Technology/Jquery/Customer Data/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Jquery/Customer Data/customer.js -------------------------------------------------------------------------------- /Web Technology/Jquery/Drag an Object/drag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Jquery/Drag an Object/drag.html -------------------------------------------------------------------------------- /Web Technology/Jquery/Drag an Object/fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Jquery/Drag an Object/fish.jpg -------------------------------------------------------------------------------- /Web Technology/Jquery/Three Divisions/divisions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Jquery/Three Divisions/divisions.html -------------------------------------------------------------------------------- /Web Technology/Jquery/Three Divisions/divisions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Jquery/Three Divisions/divisions.js -------------------------------------------------------------------------------- /Web Technology/Jquery/Window Resize/window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarsh-dayanand/Accenture-learning-modules/HEAD/Web Technology/Jquery/Window Resize/window.html --------------------------------------------------------------------------------