├── .gitattributes ├── Stage 1 ├── User Interface Design │ ├── jQuery │ │ ├── load.js │ │ ├── login form │ │ │ ├── login.js │ │ │ └── login.html │ │ ├── alternate-rows.js │ │ ├── divisions.js │ │ ├── welcome.js │ │ ├── menu.js │ │ ├── employee.js │ │ ├── ice-cream.js │ │ ├── country.js │ │ ├── customer.js │ │ └── chkbox.js │ ├── CSS3 │ │ ├── [ADDITIONAL] Rate Card For Boat Riding │ │ │ └── Rate Card For Boat Riding.html │ │ ├── Bill Calculator │ │ │ ├── billcalc.css │ │ │ └── Calculator HTML.html │ │ ├── Feedback Details │ │ │ ├── index.html │ │ │ └── Script.js │ │ └── Trainer Feedback Rating Chart │ │ │ └── Training Rating Feedback Chart.CSS │ ├── JavaScript │ │ ├── Validate Email - Regular Expression & test Function │ │ │ └── script.js │ │ ├── Greetings - DOM │ │ │ ├── script.js │ │ │ └── index.html │ │ ├── Word Play - Operators, Conditional Control Statements & Loops │ │ │ └── script.js │ │ ├── Find Unique Characters - Functions │ │ │ └── script.js │ │ ├── Placing Order For Cake - String & Math │ │ │ └── script.js │ │ ├── Employee Experience Details - Class and Object & Date │ │ │ └── script.js │ │ └── Fixed And Reducing Interest Loan Estimator │ │ │ ├── Estimation.js │ │ │ └── ReducedInterestEstimation.html │ ├── HTML5 │ │ ├── Learning Material Styling │ │ │ ├── Learning Material.CSS │ │ │ └── Learning Material.HTML │ │ └── Simple Calculator │ │ │ └── Calculator.html │ └── Bootstrap │ │ ├── responsive.html │ │ ├── navigation.html │ │ └── layout.html ├── SQL Programming │ ├── Hunger eats - update table.sql │ ├── Customers having gmail id.sql │ ├── Car & owner details based on car type.sql │ ├── Department name based on block number.sql │ ├── Car details based on type and name.sql │ ├── Delivery Partner details based on rating.sql │ ├── Student and their Department Based on City.sql │ ├── Insert Records - Department.sql │ └── car rental system - Insert values.sql ├── C# Programming │ ├── Product Details │ │ ├── input.csv │ │ ├── Program.cs │ │ └── Product.cs │ ├── MaxValueofSignedByte │ │ └── Program.cs │ ├── BooleanResult │ │ └── Program.cs │ ├── Reverse a Sentence │ │ └── Program.cs │ ├── StringConcatenate │ │ └── Program.cs │ ├── ADO.NET_WorkshopEnrollmentApp_HandsOn1 │ │ ├── TraineeBL.cs │ │ ├── TraineeBO.cs │ │ └── TraineeDA.cs │ ├── Registration form │ │ └── Registration Form.cs │ ├── OpenableInterface │ │ └── OpenableInterface.cs │ ├── Find Square and Cube │ │ └── Program.cs │ ├── Age Calculation │ │ └── Program.cs │ ├── Balls Bowled - Hands-On │ │ └── BallsBowled.cs │ ├── GameInheritance │ │ └── GameInheritance.cs │ ├── Quiz Competition Report │ │ └── JaggedArray.cs │ ├── Generate Bill Details │ │ └── Program.cs │ ├── CalculatorProgram │ │ └── CalculatorProgram.cs │ ├── Find the Age of a person │ │ └── BirthdayProject.cs │ ├── Flight Status │ │ └── Program.cs │ ├── AccountDetails │ │ └── AccountDetails.cs │ ├── AddNewMember - Hands- On │ │ └── Club.cs │ ├── Extract Book Code - Hands -On │ │ └── ExtractBookCode.cs │ ├── Vehicles Released in Certain Years - Linq │ │ └── Program.cs │ └── Seminar Ticket Booking │ │ └── Program.cs ├── Design Principles and Patterns │ ├── 06-01-DP-Handson.rar │ ├── 06-02-DP-Handson.zip │ ├── 06-03-DP-Handson.zip │ ├── 06-04-DP-Handson.zip │ ├── 06-05-DP-Handson.rar │ └── 06-06-DP-Handson.zip └── Unix and Shell Scripting │ └── Unix_and_Shell_Scripting.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /Stage 1/User Interface Design/jQuery/load.js: -------------------------------------------------------------------------------- 1 | //WRITE YOUR jQUERY CODE HERE 2 | 3 | $('#msg').html("jQuery is loaded!!!"); -------------------------------------------------------------------------------- /Stage 1/SQL Programming/Hunger eats - update table.sql: -------------------------------------------------------------------------------- 1 | update customers set phone_no=9876543210 where customer_id="CUST1004"; -------------------------------------------------------------------------------- /Stage 1/C# Programming/Product Details/input.csv: -------------------------------------------------------------------------------- 1 | HairTrimmer,HT123, 10-02-2017, 800 2 | Steel Box,SB231, 11-04-2018, 250 3 | Rope, RP240,13-05-2019,100 -------------------------------------------------------------------------------- /Stage 1/SQL Programming/Customers having gmail id.sql: -------------------------------------------------------------------------------- 1 | select customer_id,customer_name,address,phone_no from customers where email_id like '%@gmail.com'; -------------------------------------------------------------------------------- /Stage 1/SQL Programming/Car & owner details based on car type.sql: -------------------------------------------------------------------------------- 1 | select car_id,car_name,owner_id from cars where car_type="Hatchback" or car_type="SUV" order by car_id; -------------------------------------------------------------------------------- /Stage 1/SQL Programming/Department name based on block number.sql: -------------------------------------------------------------------------------- 1 | select department_name from department where department_block_number=3 order by department_name asc; -------------------------------------------------------------------------------- /Stage 1/SQL Programming/Car details based on type and name.sql: -------------------------------------------------------------------------------- 1 | select car_id,car_name,car_type from cars where car_name Like '%Maruthi%' and car_type="Sedan" order by car_id; -------------------------------------------------------------------------------- /Stage 1/Design Principles and Patterns/06-01-DP-Handson.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MMDUSSX/Cognizant-Tekstac/HEAD/Stage 1/Design Principles and Patterns/06-01-DP-Handson.rar -------------------------------------------------------------------------------- /Stage 1/Design Principles and Patterns/06-02-DP-Handson.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MMDUSSX/Cognizant-Tekstac/HEAD/Stage 1/Design Principles and Patterns/06-02-DP-Handson.zip -------------------------------------------------------------------------------- /Stage 1/Design Principles and Patterns/06-03-DP-Handson.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MMDUSSX/Cognizant-Tekstac/HEAD/Stage 1/Design Principles and Patterns/06-03-DP-Handson.zip -------------------------------------------------------------------------------- /Stage 1/Design Principles and Patterns/06-04-DP-Handson.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MMDUSSX/Cognizant-Tekstac/HEAD/Stage 1/Design Principles and Patterns/06-04-DP-Handson.zip -------------------------------------------------------------------------------- /Stage 1/Design Principles and Patterns/06-05-DP-Handson.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MMDUSSX/Cognizant-Tekstac/HEAD/Stage 1/Design Principles and Patterns/06-05-DP-Handson.rar -------------------------------------------------------------------------------- /Stage 1/Design Principles and Patterns/06-06-DP-Handson.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MMDUSSX/Cognizant-Tekstac/HEAD/Stage 1/Design Principles and Patterns/06-06-DP-Handson.zip -------------------------------------------------------------------------------- /Stage 1/SQL Programming/Delivery Partner details based on rating.sql: -------------------------------------------------------------------------------- 1 | select partner_id,partner_name,phone_no from delivery_partners where rating between 3 and 5 order by partner_id; -------------------------------------------------------------------------------- /Stage 1/User Interface Design/jQuery/login form/login.js: -------------------------------------------------------------------------------- 1 | const signupForm = $("#signup_div"); 2 | signupForm.hide(); 3 | 4 | $("#signup").click(function() { 5 | signupForm.show(); 6 | }); 7 | -------------------------------------------------------------------------------- /Stage 1/User Interface Design/jQuery/alternate-rows.js: -------------------------------------------------------------------------------- 1 | $("tr:even").css("background-color", "lightpink"); 2 | $("tr:odd").css("background-color", "lightblue"); 3 | $("caption").css("background-color", "lightblue"); 4 | -------------------------------------------------------------------------------- /Stage 1/User Interface Design/jQuery/divisions.js: -------------------------------------------------------------------------------- 1 | //WRITE YOUR jQUERY CODE HERE 2 | 3 | $('#button1').click(function(){ 4 | $("#DAI").css( "background", "yellow" ); 5 | $("#ASI").css( "background", "yellow" ); 6 | }); -------------------------------------------------------------------------------- /Stage 1/User Interface Design/jQuery/welcome.js: -------------------------------------------------------------------------------- 1 | //Write Your jQuery Code Here 2 | $("#btnId").click(function(){ 3 | var name=$('#txt').val(); 4 | var msg="Welcome "+name+"!"; 5 | $("#address").html('"'+msg+'"'); 6 | }); -------------------------------------------------------------------------------- /Stage 1/SQL Programming/Student and their Department Based on City.sql: -------------------------------------------------------------------------------- 1 | select Student.student_name,Department.department_name from Student inner join Department on Student.department_id=department.department_id where Student.city="Coimbatore" order by student_name; -------------------------------------------------------------------------------- /Stage 1/User Interface Design/CSS3/[ADDITIONAL] Rate Card For Boat Riding/Rate Card For Boat Riding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MMDUSSX/Cognizant-Tekstac/HEAD/Stage 1/User Interface Design/CSS3/[ADDITIONAL] Rate Card For Boat Riding/Rate Card For Boat Riding.html -------------------------------------------------------------------------------- /Stage 1/User Interface Design/jQuery/menu.js: -------------------------------------------------------------------------------- 1 | 2 | //WRITE YOUR jQUERY CODE HERE 3 | 4 | var element = $('div > ul >li >a') 5 | $("#each_ex").click(function(){ 6 | element.css('background-color','red') 7 | $('#msg_ex').append('Home
Products
Services
About
Contact') 8 | }); -------------------------------------------------------------------------------- /Stage 1/User Interface Design/jQuery/employee.js: -------------------------------------------------------------------------------- 1 | //WRITE YOUR jQUERY CODE HRE 2 | 3 | $('#btn-id').click(function(){ 4 | $.ajax({ 5 | url: 'employee.json', 6 | error:function(){ 7 | $('#err-id').html("Error Message: Not found"); 8 | } 9 | }) 10 | }) 11 | -------------------------------------------------------------------------------- /Stage 1/User Interface Design/jQuery/ice-cream.js: -------------------------------------------------------------------------------- 1 | // WRITE YOUR CODE HERE 2 | 3 | $('p').css('color','orange'); 4 | $('p:last').css('font-size','50%'); 5 | $('.flavours > li').css('background-color','lightblue'); 6 | $('#icecreamfloats > li').css('background-color','orange'); 7 | $('.flavours').css('font-size','120%'); -------------------------------------------------------------------------------- /Stage 1/SQL Programming/Insert Records - Department.sql: -------------------------------------------------------------------------------- 1 | insert into department (department_id,department_name,department_block_number) VALUES(1,"CSE",3); 2 | 3 | insert into department (department_id,department_name,department_block_number) VALUES(2,"IT",3); 4 | 5 | insert into department (department_id,department_name,department_block_number) VALUES(3,"SE",3); -------------------------------------------------------------------------------- /Stage 1/User Interface Design/JavaScript/Validate Email - Regular Expression & test Function/script.js: -------------------------------------------------------------------------------- 1 | function validateEmail(email) { 2 | var result = (/^\w+([\.-]?\w+)@\w+([\.-]?\w+)(\.\w{2,3})+$/).test(email) 3 | 4 | if(result===true){ 5 | return "Valid email address!" 6 | } 7 | else{ 8 | return "Invalid email address!" 9 | } 10 | } -------------------------------------------------------------------------------- /Stage 1/User Interface Design/jQuery/country.js: -------------------------------------------------------------------------------- 1 | $("#btn-id").click(function() { 2 | //get data 3 | $.getJSON("https://reqres.in/api/users?page=2", function(json) { 4 | $("#data-id").html('') 5 | json.data.forEach(function(jd) { 6 | $("#data-id").append("