├── .gitignore ├── Fourth Semester └── 5CS022 Distributed and Cloud System Programming │ ├── Week 1 - Workshop │ ├── Roshish_2226675.docx │ ├── mpi01.c │ ├── mpi02.c │ ├── mpi03.c │ └── prime.c │ └── Week 2 - Tutorial │ └── mpi_count.c └── Third Semester ├── 5CS019 - Object-Oriented Design and Programming ├── .gitignore ├── External_JAR │ └── mysql-connector-j-8.0.32.jar ├── Week10_Assignment │ ├── DatabaseManager.java │ ├── Frame.java │ └── User.java ├── Week1_Workshop │ ├── AccessModifier │ │ ├── pkg1 │ │ │ └── Pkg1.java │ │ └── pkg2 │ │ │ └── Pkg2.java │ ├── Car │ │ └── Car.java │ ├── Data │ │ └── Main.java │ ├── RoshishShrestha_2226675_wps1.docx │ └── Student │ │ └── Student.java ├── Week2_Workshop │ ├── Aggregation │ │ └── Employee.java │ ├── Heirarchical_Inheritance │ │ └── Heirarchical.java │ ├── Inheritance │ │ └── Parent.java │ └── Multi_Level_Inheritance │ │ └── MultiLevel.java ├── Week3_Tutorial │ └── Payroll │ │ ├── Payroll.java │ │ └── Payroll_Reciever.java ├── Week3_Workshop │ ├── Encapsulation_Inheritance │ │ └── Animal.java │ ├── Palindrome │ │ └── Palindrome.java │ └── Prime_Number │ │ └── PrimeNumber.java ├── Week4_CaseStudy │ ├── Authentication.java │ ├── Exceptions.java │ ├── Main.java │ └── User.java ├── Week4_Tutorial │ └── Upcasting │ │ └── Animal.java ├── Week4_Workshop │ ├── Exception_Handling │ │ └── Exception.java │ ├── Overloading_Overriding │ │ └── Mobile.java │ ├── RoshishShrestha_2226675_wps04.pdf │ └── Validate_Regex │ │ └── Validation.java ├── Week5_CaseStudy │ ├── Auth │ │ ├── Auth.java │ │ └── Passwords.java │ ├── Main.java │ ├── Models │ │ └── RentalProperty.java │ └── SystemUser │ │ ├── Admin.java │ │ ├── CustomExceptions.java │ │ ├── FamilyTypeTenant.java │ │ ├── Landlord.java │ │ ├── StudentTypeTenant.java │ │ ├── SystemUsers.java │ │ └── Tenant.java ├── Week5_Workshop │ ├── Abstract_Classes │ │ └── Android.java │ ├── Custom_Exception │ │ └── InvalidInputException.java │ └── Exception_Handling │ │ └── ExceptionHandling.java ├── Week6_Workshop │ ├── Reverse_Number │ │ └── Main.java │ └── Sum_of_Numbers │ │ └── Main.java ├── Week7_Assignment │ ├── Activity1 │ │ ├── LinkedList │ │ │ └── LinkedList.java │ │ ├── Queue │ │ │ └── Queue.java │ │ └── Stack │ │ │ └── Stack.java │ └── Activity2 │ │ ├── Banking.java │ │ └── Main.java ├── Week7_Tutorial │ ├── ArrayList │ │ └── Main.java │ └── HashMap │ │ └── Main.java ├── Week9_Assignment │ ├── Activity1.java │ └── Activity2.java └── Week9_Tutorial │ ├── Frame.java │ ├── SignIn.java │ └── Welcome.java ├── 5CS021 - Numerical Methods and Concurrency ├── Final Assignment │ ├── Task 1 │ │ ├── datasetLR1.txt │ │ ├── datasetLR2.txt │ │ ├── datasetLR3.txt │ │ ├── datasetLR4.txt │ │ ├── task1 │ │ ├── task1.c │ │ └── task1.png │ ├── Task 2 │ │ ├── task2 │ │ ├── task2.c │ │ └── task2.png │ ├── Task 3 │ │ ├── Prime.txt │ │ ├── PrimeData1.txt │ │ ├── PrimeData2.txt │ │ ├── PrimeData3.txt │ │ ├── task3 │ │ ├── task3.c │ │ └── task3.png │ └── Task 4 │ │ ├── image.png │ │ ├── lodepng.c │ │ ├── lodepng.h │ │ ├── output.png │ │ ├── task4 │ │ ├── task4.c │ │ └── task4.png ├── Week 1 - Lab Report │ ├── Pattern │ │ ├── pattern │ │ └── pattern.c │ ├── Print Result │ │ ├── print_result │ │ └── print_result.c │ ├── Simple Calculator │ │ ├── simple_calculator │ │ └── simple_calculator.c │ ├── Sum of Digits │ │ ├── sum_of_digits │ │ └── sum_of_digits.c │ ├── To Lowercase │ │ ├── to_lowercase │ │ └── to_lowercase.c │ └── Triangular Numbers │ │ ├── triangular_numbers │ │ └── triangular_numbers.c ├── Week 10 - Lab Report │ ├── Solve Race Condition 2 │ │ ├── lock_unlock │ │ └── lock_unlock.c │ └── Solve Race Condition │ │ └── lock_unlock.c ├── Week 10 - Tutorial │ ├── mutex │ └── mutex.c ├── Week 2 - Lab Report │ ├── Armstrong and Perfect Number │ │ ├── armstrong_and_perfect_number │ │ └── armstrong_and_perfect_number.c │ ├── Calculate Velocity │ │ ├── calculate_velocity │ │ └── calculate_velocity.c │ ├── Cube of a Number │ │ ├── cube_of_a_number │ │ └── cube_of_a_number.c │ ├── Midpoint Coordinate │ │ ├── midpoint_coordinate │ │ └── midpoint_coordinate.c │ ├── Simultaneous Equation │ │ ├── simultaneous_equation │ │ └── simultaneous_equation.c │ └── Swap Two Numbers │ │ ├── swap_two_numbers │ │ └── swap_two_numbers.c ├── Week 2 - Tutorial │ ├── Decimal to Binary │ │ ├── decimal_to_binary │ │ └── decimal_to_binary.c │ ├── Odd or Even │ │ ├── odd_or_even │ │ └── odd_or_even.c │ ├── Prime or Not │ │ ├── prime_or_not │ │ └── prime_or_not.c │ └── Square of Number │ │ ├── square_of_number │ │ └── square_of_number.c ├── Week 3 - Lab Report │ ├── Ascending Order │ │ ├── ascending_order │ │ └── ascending_order.c │ ├── Check Anagram │ │ ├── check_anagram │ │ └── check_anagram.c │ ├── Count Sum │ │ ├── count_sum │ │ └── count_sum.c │ ├── Distinct Element │ │ ├── distinct_element │ │ └── distinct_element.c │ ├── Largest Element │ │ ├── largest_element │ │ └── largest_element.c │ └── Sum of Element of 2D Array │ │ ├── sum_of_2d_array │ │ └── sum_of_2d_array.c ├── Week 4 - Lab Report │ ├── Malloc Realloc │ │ ├── malloc_realloc │ │ └── malloc_realloc.c │ ├── Maximum in Array │ │ ├── maximum_in_array │ │ └── maximum_in_array.c │ ├── Memory at Runtime │ │ ├── memory_at_runtime │ │ └── memory_at_runtime.c │ ├── Search Element │ │ ├── search_element │ │ └── search_element.c │ ├── Sum of Elements in Array │ │ ├── sum_of_elements_in_array │ │ └── sum_of_elements_in_array.c │ └── Sum of Two Arrays │ │ ├── sum_of_two_arrays │ │ └── sum_of_two_arrays.c ├── Week 4 - Tutorial │ ├── Array │ │ ├── array │ │ └── array.c │ └── Search Element in Array │ │ ├── search_element │ │ └── search_element.c ├── Week 5 - Lab Report │ ├── Dynamic Number of Struct │ │ ├── dynamic_number_of_struct │ │ └── dynamic_number_of_struct.c │ ├── Employee Salary │ │ ├── employee_salary │ │ └── employee_salary.c │ ├── Increase Salary │ │ ├── increase_salary │ │ └── increase_salary.c │ ├── Struct in Struct │ │ ├── struct_in_struct │ │ └── struct_in_struct.c │ ├── Student Struct │ │ ├── student_struct │ │ └── student_struct.c │ └── Upper and Lower Limit │ │ ├── upper_lower_limit │ │ └── upper_lower_limit.c ├── Week 5 - Tutorial │ ├── Array of Struct │ │ ├── array_of_struct │ │ └── array_of_struct.c │ ├── Struct of Struct │ │ ├── struct_of_struct │ │ └── struct_of_struct.c │ └── Struct │ │ ├── struct │ │ └── struct.c ├── Week 6 - Tutorial │ ├── Append in File │ │ ├── append_in_file │ │ └── append_in_file.c │ ├── File Handling │ │ ├── file_handling │ │ ├── file_handling.c │ │ └── text.txt │ ├── Store Multiple Names │ │ ├── names.txt │ │ ├── store_multiple_names │ │ └── store_multiple_names.c │ └── Write in File │ │ ├── test.txt │ │ ├── write_in_file │ │ └── write_in_file.c ├── Week 6 - Workshop │ ├── file_handling │ ├── file_handling.c │ └── test.txt ├── Week 7 - Lab Report │ ├── Greyscale Filter │ │ ├── greyscale_filter │ │ ├── greyscale_filter.c │ │ ├── image.png │ │ └── output.png │ └── Negative Filter │ │ ├── image.png │ │ ├── negative_filter │ │ ├── negative_filter.c │ │ └── output.png ├── Week 7 - Tutorial │ ├── TestImage.png │ ├── image_processing │ ├── image_processing.c │ ├── lodepng.c │ ├── lodepng.h │ └── output.png ├── Week 9 - Lab Report │ ├── Create Threads Dynamically │ │ ├── dynamic_threads │ │ └── dynamic_threads.c │ ├── Five Threads │ │ ├── five_threads │ │ └── five_threads.c │ ├── Odd Numbers │ │ ├── odd_numbers │ │ └── odd_numbers.c │ ├── Prime Numbers │ │ ├── prime_numbers │ │ └── prime_numbers.c │ ├── Search Elements │ │ ├── search_elements │ │ └── search_elements.c │ └── Two Threads │ │ ├── two_threads │ │ └── two_threads.c └── Week 9 - Tutorial │ ├── Prime Numbers │ ├── prime_numbers │ └── prime_numbers.c │ ├── Pthread Example │ ├── pthread_example │ └── pthread_example.c │ ├── With Thread │ ├── with_thread │ └── with_thread.c │ └── Without Thread │ ├── without_thread │ └── without_thread.c └── 5CS037 - Concepts and Technology of AI ├── Assignment 1 ├── 2226675Roshish_Shrestha.ipynb └── performance.csv ├── Assignment 2 ├── 2226675Roshish Shrestha.ipynb └── image.png ├── Final Report ├── 2226675Roshish Shrestha.docx ├── 2226675Roshish Shrestha.pdf └── SimilarityReport.pdf ├── Week 10 - Tutorial └── LinearRegression.ipynb ├── Week 2 - Workshop ├── 22L5W02.ipynb └── bank.csv ├── Week 5 - Workshop ├── 22L5W06(Questions).ipynb ├── Breast Cancer Wisconsin (Prognostic) Data Set.csv └── Lena.png └── Week 9 - Tutorial ├── 22L5W09(Questions).ipynb ├── Salary_Data.csv ├── headbrain.csv ├── insurance.csv └── performance.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/.gitignore -------------------------------------------------------------------------------- /Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 1 - Workshop/Roshish_2226675.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 1 - Workshop/Roshish_2226675.docx -------------------------------------------------------------------------------- /Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 1 - Workshop/mpi01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 1 - Workshop/mpi01.c -------------------------------------------------------------------------------- /Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 1 - Workshop/mpi02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 1 - Workshop/mpi02.c -------------------------------------------------------------------------------- /Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 1 - Workshop/mpi03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 1 - Workshop/mpi03.c -------------------------------------------------------------------------------- /Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 1 - Workshop/prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 1 - Workshop/prime.c -------------------------------------------------------------------------------- /Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 2 - Tutorial/mpi_count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Fourth Semester/5CS022 Distributed and Cloud System Programming/Week 2 - Tutorial/mpi_count.c -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/.gitignore -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/External_JAR/mysql-connector-j-8.0.32.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/External_JAR/mysql-connector-j-8.0.32.jar -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week10_Assignment/DatabaseManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week10_Assignment/DatabaseManager.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week10_Assignment/Frame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week10_Assignment/Frame.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week10_Assignment/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week10_Assignment/User.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/AccessModifier/pkg1/Pkg1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/AccessModifier/pkg1/Pkg1.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/AccessModifier/pkg2/Pkg2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/AccessModifier/pkg2/Pkg2.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/Car/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/Car/Car.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/Data/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/Data/Main.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/RoshishShrestha_2226675_wps1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/RoshishShrestha_2226675_wps1.docx -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/Student/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week1_Workshop/Student/Student.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week2_Workshop/Aggregation/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week2_Workshop/Aggregation/Employee.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week2_Workshop/Heirarchical_Inheritance/Heirarchical.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week2_Workshop/Heirarchical_Inheritance/Heirarchical.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week2_Workshop/Inheritance/Parent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week2_Workshop/Inheritance/Parent.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week2_Workshop/Multi_Level_Inheritance/MultiLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week2_Workshop/Multi_Level_Inheritance/MultiLevel.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week3_Tutorial/Payroll/Payroll.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week3_Tutorial/Payroll/Payroll.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week3_Tutorial/Payroll/Payroll_Reciever.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week3_Tutorial/Payroll/Payroll_Reciever.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week3_Workshop/Encapsulation_Inheritance/Animal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week3_Workshop/Encapsulation_Inheritance/Animal.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week3_Workshop/Palindrome/Palindrome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week3_Workshop/Palindrome/Palindrome.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week3_Workshop/Prime_Number/PrimeNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week3_Workshop/Prime_Number/PrimeNumber.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_CaseStudy/Authentication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_CaseStudy/Authentication.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_CaseStudy/Exceptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_CaseStudy/Exceptions.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_CaseStudy/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_CaseStudy/Main.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_CaseStudy/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_CaseStudy/User.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_Tutorial/Upcasting/Animal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_Tutorial/Upcasting/Animal.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_Workshop/Exception_Handling/Exception.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_Workshop/Exception_Handling/Exception.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_Workshop/Overloading_Overriding/Mobile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_Workshop/Overloading_Overriding/Mobile.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_Workshop/RoshishShrestha_2226675_wps04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_Workshop/RoshishShrestha_2226675_wps04.pdf -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_Workshop/Validate_Regex/Validation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week4_Workshop/Validate_Regex/Validation.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/Auth/Auth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/Auth/Auth.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/Auth/Passwords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/Auth/Passwords.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/Main.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/Models/RentalProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/Models/RentalProperty.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/Admin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/Admin.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/CustomExceptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/CustomExceptions.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/FamilyTypeTenant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/FamilyTypeTenant.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/Landlord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/Landlord.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/StudentTypeTenant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/StudentTypeTenant.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/SystemUsers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/SystemUsers.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/Tenant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_CaseStudy/SystemUser/Tenant.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_Workshop/Abstract_Classes/Android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_Workshop/Abstract_Classes/Android.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_Workshop/Custom_Exception/InvalidInputException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_Workshop/Custom_Exception/InvalidInputException.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_Workshop/Exception_Handling/ExceptionHandling.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week5_Workshop/Exception_Handling/ExceptionHandling.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week6_Workshop/Reverse_Number/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week6_Workshop/Reverse_Number/Main.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week6_Workshop/Sum_of_Numbers/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week6_Workshop/Sum_of_Numbers/Main.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Assignment/Activity1/LinkedList/LinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Assignment/Activity1/LinkedList/LinkedList.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Assignment/Activity1/Queue/Queue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Assignment/Activity1/Queue/Queue.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Assignment/Activity1/Stack/Stack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Assignment/Activity1/Stack/Stack.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Assignment/Activity2/Banking.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Assignment/Activity2/Banking.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Assignment/Activity2/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Assignment/Activity2/Main.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Tutorial/ArrayList/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Tutorial/ArrayList/Main.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Tutorial/HashMap/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week7_Tutorial/HashMap/Main.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week9_Assignment/Activity1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week9_Assignment/Activity1.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week9_Assignment/Activity2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week9_Assignment/Activity2.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week9_Tutorial/Frame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week9_Tutorial/Frame.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week9_Tutorial/SignIn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week9_Tutorial/SignIn.java -------------------------------------------------------------------------------- /Third Semester/5CS019 - Object-Oriented Design and Programming/Week9_Tutorial/Welcome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS019 - Object-Oriented Design and Programming/Week9_Tutorial/Welcome.java -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/datasetLR1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/datasetLR1.txt -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/datasetLR2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/datasetLR2.txt -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/datasetLR3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/datasetLR3.txt -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/datasetLR4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/datasetLR4.txt -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/task1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/task1 -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/task1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/task1.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/task1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 1/task1.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 2/task2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 2/task2 -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 2/task2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 2/task2.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 2/task2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 2/task2.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/Prime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/Prime.txt -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/PrimeData1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/PrimeData1.txt -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/PrimeData2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/PrimeData2.txt -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/PrimeData3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/PrimeData3.txt -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/task3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/task3 -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/task3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/task3.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/task3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 3/task3.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/image.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/lodepng.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/lodepng.h -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/output.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/task4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/task4 -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/task4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/task4.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/task4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Final Assignment/Task 4/task4.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Pattern/pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Pattern/pattern -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Pattern/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Pattern/pattern.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Print Result/print_result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Print Result/print_result -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Print Result/print_result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Print Result/print_result.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Simple Calculator/simple_calculator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Simple Calculator/simple_calculator -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Simple Calculator/simple_calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Simple Calculator/simple_calculator.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Sum of Digits/sum_of_digits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Sum of Digits/sum_of_digits -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Sum of Digits/sum_of_digits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Sum of Digits/sum_of_digits.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/To Lowercase/to_lowercase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/To Lowercase/to_lowercase -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/To Lowercase/to_lowercase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/To Lowercase/to_lowercase.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Triangular Numbers/triangular_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Triangular Numbers/triangular_numbers -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Triangular Numbers/triangular_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 1 - Lab Report/Triangular Numbers/triangular_numbers.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 10 - Lab Report/Solve Race Condition 2/lock_unlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 10 - Lab Report/Solve Race Condition 2/lock_unlock -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 10 - Lab Report/Solve Race Condition 2/lock_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 10 - Lab Report/Solve Race Condition 2/lock_unlock.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 10 - Lab Report/Solve Race Condition/lock_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 10 - Lab Report/Solve Race Condition/lock_unlock.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 10 - Tutorial/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 10 - Tutorial/mutex -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 10 - Tutorial/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 10 - Tutorial/mutex.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Armstrong and Perfect Number/armstrong_and_perfect_number: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Armstrong and Perfect Number/armstrong_and_perfect_number -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Armstrong and Perfect Number/armstrong_and_perfect_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Armstrong and Perfect Number/armstrong_and_perfect_number.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Calculate Velocity/calculate_velocity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Calculate Velocity/calculate_velocity -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Calculate Velocity/calculate_velocity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Calculate Velocity/calculate_velocity.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Cube of a Number/cube_of_a_number: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Cube of a Number/cube_of_a_number -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Cube of a Number/cube_of_a_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Cube of a Number/cube_of_a_number.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Midpoint Coordinate/midpoint_coordinate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Midpoint Coordinate/midpoint_coordinate -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Midpoint Coordinate/midpoint_coordinate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Midpoint Coordinate/midpoint_coordinate.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Simultaneous Equation/simultaneous_equation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Simultaneous Equation/simultaneous_equation -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Simultaneous Equation/simultaneous_equation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Simultaneous Equation/simultaneous_equation.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Swap Two Numbers/swap_two_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Swap Two Numbers/swap_two_numbers -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Swap Two Numbers/swap_two_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Lab Report/Swap Two Numbers/swap_two_numbers.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Decimal to Binary/decimal_to_binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Decimal to Binary/decimal_to_binary -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Decimal to Binary/decimal_to_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Decimal to Binary/decimal_to_binary.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Odd or Even/odd_or_even: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Odd or Even/odd_or_even -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Odd or Even/odd_or_even.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Odd or Even/odd_or_even.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Prime or Not/prime_or_not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Prime or Not/prime_or_not -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Prime or Not/prime_or_not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Prime or Not/prime_or_not.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Square of Number/square_of_number: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Square of Number/square_of_number -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Square of Number/square_of_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 2 - Tutorial /Square of Number/square_of_number.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Ascending Order/ascending_order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Ascending Order/ascending_order -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Ascending Order/ascending_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Ascending Order/ascending_order.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Check Anagram/check_anagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Check Anagram/check_anagram -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Check Anagram/check_anagram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Check Anagram/check_anagram.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Count Sum/count_sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Count Sum/count_sum -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Count Sum/count_sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Count Sum/count_sum.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Distinct Element/distinct_element: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Distinct Element/distinct_element -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Distinct Element/distinct_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Distinct Element/distinct_element.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Largest Element/largest_element: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Largest Element/largest_element -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Largest Element/largest_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Largest Element/largest_element.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Sum of Element of 2D Array/sum_of_2d_array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Sum of Element of 2D Array/sum_of_2d_array -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Sum of Element of 2D Array/sum_of_2d_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 3 - Lab Report/Sum of Element of 2D Array/sum_of_2d_array.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Malloc Realloc/malloc_realloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Malloc Realloc/malloc_realloc -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Malloc Realloc/malloc_realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Malloc Realloc/malloc_realloc.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Maximum in Array/maximum_in_array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Maximum in Array/maximum_in_array -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Maximum in Array/maximum_in_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Maximum in Array/maximum_in_array.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Memory at Runtime/memory_at_runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Memory at Runtime/memory_at_runtime -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Memory at Runtime/memory_at_runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Memory at Runtime/memory_at_runtime.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Search Element/search_element: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Search Element/search_element -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Search Element/search_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Search Element/search_element.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Sum of Elements in Array/sum_of_elements_in_array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Sum of Elements in Array/sum_of_elements_in_array -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Sum of Elements in Array/sum_of_elements_in_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Sum of Elements in Array/sum_of_elements_in_array.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Sum of Two Arrays/sum_of_two_arrays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Sum of Two Arrays/sum_of_two_arrays -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Sum of Two Arrays/sum_of_two_arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Lab Report/Sum of Two Arrays/sum_of_two_arrays.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Tutorial/Array/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Tutorial/Array/array -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Tutorial/Array/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Tutorial/Array/array.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Tutorial/Search Element in Array/search_element: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Tutorial/Search Element in Array/search_element -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Tutorial/Search Element in Array/search_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 4 - Tutorial/Search Element in Array/search_element.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Dynamic Number of Struct/dynamic_number_of_struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Dynamic Number of Struct/dynamic_number_of_struct -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Dynamic Number of Struct/dynamic_number_of_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Dynamic Number of Struct/dynamic_number_of_struct.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Employee Salary/employee_salary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Employee Salary/employee_salary -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Employee Salary/employee_salary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Employee Salary/employee_salary.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Increase Salary/increase_salary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Increase Salary/increase_salary -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Increase Salary/increase_salary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Increase Salary/increase_salary.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Struct in Struct/struct_in_struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Struct in Struct/struct_in_struct -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Struct in Struct/struct_in_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Struct in Struct/struct_in_struct.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Student Struct/student_struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Student Struct/student_struct -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Student Struct/student_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Student Struct/student_struct.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Upper and Lower Limit/upper_lower_limit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Upper and Lower Limit/upper_lower_limit -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Upper and Lower Limit/upper_lower_limit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Lab Report/Upper and Lower Limit/upper_lower_limit.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Array of Struct/array_of_struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Array of Struct/array_of_struct -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Array of Struct/array_of_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Array of Struct/array_of_struct.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Struct of Struct/struct_of_struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Struct of Struct/struct_of_struct -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Struct of Struct/struct_of_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Struct of Struct/struct_of_struct.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Struct/struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Struct/struct -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Struct/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 5 - Tutorial/Struct/struct.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Append in File/append_in_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Append in File/append_in_file -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Append in File/append_in_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Append in File/append_in_file.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/File Handling/file_handling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/File Handling/file_handling -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/File Handling/file_handling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/File Handling/file_handling.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/File Handling/text.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Store Multiple Names/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Store Multiple Names/names.txt -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Store Multiple Names/store_multiple_names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Store Multiple Names/store_multiple_names -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Store Multiple Names/store_multiple_names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Store Multiple Names/store_multiple_names.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Write in File/test.txt: -------------------------------------------------------------------------------- 1 | Roshish -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Write in File/write_in_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Write in File/write_in_file -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Write in File/write_in_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Tutorial/Write in File/write_in_file.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Workshop/file_handling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Workshop/file_handling -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Workshop/file_handling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Workshop/file_handling.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Workshop/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 6 - Workshop/test.txt -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Greyscale Filter/greyscale_filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Greyscale Filter/greyscale_filter -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Greyscale Filter/greyscale_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Greyscale Filter/greyscale_filter.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Greyscale Filter/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Greyscale Filter/image.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Greyscale Filter/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Greyscale Filter/output.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Negative Filter/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Negative Filter/image.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Negative Filter/negative_filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Negative Filter/negative_filter -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Negative Filter/negative_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Negative Filter/negative_filter.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Negative Filter/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Lab Report/Negative Filter/output.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/TestImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/TestImage.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/image_processing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/image_processing -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/image_processing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/image_processing.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/lodepng.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/lodepng.h -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 7 - Tutorial/output.png -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Create Threads Dynamically/dynamic_threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Create Threads Dynamically/dynamic_threads -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Create Threads Dynamically/dynamic_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Create Threads Dynamically/dynamic_threads.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Five Threads/five_threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Five Threads/five_threads -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Five Threads/five_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Five Threads/five_threads.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Odd Numbers/odd_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Odd Numbers/odd_numbers -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Odd Numbers/odd_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Odd Numbers/odd_numbers.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Prime Numbers/prime_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Prime Numbers/prime_numbers -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Prime Numbers/prime_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Prime Numbers/prime_numbers.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Search Elements/search_elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Search Elements/search_elements -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Search Elements/search_elements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Search Elements/search_elements.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Two Threads/two_threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Two Threads/two_threads -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Two Threads/two_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Lab Report/Two Threads/two_threads.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Prime Numbers/prime_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Prime Numbers/prime_numbers -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Prime Numbers/prime_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Prime Numbers/prime_numbers.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Pthread Example/pthread_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Pthread Example/pthread_example -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Pthread Example/pthread_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Pthread Example/pthread_example.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/With Thread/with_thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/With Thread/with_thread -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/With Thread/with_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/With Thread/with_thread.c -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Without Thread/without_thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Without Thread/without_thread -------------------------------------------------------------------------------- /Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Without Thread/without_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS021 - Numerical Methods and Concurrency/Week 9 - Tutorial/Without Thread/without_thread.c -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Assignment 1/2226675Roshish_Shrestha.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Assignment 1/2226675Roshish_Shrestha.ipynb -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Assignment 1/performance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Assignment 1/performance.csv -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Assignment 2/2226675Roshish Shrestha.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Assignment 2/2226675Roshish Shrestha.ipynb -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Assignment 2/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Assignment 2/image.png -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Final Report/2226675Roshish Shrestha.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Final Report/2226675Roshish Shrestha.docx -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Final Report/2226675Roshish Shrestha.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Final Report/2226675Roshish Shrestha.pdf -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Final Report/SimilarityReport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Final Report/SimilarityReport.pdf -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 10 - Tutorial/LinearRegression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 10 - Tutorial/LinearRegression.ipynb -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 2 - Workshop/22L5W02.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 2 - Workshop/22L5W02.ipynb -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 2 - Workshop/bank.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 2 - Workshop/bank.csv -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 5 - Workshop/22L5W06(Questions).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 5 - Workshop/22L5W06(Questions).ipynb -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 5 - Workshop/Breast Cancer Wisconsin (Prognostic) Data Set.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 5 - Workshop/Breast Cancer Wisconsin (Prognostic) Data Set.csv -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 5 - Workshop/Lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 5 - Workshop/Lena.png -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 9 - Tutorial/22L5W09(Questions).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 9 - Tutorial/22L5W09(Questions).ipynb -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 9 - Tutorial/Salary_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 9 - Tutorial/Salary_Data.csv -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 9 - Tutorial/headbrain.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 9 - Tutorial/headbrain.csv -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 9 - Tutorial/insurance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 9 - Tutorial/insurance.csv -------------------------------------------------------------------------------- /Third Semester/5CS037 - Concepts and Technology of AI/Week 9 - Tutorial/performance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R0shish/HCK-WLV-Assignments/HEAD/Third Semester/5CS037 - Concepts and Technology of AI/Week 9 - Tutorial/performance.csv --------------------------------------------------------------------------------