├── Sem3 ├── OOP │ ├── L10 │ │ ├── 5.txt │ │ ├── 3.txt │ │ ├── 1.txt │ │ ├── 1C.txt │ │ ├── 2.txt │ │ ├── 6.txt │ │ ├── 8.java │ │ ├── 7.java │ │ ├── 10.java │ │ └── 12.java │ ├── OOPS Lab Manual.pdf │ ├── L7 │ │ ├── A1.java │ │ ├── A2.java │ │ ├── A5.java │ │ ├── A3.java │ │ ├── 3.java │ │ ├── 2.java │ │ ├── A4.java │ │ └── A6.java │ ├── L1 │ │ ├── 1.java │ │ ├── 3.java │ │ ├── A3.java │ │ ├── A2.java │ │ └── A1.java │ ├── L3 │ │ ├── 2.java │ │ ├── 3.java │ │ └── 1.java │ ├── L2 │ │ ├── 3.java │ │ └── 4.java │ ├── L11 │ │ ├── A3.java │ │ ├── 2.java │ │ ├── A5.java │ │ └── A2.java │ └── L9 │ │ └── 2.java └── DS │ ├── Practice │ ├── Trees │ │ └── 3.ThreadedBinary.cpp │ ├── Graphs │ │ └── Graph │ ├── Factorial.cpp │ └── Fibonacci.cpp │ ├── DS Lab Manual.pdf │ └── L2 │ ├── 1a.cpp │ ├── 1b.cpp │ └── 1c.cpp ├── Sem6 ├── AT LAB │ ├── LAB1 │ │ ├── Q1 │ │ │ ├── .idea │ │ │ │ ├── .name │ │ │ │ ├── .gitignore │ │ │ │ └── compiler.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── res │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ └── ashish.jpeg │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ └── mipmap-anydpi-v26 │ │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── q1 │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── q1 │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ │ └── Q2 │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── res │ │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── colors.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ └── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── q2 │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ └── compiler.xml │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ ├── LAB7 │ │ ├── .idea │ │ │ ├── .name │ │ │ ├── .gitignore │ │ │ └── compiler.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── res │ │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── colors.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ └── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── q1 │ │ │ │ └── ExampleUnitTest.java │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── settings.gradle │ ├── LAB2 │ │ ├── Q1 │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── res │ │ │ │ │ │ ├── values │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── q1 │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── compiler.xml │ │ │ │ └── misc.xml │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ │ ├── Q2 │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── res │ │ │ │ │ │ ├── values │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ └── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── q2 │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── compiler.xml │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ │ └── Q3 │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── res │ │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── colors.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ └── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── q3 │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ └── compiler.xml │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ ├── LAB3 │ │ ├── Q1 │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── res │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ │ ├── logo1.png │ │ │ │ │ │ │ ├── logo10.png │ │ │ │ │ │ │ ├── logo11.png │ │ │ │ │ │ │ ├── logo13.png │ │ │ │ │ │ │ └── logo15.png │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ └── layout │ │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── q1 │ │ │ │ │ │ └── MainActivity2.java │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── q1 │ │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ └── compiler.xml │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ │ └── Q2 │ │ │ ├── app │ │ │ ├── .gitignore │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── values │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── colors.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ └── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── q2 │ │ │ │ │ └── MainActivity.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── q2 │ │ │ │ └── ExampleUnitTest.java │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ └── compiler.xml │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ └── AT LAB Manual.pdf └── ITT LAB │ ├── LAB9 │ └── P1 │ │ ├── P1 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── urls.cpython-310.pyc │ │ │ ├── wsgi.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ └── settings.cpython-310.pyc │ │ ├── asgi.py │ │ └── wsgi.py │ │ ├── members │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ └── 0001_initial.cpython-310.pyc │ │ ├── admin.py │ │ ├── tests.py │ │ ├── __pycache__ │ │ │ ├── admin.cpython-310.pyc │ │ │ ├── apps.cpython-310.pyc │ │ │ ├── urls.cpython-310.pyc │ │ │ ├── views.cpython-310.pyc │ │ │ ├── models.cpython-310.pyc │ │ │ └── __init__.cpython-310.pyc │ │ ├── apps.py │ │ ├── models.py │ │ ├── urls.py │ │ └── templates │ │ │ ├── index.html │ │ │ └── add.html │ │ └── db.sqlite3 │ ├── LAB6 │ ├── names.txt │ ├── body.txt │ ├── 1e.py │ ├── 1a.py │ ├── 1d.py │ ├── 1b.py │ └── 1c.py │ ├── LAB4 │ ├── .vscode │ │ └── settings.json │ ├── Q5 │ │ └── style.css │ ├── Q6 │ │ ├── style.css │ │ └── Q6.js │ ├── Q4 │ │ └── Q4.js │ ├── Q3 │ │ └── Q3.js │ ├── Q1 │ │ └── index.html │ └── Q2 │ │ └── index.html │ ├── LAB2 │ ├── 1 │ │ └── Capture.png │ ├── 2 │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── pgm1.html │ │ ├── pgm2.html │ │ ├── content.html │ │ ├── testTarget.html │ │ ├── f1.html │ │ ├── friends.html │ │ └── d.html │ ├── 3 │ │ └── style.css │ └── A2 │ │ └── a1.html │ ├── LAB3 │ ├── .vscode │ │ └── settings.json │ ├── Q3 │ │ └── Q3.js │ ├── Q1 │ │ └── index.html │ ├── Q5 │ │ └── Q5.js │ ├── Q2 │ │ ├── index.html │ │ └── Q2.js │ └── Q4 │ │ ├── index.html │ │ └── Q4.js │ ├── LAB1 │ ├── 1 │ │ ├── sub │ │ │ └── image.html │ │ ├── background.html │ │ └── index.html │ └── 4 │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── confirmation.html │ │ ├── profile.html │ │ ├── login.html │ │ └── cart.html │ ├── ITT-labmanual-2022.pdf │ ├── LAB5 │ ├── 1e.py │ ├── 1i.py │ ├── 1h.py │ ├── 1j.py │ ├── 1a.py │ ├── 1f.py │ ├── 1b.py │ ├── 1d.py │ └── 1c.py │ └── LAB7 │ ├── 1c.py │ ├── 3.py │ ├── 1a.py │ ├── 4.py │ └── 1b.py ├── Sem4 ├── OS LAB │ ├── L4 │ │ ├── 1.sh │ │ ├── 2.sh │ │ ├── 4.sh │ │ └── 3.sh │ ├── L3 │ │ ├── 7.sh │ │ ├── 2.sh │ │ ├── 3.sh │ │ ├── A3.sh │ │ ├── 6.sh │ │ ├── 4.sh │ │ ├── A2.sh │ │ ├── 5.sh │ │ ├── 1.sh │ │ └── A1.sh │ ├── OS LAB MANUAL.pdf │ ├── L1.txt │ ├── L5 │ │ └── 1.c │ └── L2.txt ├── AL LAB │ └── Algorithms-labmanual.pdf └── COMP LAB │ ├── COMP LAB MANUAL 2021.pdf │ ├── L1 │ ├── 1.ASM │ ├── 2.ASM │ └── 3.ASM │ ├── L3 │ ├── 1.asm │ ├── 2.asm │ ├── 8.ASM │ ├── 3.ASM │ └── 5.ASM │ ├── L2 │ ├── 2B.ASM │ ├── A1.ASM │ └── 2A.ASM │ └── L4 │ └── Q1.ASM ├── Sem5 ├── DBS LAB │ ├── L1 │ │ ├── Q2 │ │ │ ├── obj │ │ │ │ └── Debug │ │ │ │ │ ├── Q2.csproj.AssemblyReference.cache │ │ │ │ │ ├── Q2.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── Q2.exe │ │ │ │ │ ├── Q2.pdb │ │ │ │ │ ├── Q2.Form1.resources │ │ │ │ │ ├── Q2.Properties.Resources.resources │ │ │ │ │ ├── Q2.csproj.GenerateResource.cache │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ │ │ └── Q2.csproj.FileListAbsolute.txt │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ ├── Q2.exe │ │ │ │ │ ├── Q2.pdb │ │ │ │ │ └── Q2.exe.config │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ │ └── Settings.settings │ │ │ └── Program.cs │ │ ├── Q1 │ │ │ ├── obj │ │ │ │ ├── Debug │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ ├── Q1.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── Q1.exe │ │ │ │ │ ├── Q1.pdb │ │ │ │ │ ├── Q1.Form1.resources │ │ │ │ │ ├── Q1.Properties.Resources.resources │ │ │ │ │ ├── Q1.csproj.AssemblyReference.cache │ │ │ │ │ ├── Q1.csproj.GenerateResource.cache │ │ │ │ │ ├── Q1.csprojResolveAssemblyReference.cache │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ ├── TempPE │ │ │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ └── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ │ │ │ └── Release │ │ │ │ │ └── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ ├── Q1.exe │ │ │ │ │ ├── Q1.pdb │ │ │ │ │ ├── Q1.vshost.exe │ │ │ │ │ ├── Q1.exe.config │ │ │ │ │ ├── Q1.vshost.exe.config │ │ │ │ │ └── Q1.vshost.exe.manifest │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ │ ├── Settings.settings │ │ │ │ └── Form1.cs │ │ │ └── Program.cs │ │ ├── Q1.png │ │ └── Q2.png │ ├── L2 │ │ ├── Q2 │ │ │ ├── obj │ │ │ │ └── Debug │ │ │ │ │ ├── L2Q2.csproj.AssemblyReference.cache │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ └── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ │ └── Settings.settings │ │ │ └── Program.cs │ │ └── Q1 │ │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ ├── L2Q1.exe │ │ │ │ ├── L2Q1.pdb │ │ │ │ ├── L2Q1.Form1.resources │ │ │ │ ├── L2Q1.Properties.Resources.resources │ │ │ │ ├── L2Q1.csproj.GenerateResource.Cache │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── L2Q1.csprojResolveAssemblyReference.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ └── L2Q1.csproj.FileListAbsolute.txt │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── L2Q1.exe │ │ │ │ ├── L2Q1.pdb │ │ │ │ ├── L2Q1.vshost.exe │ │ │ │ ├── L2Q1.exe.config │ │ │ │ ├── L2Q1.vshost.exe.config │ │ │ │ └── L2Q1.vshost.exe.manifest │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ └── Settings.settings │ │ │ └── Program.cs │ └── ICT 3163 DATABASE SYSTEMS LAB Manual-IT-5th Sem.pdf ├── NPS LAB │ ├── L8 │ │ ├── Q1.pkt │ │ └── Q2.pkt │ ├── L9 │ │ ├── Q1.pkt │ │ ├── Q2.pkt │ │ ├── Q3.pkt │ │ └── Q4.pkt │ ├── L10 │ │ ├── P1.pkt │ │ ├── P2.pkt │ │ ├── Q1.pkt │ │ ├── Q2.pkt │ │ ├── RIP.pdf │ │ └── OSPF.pdf │ ├── L11 │ │ ├── E1.pkt │ │ ├── E2.pkt │ │ ├── P1.pkt │ │ ├── Q1.pkt │ │ ├── Q2.pkt │ │ ├── Q3.pkt │ │ └── NAT- ND LAB.pdf │ ├── L12 │ │ ├── P1.pkt │ │ ├── Q1.pkt │ │ └── VOIP.docx │ └── NPS(ICT 3165) Lab Manual.pdf └── ES LAB │ ├── ES Lab Manual.pdf │ ├── L6 │ ├── 1.c │ └── 2.c │ ├── L2 │ └── 3.s │ ├── L4 │ ├── 3.s │ └── 4.s │ ├── L8 │ └── 1.c │ ├── L3 │ ├── 4.s │ └── 1.s │ ├── L5 │ ├── 1.s │ └── 3.s │ └── L1 │ ├── 1b.s │ └── 1a.s └── Sem1 └── PSUC LAB ├── Matlab LAB-1.docx ├── Matlab LAB-2.docx ├── Matlab LAB-3.docx ├── Question Bank.pdf ├── PSUC LAB MANUAL.pdf ├── L1 ├── 3.c ├── 1.c ├── 7.c ├── A1.c ├── A2.c ├── 6.c ├── 5.c ├── 2.c ├── 8.c └── 4.c ├── L2 ├── 1.c ├── 3.c ├── 6.c ├── 5.c └── 2.c ├── L10 ├── 3.c ├── 1.c ├── 2.c ├── 4.c └── A1.c ├── L7 ├── A3.c ├── 1.c ├── 2.c └── 3.c ├── L4 ├── 2.c ├── 1.c ├── 4.c ├── A1.c ├── 3.c └── A2.c ├── L3 ├── 1.c ├── 3.c ├── A1.c └── 2.c ├── L8 ├── A2.c ├── 2.c ├── A3.c ├── 1.c ├── 3.c └── A1.c ├── L5 ├── A3.c ├── 1.c ├── 4.c ├── A1.c ├── 5.c ├── A2.c └── 2.c └── L6 └── 2.c /Sem3/OOP/L10/5.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/.idea/.name: -------------------------------------------------------------------------------- 1 | Q1 -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/.idea/.name: -------------------------------------------------------------------------------- 1 | Q1 -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/P1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sem3/OOP/L10/3.txt: -------------------------------------------------------------------------------- 1 | HELLO MIT QUESTION 3 2 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sem3/OOP/L10/1.txt: -------------------------------------------------------------------------------- 1 | HELLO MIT QUESTION 1 2 | -------------------------------------------------------------------------------- /Sem3/OOP/L10/1C.txt: -------------------------------------------------------------------------------- 1 | HELLO MIT QUESTION 1 2 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L4/1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cp $1 copy-$1 3 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB6/names.txt: -------------------------------------------------------------------------------- 1 | ASHISH 2 | CINMAY 3 | ABHINAV -------------------------------------------------------------------------------- /Sem4/OS LAB/L3/7.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sed -i '2~2d' $1 4 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q2/obj/Debug/L2Q2.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB4/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB2/2/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } 4 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB3/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } 4 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Sem3/OOP/L10/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem3/OOP/L10/2.txt -------------------------------------------------------------------------------- /Sem3/OOP/L10/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem3/OOP/L10/6.txt -------------------------------------------------------------------------------- /Sem3/DS/Practice/Trees/3.ThreadedBinary.cpp: -------------------------------------------------------------------------------- 1 | // Program to implement Threaded Binary Trees 2 | #include 2 | Q1 3 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Q2 3 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Q1 3 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Q2 3 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Q3 3 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Q1 3 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Q2 3 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Q1 3 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB2/1/Capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB2/1/Capture.png -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB6/1e.py: -------------------------------------------------------------------------------- 1 | import re 2 | s = "Hello Everyone! Thank you so much for visting." 3 | print(re.sub("so", "very", s)) -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/db.sqlite3 -------------------------------------------------------------------------------- /Sem1/PSUC LAB/PSUC LAB MANUAL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem1/PSUC LAB/PSUC LAB MANUAL.pdf -------------------------------------------------------------------------------- /Sem4/AL LAB/Algorithms-labmanual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem4/AL LAB/Algorithms-labmanual.pdf -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/bin/Debug/Q1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/bin/Debug/Q1.exe -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/bin/Debug/Q1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/bin/Debug/Q1.pdb -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.exe -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.pdb -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/bin/Debug/Q2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q2/bin/Debug/Q2.exe -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/bin/Debug/Q2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q2/bin/Debug/Q2.pdb -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.exe -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.pdb -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/bin/Debug/L2Q1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/bin/Debug/L2Q1.exe -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/bin/Debug/L2Q1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/bin/Debug/L2Q1.pdb -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.exe -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.pdb -------------------------------------------------------------------------------- /Sem6/ITT LAB/ITT-labmanual-2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/ITT-labmanual-2022.pdf -------------------------------------------------------------------------------- /Sem4/COMP LAB/COMP LAB MANUAL 2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem4/COMP LAB/COMP LAB MANUAL 2021.pdf -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB5/1e.py: -------------------------------------------------------------------------------- 1 | def sum(a): 2 | if a <= 1: 3 | return 1 4 | else: 5 | return a+sum(a-1) 6 | print(sum(5)) 7 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/bin/Debug/Q1.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/bin/Debug/Q1.vshost.exe -------------------------------------------------------------------------------- /Sem5/NPS LAB/NPS(ICT 3165) Lab Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/NPS LAB/NPS(ICT 3165) Lab Manual.pdf -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/bin/Debug/L2Q1.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/bin/Debug/L2Q1.vshost.exe -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.Form1.resources -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.Form1.resources -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB5/1i.py: -------------------------------------------------------------------------------- 1 | a=[1,2,3,4,5,4,3,2,1] 2 | rev_a = a[::-1] 3 | if(a==rev_a): 4 | print ("Palindrome") 5 | else: 6 | print("Not Palindrome") 7 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L4/2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | n=$# 4 | if [ $n -eq 0 ] 5 | then 6 | echo "No files provided" 7 | exit 1 8 | fi 9 | rm -i $* 10 | 11 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.Form1.resources -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB5/1h.py: -------------------------------------------------------------------------------- 1 | a = {1,2,3,5,7,8,9} 2 | b = {1,8,4,6,9} 3 | print(a.union(b)) 4 | print(a.intersection(b)) 5 | print(a.difference(b)) 6 | print(b.difference(a)) -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Sem4/OS LAB/L3/2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Enter the pattern" 4 | read pattern 5 | echo "Enter the location" 6 | read location 7 | 8 | echo `grep -L $pattern $location` 9 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L3/3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Replacing .txt -> .text" 3 | result=`find . -depth -name *.txt` 4 | for i in $result 5 | do 6 | mv $i ${i%.txt}.text 7 | done 8 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L3/A3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | f=$1 4 | 5 | touch evenfile.txt 6 | touch oddfile.txt 7 | sed -n '2~2p' $f > evenfile.txt 8 | sed -n '1~2p' $f > oddfile.txt 9 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/drawable/ashish.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/drawable/ashish.jpeg -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/P1/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/P1/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/P1/__pycache__/wsgi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/P1/__pycache__/wsgi.cpython-310.pyc -------------------------------------------------------------------------------- /Sem4/OS LAB/L1.txt: -------------------------------------------------------------------------------- 1 | a) 2 | find . -type f -name "*.txt" 3 | b) 4 | find . -type f -name "*[0-9]*" 5 | c) 6 | find . -type f -name "*????*" 7 | d) 8 | find . -type f -name "[!aeiou]*" -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/drawable-v24/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/drawable-v24/logo1.png -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.Properties.Resources.resources -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.Properties.Resources.resources -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/drawable-v24/logo10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/drawable-v24/logo10.png -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/drawable-v24/logo11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/drawable-v24/logo11.png -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/drawable-v24/logo13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/drawable-v24/logo13.png -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/drawable-v24/logo15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/drawable-v24/logo15.png -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB5/1j.py: -------------------------------------------------------------------------------- 1 | s='AHYBDCSZ' 2 | s_new='' 3 | for i in s: 4 | p=ord(i) 5 | p+=3 6 | if(p>90): 7 | p-=26 8 | s_new+=chr(p) 9 | print(s_new) 10 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/P1/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/P1/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/P1/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/P1/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/members/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/members/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/members/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/members/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /Sem5/DBS LAB/ICT 3163 DATABASE SYSTEMS LAB Manual-IT-5th Sem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/ICT 3163 DATABASE SYSTEMS LAB Manual-IT-5th Sem.pdf -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.Properties.Resources.resources -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/members/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/members/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/obj/Debug/Q1.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB2/3/style.css: -------------------------------------------------------------------------------- 1 | td { 2 | padding: 15px; 3 | text-align: center; 4 | border: 1px solid black; 5 | } 6 | table { 7 | width: 20%; 8 | border-collapse: collapse; 9 | } 10 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q2/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q2/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q2/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB7/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MembersConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'members' 7 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | class Inventory(models.Model): 4 | Itemname = models.CharField(max_length=255) 5 | Quantity = models.CharField(max_length=255) -------------------------------------------------------------------------------- /Sem4/COMP LAB/L1/1.ASM: -------------------------------------------------------------------------------- 1 | Code Segment 2 | Assume CS:Code 3 | Start: 4 | MOV AX,2946H 5 | MOV BX,AX 6 | MOV AH,4CH 7 | INT 21H 8 | Code ends 9 | end start 10 | 11 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L1/Q2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem5/DBS LAB/L2/Q2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/migrations/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/members/migrations/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB5/1a.py: -------------------------------------------------------------------------------- 1 | a=10 2 | b=30 3 | c=a+b 4 | print (" a+b = ",c) 5 | c=a-b 6 | print (" a-b = ",c) 7 | c=a*b 8 | print (" a*b = ",c) 9 | c=a/b 10 | print (" a/b = ",c) 11 | c=a%b 12 | print (" a%b = ",c) 13 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/migrations/__pycache__/0001_initial.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashiishjn/MIT-MANIPAL-IT-LAB/HEAD/Sem6/ITT LAB/LAB9/P1/members/migrations/__pycache__/0001_initial.cpython-310.pyc -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q2/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L4/4.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Wordcount Script 4 | 5 | case $1 in 6 | -linecount) 7 | wc "$2" -l;; 8 | -wordcount) 9 | wc "$2" -w;; 10 | -charcount) 11 | wc "$2" -c;; 12 | *);; 13 | esac 14 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB5/1f.py: -------------------------------------------------------------------------------- 1 | def fibo(a): 2 | if(a==0): 3 | return 0 4 | elif(a==1): 5 | return 1 6 | else: 7 | return fibo(a-1)+fibo(a-2) 8 | 9 | for i in range(10): 10 | print (fibo(i)) 11 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/bin/Debug/Q2.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/bin/Debug/L2Q1.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/bin/Debug/Q1.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/bin/Debug/Q1.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB6/1a.py: -------------------------------------------------------------------------------- 1 | s = "abcdefedcb" 2 | l = len(s) 3 | p=l-1 4 | f=0 5 | for i in range (int(l/2)): 6 | if(s[i] != s[p]): 7 | print("Not Palindrome") 8 | f=1 9 | break 10 | p-=1 11 | if(f==0): 12 | print("Palindrome") -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/bin/Debug/L2Q1.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB6/1d.py: -------------------------------------------------------------------------------- 1 | body = open("body.txt", "r+") 2 | name = open("names.txt", "r+") 3 | bdy = body.read() 4 | for nam in name: 5 | print(nam) 6 | mail = "Hello " + nam.strip() + "\n" + bdy 7 | wri = open(nam.strip()+".txt", "w") 8 | wri.write(mail) -------------------------------------------------------------------------------- /Sem3/DS/Practice/Factorial.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main(){ 4 | int i, n, val=1; 5 | cout<<"Enter n:"; 6 | cin>>n; 7 | for(i=n;i>0;i--){ 8 | val=val*i; 9 | } 10 | cout<='a' and i<='z': 5 | c=c+i 6 | elif i>='A' and i<='Z': 7 | c=c+i 8 | elif i>='0' and i<='9': 9 | c=c+i 10 | elif i==' ': 11 | c=c+i 12 | print(c) -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB6/1c.py: -------------------------------------------------------------------------------- 1 | list = ["HELLO", "WORLD", "THIS", "IS", "INDIA"] 2 | l = len(list) 3 | for i in range(l-1): 4 | for j in range(0,l-i-1): 5 | if(list[j]>list[j+1]): 6 | a=list[j] 7 | list.pop(j) 8 | list.insert(j+1,a) 9 | 10 | print(list) -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L1/3.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | char x; 7 | printf("Enter the character\n"); 8 | scanf("%c",&x); 9 | printf("\nThe ASCII value assigned to the character is %d",x); 10 | return 0; 11 | } 12 | -------------------------------------------------------------------------------- /Sem4/COMP LAB/L1/2.ASM: -------------------------------------------------------------------------------- 1 | Data Segment 2 | num1 dW 11B4H 3 | num2 dW ? 4 | Data ends 5 | Code Segment 6 | Assume CS:Code, DS:Data 7 | Start: 8 | MOV AX, Data 9 | MOV DS, AX 10 | MOV AX, num1 11 | MOV num2, AX 12 | MOV AH, 4CH 13 | INT 21H 14 | Code ends 15 | end start 16 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB5/1d.py: -------------------------------------------------------------------------------- 1 | a=[[1,2,3],[4,5,6],[7,8,9]] 2 | b=[[2,3,4],[5,6,7],[1,8,5]] 3 | c=[[0,0,0],[0,0,0],[0,0,0]] 4 | for i in range(3): 5 | for j in range(3): 6 | c[i][j]=a[i][j]+b[i][j] 7 | for i in range(3): 8 | for j in range(3): 9 | print (c[i][j]) 10 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L3/A2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Script to find the factorial of a number 4 | counter=$1 5 | factorial=1 6 | while [ $counter -gt 0 ] #while counter > 0 7 | do 8 | factorial=$(( $factorial * $counter )) 9 | counter=$(( $counter - 1 )) 10 | done 11 | echo $factorial 12 | -------------------------------------------------------------------------------- /Sem4/COMP LAB/L1/3.ASM: -------------------------------------------------------------------------------- 1 | DATA SEGMENT 2 | NUM1 DB 0ABH 3 | NUM2 DB ? 4 | DATA ENDS 5 | 6 | CODE SEGMENT 7 | ASSUME CS:CODE, DS:DATA 8 | START: 9 | MOV AX, DATA 10 | MOV DS, AX 11 | 12 | MOV AL, NUM1 13 | MOV NUM2, AL 14 | 15 | MOV AH, 4CH 16 | INT 21H 17 | 18 | CODE ENDS 19 | END START 20 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L3/5.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #Shell Script to copy all files of a particular extension to a user-provided folder 3 | extension=$1 4 | folder=$2 5 | result=`find ./ -maxdepth 1 -name *$extension` 6 | mkdir $folder 7 | for i in $result 8 | do 9 | mv $i $folder 10 | done 11 | 12 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L1/1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int a,b,sum; 7 | printf("enter the two numbers to add\n"); 8 | scanf("%d%d",&a,&b); 9 | sum=a+b; 10 | printf("the sum of the two numbers is %d ",sum); 11 | return 0; 12 | } 13 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] 5 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/obj/Release/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] 5 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q2/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L3/1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | PASSED=$1 3 | if [ -d "${PASSED}" ] ; then 4 | echo "$PASSED is a directory"; 5 | else 6 | if [ -f "${PASSED}" ]; then 7 | echo "${PASSED} is a file"; 8 | else 9 | echo "${PASSED} is not valid"; 10 | exit 1 11 | fi 12 | fi 13 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu May 05 18:31:14 IST 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L1/7.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | float f,c; 7 | printf("Enter the temperature in Fahrenheit\n"); 8 | scanf("%f",&f); 9 | c=(5.0/9)*(f-32); 10 | printf("\nThe temperature in centigrade is %f",c); 11 | return 0; 12 | } 13 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L3/A1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Script to check for a prime number 3 | 4 | read input 5 | for((i=2;i 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q2/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Mar 15 23:28:13 IST 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Mar 16 00:05:12 IST 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Apr 01 11:34:13 IST 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Apr 01 11:40:13 IST 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Apr 01 11:48:38 IST 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Apr 01 12:06:04 IST 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Apr 01 12:26:34 IST 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L2/1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int n; 7 | printf("Enter any number\n"); 8 | scanf("%d",&n); 9 | if(n%2==0) 10 | printf("The number is even"); 11 | else 12 | printf("The number is odd"); 13 | return 0; 14 | } 15 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L2/3.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int a,b; 7 | printf("Enter any two number\n"); 8 | scanf("%d%d",&a,&b); 9 | a=a-b; 10 | b=a+b; 11 | a=b-a; 12 | printf("The swapped numbers are %d and %d",a,b); 13 | return 0; 14 | } 15 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L2/6.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int a,b,c,s; 7 | printf("Enter any three numbers\n"); 8 | scanf("%d%d%d",&a,&b,&c); 9 | s=(a 4 | using namespace std; 5 | int main(){ 6 | char c[50]; 7 | cout<<"Enter the string:"; 8 | cin>>c; 9 | int i; 10 | for(i=0;c[i]!='\0';i++); 11 | cout<<"The size of the string is "< 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB2/2/pgm2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L10/3.c: -------------------------------------------------------------------------------- 1 | #include 2 | void main() 3 | { 4 | char *ptr,str[80]; 5 | int ctr=0; 6 | printf("\nEnter the string: "); 7 | gets(str); 8 | ptr=&str; 9 | while(*ptr!='\0') 10 | { 11 | ctr++; 12 | ptr++; 13 | } 14 | printf("\nThe length of the string is: %d",ctr); 15 | } 16 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id 'com.android.application' version '7.1.2' apply false 4 | id 'com.android.library' version '7.1.2' apply false 5 | } 6 | 7 | task clean(type: Delete) { 8 | delete rootProject.buildDir 9 | } -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB1/1/sub/image.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB2/2/content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB2/A2/a1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB4/Q5/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 100px; 3 | display: grid; 4 | grid-template-columns: 1fr 1fr 1fr 1fr; 5 | width: 300px; 6 | } 7 | 8 | .calci { 9 | grid-column: 1 / -1; 10 | } 11 | 12 | #output { 13 | grid-column: 1 / 5; 14 | height: 30px; 15 | border: 0.1px solid grey; 16 | border-radius: 2px; 17 | } 18 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id 'com.android.application' version '7.1.2' apply false 4 | id 'com.android.library' version '7.1.2' apply false 5 | } 6 | 7 | task clean(type: Delete) { 8 | delete rootProject.buildDir 9 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id 'com.android.application' version '7.1.2' apply false 4 | id 'com.android.library' version '7.1.2' apply false 5 | } 6 | 7 | task clean(type: Delete) { 8 | delete rootProject.buildDir 9 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id 'com.android.application' version '7.1.2' apply false 4 | id 'com.android.library' version '7.1.2' apply false 5 | } 6 | 7 | task clean(type: Delete) { 8 | delete rootProject.buildDir 9 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id 'com.android.application' version '7.1.2' apply false 4 | id 'com.android.library' version '7.1.2' apply false 5 | } 6 | 7 | task clean(type: Delete) { 8 | delete rootProject.buildDir 9 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id 'com.android.application' version '7.1.2' apply false 4 | id 'com.android.library' version '7.1.2' apply false 5 | } 6 | 7 | task clean(type: Delete) { 8 | delete rootProject.buildDir 9 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id 'com.android.application' version '7.1.2' apply false 4 | id 'com.android.library' version '7.1.2' apply false 5 | } 6 | 7 | task clean(type: Delete) { 8 | delete rootProject.buildDir 9 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | plugins { 3 | id 'com.android.application' version '7.1.2' apply false 4 | id 'com.android.library' version '7.1.2' apply false 5 | } 6 | 7 | task clean(type: Delete) { 8 | delete rootProject.buildDir 9 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB1/1/background.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB4/Q6/style.css: -------------------------------------------------------------------------------- 1 | .Red { 2 | color: red; 3 | width: 50px; 4 | } 5 | .Yellow { 6 | color: Yellow; 7 | width: 50px; 8 | } 9 | 10 | .Blue { 11 | color: Blue; 12 | width: 50px; 13 | } 14 | 15 | .Orange { 16 | color: Orange; 17 | width: 50px; 18 | } 19 | 20 | .Green { 21 | color: Green; 22 | width: 50px; 23 | } 24 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L1/A1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int d,y,a,w,dy; 7 | printf("Enter the number of days\n"); 8 | scanf("%d",&d); 9 | y=d/365; 10 | a=d%365; 11 | w=a/7; 12 | dy=a%7; 13 | printf("\nThere are %d year, %d week, and %d days",y,w,dy); 14 | return 0; 15 | } 16 | -------------------------------------------------------------------------------- /Sem3/OOP/L7/A2.java: -------------------------------------------------------------------------------- 1 | class Example2 { 2 | int num; 3 | // Static class 4 | static class X { 5 | static String str="Inside Class X"; 6 | num=99; 7 | } 8 | 9 | public static void main(String args[]) 10 | { 11 | Example2.X obj = new Example2.X(); 12 | System.out.println("Value of num="+obj.str); 13 | } 14 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L2/5.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int x,y; 7 | printf("Enter any number\n"); 8 | scanf("%d",&x); 9 | if(x>0) 10 | y=1; 11 | else if(x==0) 12 | y=0; 13 | else if(x<0) 14 | y=-1; 15 | printf("The value of Y is %d",y); 16 | return 0; 17 | } 18 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sem3/OOP/L7/A5.java: -------------------------------------------------------------------------------- 1 | class Example5{ 2 | static int i; 3 | static String s; 4 | public static void main(String args[]) //Its a Static Method 5 | { 6 | Example5 obj=new 7 | Example5(); 8 | //Non Static variables accessed using object obj 9 | System.out.println("i:"+obj.i); 10 | System.out.println("s:"+obj.s); 11 | } 12 | } -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L1/A2.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int s,h,a,m,sec; 7 | printf("Enter the time in seconds\n"); 8 | scanf("%d",&s); 9 | h=s/3600; 10 | a=s%3600; 11 | m=a/60; 12 | sec=a%60; 13 | printf("\nThere are %d hour, %d minute, and %d seconds",h,m,sec); 14 | return 0; 15 | } 16 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L10/1.c: -------------------------------------------------------------------------------- 1 | #include 2 | int gcd(int x, int y) 3 | { 4 | if (x == 0) 5 | return (y); 6 | if (y==0) 7 | return (x); 8 | return gcd(y, x % y); 9 | } 10 | main() 11 | { 12 | int x,y; 13 | printf("Enter two numbers to find gcd"); 14 | scanf("%d%d",&x,&y); 15 | printf("The gcd is %d",gcd(x,y)); 16 | } 17 | -------------------------------------------------------------------------------- /Sem3/OOP/L7/A3.java: -------------------------------------------------------------------------------- 1 | class Example3 { 2 | static int num; 3 | static String mystr; 4 | static{ 5 | num = 97; 6 | mystr = "Static keyword in Java"; 7 | } 8 | 9 | public static void main(String args[]){ 10 | System.out.println("Value of num="+num); 11 | System.out.println("Value of mystr="+mystr); 12 | } 13 | } -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB5/1c.py: -------------------------------------------------------------------------------- 1 | a=[[1,2],[4,5],[7,8]] 2 | b=[[2,3,4,1],[5,6,7,8]] 3 | c=[[0,0,0,0],[0,0,0,0],[0,0,0,0]] 4 | sum=0 5 | for i in range(3): 6 | for j in range(4): 7 | sum=0 8 | for k in range(2): 9 | sum+=a[i][k]*b[k][j] 10 | c[i][j]=sum 11 | for i in range(3): 12 | for j in range(4): 13 | print (c[i][j]) 14 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB7/3.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | import sqlite3 3 | conn = sqlite3.connect('test.db') 4 | print ("Opened database successfully") 5 | a=input("Enter Registeration Number") 6 | cursor = conn.execute("SELECT * from STUDENT WHERE REG = " + a) 7 | for row in cursor: 8 | print(row) 9 | print ("Operation done successfully") 10 | conn.close() 11 | -------------------------------------------------------------------------------- /Sem3/DS/Practice/Fibonacci.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main(){ 4 | int i,a,b, f=1, n; 5 | cout<<"Enter n:"; 6 | cin>>n; 7 | a=0; 8 | cout< 2 | #include 3 | 4 | int main() 5 | { 6 | int r,vol,sa; 7 | printf("Enter the radius of the sphere\n"); 8 | scanf("%d",&r); 9 | vol=4*3.14*r*r*r/3; 10 | sa=4*3.14*r*r; 11 | printf("\nVolume of the sphere is %d",vol); 12 | printf("\n Surface area of the sphere is %d",sa); 13 | return 0; 14 | } 15 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L10/2.c: -------------------------------------------------------------------------------- 1 | #include 2 | int rfibo(int n) 3 | { 4 | if (n <= 1) 5 | return n; 6 | else 7 | return (rfibo(n-1) + rfibo(n-2)); 8 | } 9 | void main() 10 | { 11 | int x,i; 12 | printf("Enter a numbers "); 13 | scanf("%d",&x); 14 | printf("The Series is:"); 15 | for(i=0;i 2 | #include 3 | 4 | int main() 5 | { 6 | int i; 7 | char a[50],b[6]; 8 | printf("Enter the user name: "); 9 | gets(a); 10 | printf("Enter the password(6 characters): "); 11 | for(i=0;i<6;i++) 12 | { 13 | b[i]=getch(); 14 | printf("*"); 15 | } 16 | return 0; 17 | } 18 | -------------------------------------------------------------------------------- /Sem3/OOP/L1/1.java: -------------------------------------------------------------------------------- 1 | public class First{ 2 | public static void main(String args[]){ 3 | int length=Integer.parseInt(args[0]), breadth=Integer.parseInt(args[1]); 4 | int area=length*breadth; 5 | int peri=2*(length+breadth); 6 | System.out.println("Area of the rectangle ="+area); 7 | System.out.println("Perimeter of the rectangle ="+peri); 8 | } 9 | } -------------------------------------------------------------------------------- /Sem3/OOP/L1/3.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | public class Third{ 3 | public static void main(String args[]){ 4 | Scanner s= new Scanner(System.in); 5 | System.out.println("Enter the number of odd numbers required:"); 6 | int n=s.nextInt(); 7 | for(int i=0;i 2 | #include 3 | 4 | int main() 5 | { 6 | int i,j,a,n,k; 7 | printf("Enter the value of n and k\n"); 8 | scanf("%d%d",&n,&k); 9 | for(i=1;i<=n;i++) 10 | { 11 | for(j=1;j<=k;j++) 12 | { 13 | a=i*j; 14 | printf("%d ",a); 15 | } 16 | printf("\n"); 17 | } 18 | return 0; 19 | } 20 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB3/Q1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 |

TEXT-GROWING

12 | 13 | -------------------------------------------------------------------------------- /Sem3/DS/L2/1b.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main(){ 4 | char a[50]; 5 | cout<<"Enter the string 1:"; 6 | cin>>a; 7 | char b[50]; 8 | cout<<"Enter the string 2:"; 9 | cin>>b; 10 | int m; 11 | for(m=0;a[m]!='\0';m++); 12 | int n; 13 | for(n=0;b[n]!='\0';n++){ 14 | a[n+m]=b[n]; 15 | } 16 | a[n+m+1]='\0'; 17 | cout< DS 2 | Data Segment 3 | sum dW 0H 4 | carry dW 0H 5 | Data ends 6 | 7 | Code Segment 8 | Assume CS:Code, DS:Data 9 | Start: 10 | 11 | MOV AX,Data 12 | MOV DS,AX 13 | 14 | MOV AX, 1234H 15 | MOV BX, 2345H 16 | 17 | CLC 18 | ADC AX, BX 19 | MOV sum, AX 20 | ADC carry, 0 21 | 22 | MOV AH, 4CH 23 | INT 21H 24 | 25 | Code ends 26 | End Start -------------------------------------------------------------------------------- /Sem3/OOP/L2/3.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | public class Third{ 3 | public static void main(String args[]){ 4 | Scanner scan=new Scanner(System.in); 5 | int n = scan.nextInt(); 6 | int mul=n<<1; 7 | int div=n>>1; 8 | System.out.println("Number multiplied by 2: "+mul); 9 | System.out.println("Number divided by 2: "+div); 10 | scan.close(); 11 | } 12 | } -------------------------------------------------------------------------------- /Sem3/OOP/L7/3.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | class Third{ 3 | public static void main(String args[]){ 4 | Integer a= new Integer(10); //Boxing 5 | Integer x=5; //Autoboxing 6 | x+=10; 7 | int c=x; //Unboxing 8 | System.out.println("Boxed Value: "+a); 9 | System.out.println("Autoboxed Value: "+x); 10 | System.out.println("Unboxed Value: "+c); 11 | } 12 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | rootProject.name = "Q1" 16 | include ':app' 17 | -------------------------------------------------------------------------------- /Sem3/OOP/L10/8.java: -------------------------------------------------------------------------------- 1 | import java.io.*; 2 | class Eighth{ 3 | public static void main(String args[]){ 4 | try{ 5 | String s=args[0]; 6 | System.out.println(s); 7 | } 8 | catch(ArrayIndexOutOfBoundsException e){ 9 | System.out.println("Array Empty!"); 10 | } 11 | finally{ 12 | System.out.println("Exiting"); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | rootProject.name = "Q1" 16 | include ':app' 17 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | rootProject.name = "Q2" 16 | include ':app' 17 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | rootProject.name = "Q1" 16 | include ':app' 17 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | rootProject.name = "Q2" 16 | include ':app' 17 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | rootProject.name = "Q3" 16 | include ':app' 17 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | rootProject.name = "Q1" 16 | include ':app' 17 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | } 14 | } 15 | rootProject.name = "Q2" 16 | include ':app' 17 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB2/2/testTarget.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |

Information Technology

11 |

Seats: 140

12 |

Location: AB5

13 | 14 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB7/1a.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | import sqlite3 3 | conn = sqlite3.connect('test.db') 4 | print ("Opened database successfully") 5 | conn.execute('''CREATE TABLE STUDENT 6 | (STUDENTID INT PRIMARY KEY NOT NULL, 7 | REG INT NOT NULL, 8 | BRANCH TEXT NOT NULL, 9 | SEMESTER INT NOT NULL, 10 | SECTION CHAR(5), 11 | CGPA REAL, 12 | email char(50));''') 13 | print ("Table created successfully") 14 | conn.close() 15 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L4/4.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int n,i,sum=0; 7 | printf("Enter any number\n"); 8 | scanf("%d",&n); 9 | for(i=1;i 2 | 10 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB2/2/f1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB7/4.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | import sqlite3 3 | conn = sqlite3.connect('test.db') 4 | print ("Opened database successfully") 5 | a=input("Enter Student ID") 6 | b=input("Enter CGPA") 7 | conn.execute("UPDATE STUDENT SET CGPA = " + b + " WHERE STUDENTID = "+a ) 8 | cursor = conn.execute("SELECT * FROM STUDENT") 9 | for i in cursor: 10 | print(i) 11 | print ("Operation done successfully") 12 | conn.close() 13 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L7/1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int w=0,i; 7 | char a[1000]; 8 | printf("Enter a sentence\n"); 9 | gets(a); 10 | for(i=0;a[i]!='\0';i++) 11 | { 12 | if(i==0) 13 | continue; 14 | if(a[i]==' '&&a[i+1]!=' '&&a[i+1]!='\0') 15 | w++; 16 | 17 | } 18 | printf("The number of words are %d",++w); 19 | return 0; 20 | } 21 | -------------------------------------------------------------------------------- /Sem3/OOP/L3/3.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | public class Third{ 3 | public static void main(String args[]){ 4 | int n; 5 | Scanner scan= new Scanner(System.in); 6 | n=scan.nextInt(); 7 | for(int i=0;i 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /Sem3/OOP/L11/A3.java: -------------------------------------------------------------------------------- 1 | 2 | class Mythread5 extends Thread 3 | { 4 | public void run() 5 | { 6 | System.out.println(Thread.currentThread()); 7 | } 8 | } 9 | public class L11A3 10 | { 11 | public static void main(String[] args) 12 | { 13 | Mythread5 t1 = new Mythread5(); 14 | System.out.println(t1.getName()); 15 | t1.setName("New"); 16 | System.out.println(t1.getName()); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/java/com/example/q1/MainActivity2.java: -------------------------------------------------------------------------------- 1 | package com.example.q1; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | 5 | import android.os.Bundle; 6 | 7 | public class MainActivity2 extends AppCompatActivity { 8 | 9 | @Override 10 | protected void onCreate(Bundle savedInstanceState) { 11 | super.onCreate(savedInstanceState); 12 | setContentView(R.layout.activity_main2); 13 | } 14 | } -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB1/4/confirmation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Confirm 8 | 9 | 10 | Home 11 |

12 | Thank You! Your order has been confirmed. 13 |

14 | 15 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L10/4.c: -------------------------------------------------------------------------------- 1 | #include 2 | void main() 3 | { 4 | int a[30],*p,n,l,i; 5 | printf("\nEnter the number of elements: "); 6 | scanf("%d",&n); 7 | printf("\nEnter the elements:\n\n"); 8 | for(i=0;il) 15 | l=*(p+i); 16 | } 17 | printf("\nThe largest element is: %d",l); 18 | } 19 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L3/1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int c,n,rev=0,d; 7 | printf("Enter any no.\n"); 8 | scanf("%d",&n); 9 | c=n; 10 | while(c>0) 11 | { 12 | d=c%10; 13 | rev=rev*10+d; 14 | c=c/10; 15 | } 16 | if(rev==n) 17 | printf("%d is a palindrome no.",n); 18 | else 19 | printf("%d is not a palindrome no.",n); 20 | return 0; 21 | } 22 | -------------------------------------------------------------------------------- /Sem3/OOP/L1/A2.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | public class Fifth{ 3 | public static void main(String args[]){ 4 | Scanner scan=new Scanner(System.in); 5 | System.out.println("Enter the number to calculate the factorial of:"); 6 | int a=scan.nextInt(); 7 | scan.close(); 8 | int val=1; 9 | for(int i=1;i<=a;i++){ 10 | val*=i; 11 | } 12 | System.out.println(val); 13 | } 14 | } -------------------------------------------------------------------------------- /Sem4/COMP LAB/L3/2.asm: -------------------------------------------------------------------------------- 1 | ;Program to add two 8-bit decimal numbers from DS to DS 2 | Code Segment 3 | num1 dB 25H 4 | num2 dB 25H 5 | sum dB 0H 6 | carry dB 0H 7 | Code ends 8 | 9 | Data Segment 10 | Assume CS:Code, DS:Data 11 | Start: 12 | 13 | MOV AX,Data 14 | MOV DS,AX 15 | 16 | MOV AL, num1 17 | MOV BL, num2 18 | 19 | CLC 20 | ADC AL, BL 21 | DAA 22 | MOV sum, AL 23 | ADC carry, 0 24 | 25 | MOV AH, 4CH 26 | INT 21H 27 | 28 | Code ends 29 | End Start -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB2/2/friends.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |
    11 |
  • CHINMAY DAS
  • 12 |
  • ABHINAV KUMAR
  • 13 |
  • KESHAV
  • 14 |
15 | 16 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L3/3.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int n,c,arm=0,d; 7 | printf("Enter any number \n"); 8 | scanf("%d",&n); 9 | c=n; 10 | while(c>0) 11 | { 12 | d=c%10; 13 | arm=arm+d*d*d; 14 | c=c/10; 15 | } 16 | if(arm==n) 17 | printf("%d is an armstrong no.",n); 18 | else 19 | printf("%d is not an armstrong no.",n); 20 | return 0; 21 | } 22 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L4/A1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int sum=10,n,d,c; 7 | printf("Enter any number\n"); 8 | scanf("%d",&n); 9 | c=n; 10 | for( ;sum>9;) 11 | { 12 | sum=0; 13 | for(;c>0;c/=10) 14 | { 15 | d=c%10; 16 | sum+=d; 17 | } 18 | c=sum; 19 | } 20 | printf("Generic root of %d is %d",n,sum); 21 | return 0; 22 | } 23 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L7/2.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int i; 7 | char a[1000]; 8 | printf("Enter a string\n"); 9 | gets(a); 10 | for(i=0;a[i]!='\0';i++) 11 | { 12 | if(a[i]>=65 && a[i]<=90) 13 | a[i]+=32; 14 | else if (a[i]>=97 && a[i]<=122) 15 | a[i]-=32; 16 | } 17 | printf("The new string is\n"); 18 | puts(a); 19 | return 0; 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L4/3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #Script to sort strings 3 | 4 | n=$# 5 | s=($*) 6 | echo "Array Before Sorting: "${s[*]} 7 | for ((i=0;i<$n;i++)) 8 | do 9 | for ((j=1;j ${s[$((j+1))]} ]] 13 | then 14 | temp=${s[j]} 15 | s[j]=${s[$((j+1))]} 16 | s[$((j+1))]=$temp 17 | fi 18 | done 19 | done 20 | echo "Array after sorting: "${s[*]} 21 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB1/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | File a 11 | File b 12 | Mail 13 | 14 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/P1/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for P1 project. 3 | 4 | It exposes the ASGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/4.0/howto/deployment/asgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.asgi import get_asgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'P1.settings') 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/P1/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for P1 project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/4.0/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'P1.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /Sem3/OOP/L11/2.java: -------------------------------------------------------------------------------- 1 | 2 | package lab.pkg3; 3 | class Mythread1 extends Thread 4 | { 5 | public void run() 6 | { 7 | for(int i=0;i<10;i++) 8 | System.out.println(Thread.currentThread()+" "+i); 9 | } 10 | } 11 | public class L11Q2 12 | { 13 | public static void main(String[] args) 14 | { 15 | Mythread1 t1=new Mythread1(); 16 | Mythread1 t2=new Mythread1(); 17 | t1.start(); 18 | t2.start(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB4/Q4/Q4.js: -------------------------------------------------------------------------------- 1 | function validate() { 2 | var usn = document.getElementById("usn").value; 3 | var check = /[1-4]{1}[A-Z]{2}[0-9]{2}[A-Z]{2}[0-9]{3}/; 4 | console.log("Checking USN"); 5 | var res = check.test(usn); 6 | if (!res) { 7 | alert("Invalid USN"); 8 | return; 9 | } else { 10 | sem = document.getElementById("semester").value; 11 | alert("Your USN is " + usn + "\nSemester: " + sem); 12 | } 13 | console.log("Checking Done"); 14 | } 15 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.index, name='index'), 6 | path('add/', views.add, name='add'), 7 | path('add/addrecord/', views.addrecord, name='addrecord'), 8 | path('delete/', views.delete, name='delete'), 9 | path('update/', views.update, name='update'), 10 | path('update/updaterecord/', views.updaterecord, name='updaterecord'), 11 | ] -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L1/5.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | int main() 6 | { 7 | int p,r,n; 8 | float ci,si,a,b; 9 | printf("Enter the values of principle amount, interest and time\n"); 10 | scanf("%d%d%d",&p,&r,&n); 11 | si=p*n*r/100; 12 | a=1+(r/100.0); 13 | b=pow(a,n); 14 | ci=(p*b)-p; 15 | printf("\nThe simple interest is %f",si); 16 | printf("\nThe compound interest is %f",ci); 17 | return 0; 18 | } 19 | -------------------------------------------------------------------------------- /Sem4/COMP LAB/L2/2B.ASM: -------------------------------------------------------------------------------- 1 | DATA SEGMENT 2 | A DW 1A10H, 2B20H,3C30H,4D40H,5E50H 3 | B DW 5 DUP(?) 4 | DATA ENDS 5 | 6 | CODE SEGMENT 7 | ASSUME CS:CODE DS:DATA 8 | 9 | START:MOV SI,OFFSET A 10 | LEA DI,B 11 | MOV CX,05 12 | 13 | BACK:MOV AX,[SI] 14 | MOV [DI],AX 15 | INC SI 16 | INC SI 17 | INC DI 18 | INC DI 19 | LOOP BACK 20 | 21 | MOV AH,4CH 22 | INT 21H 23 | 24 | CODE ENDS 25 | END START 26 | 27 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB4/Q3/Q3.js: -------------------------------------------------------------------------------- 1 | var oldValue; 2 | function bringToTop(element) { 3 | oldValue = element.style.zIndex; 4 | element.style.zIndex = 3; 5 | } 6 | 7 | function resetPosition(element) { 8 | element.style.zIndex = oldValue; 9 | } 10 | 11 | // var boxes = document.getElementsByClassName("box"); 12 | // Array.from(boxes).forEach((element, index) => { 13 | // element.onmouseover = () => bringToTop(element); 14 | // element.onmouseout = () => resetPosition(element); 15 | // }); 16 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L4/3.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main () 5 | { 6 | int n,i; 7 | float x,term,sum,no,pi=3.141592; 8 | printf("Enter the value of n and x\n"); 9 | scanf("%d%f",&n,&x); 10 | no=x; 11 | x=x*pi/180.0; 12 | term=x; 13 | sum=x; 14 | 15 | for(i=1;i 2 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB7/app/src/test/java/com/example/q1/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.q1; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB3/Q5/Q5.js: -------------------------------------------------------------------------------- 1 | var sq; 2 | var cu; 3 | var cube = "cu-"; 4 | var square = "sq-"; 5 | var i; 6 | function sqarecube(){ 7 | for(i=0;i<=9;i++) 8 | { 9 | sq=i*i; 10 | cu=i*i*i; 11 | cube+=i.toString(); 12 | square+=i.toString(); 13 | document.getElementById(square).textContent = sq; 14 | document.getElementById(cube).textContent = cu; 15 | cube=cube.substring(0,3); 16 | square=square.substring(0,3); 17 | } 18 | } 19 | sqarecube(); -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q1/app/src/test/java/com/example/q1/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.q1; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB1/Q2/app/src/test/java/com/example/q2/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.q2; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q1/app/src/test/java/com/example/q1/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.q1; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q2/app/src/test/java/com/example/q2/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.q2; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/test/java/com/example/q3/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.q3; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q1/app/src/test/java/com/example/q1/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.q1; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB3/Q2/app/src/test/java/com/example/q2/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.q2; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB3/Q2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /Sem3/OOP/L10/10.java: -------------------------------------------------------------------------------- 1 | class EvilNumber extends Exception{ 2 | public String toString(){ 3 | return "Evil Number Entered"; 4 | } 5 | } 6 | 7 | public class Tenth{ 8 | public static void main(String args[]){ 9 | try{ 10 | int n= Integer.parseInt(args[0]); 11 | if(n==666) 12 | throw new EvilNumber(); 13 | System.out.println(n); 14 | } 15 | catch(EvilNumber e){ 16 | System.out.println(e); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB4/Q6/Q6.js: -------------------------------------------------------------------------------- 1 | function red() { 2 | document.getElementById("body").style.backgroundColor = "red"; 3 | } 4 | function Yellow() { 5 | document.getElementById("body").style.backgroundColor = "Yellow"; 6 | } 7 | function Blue() { 8 | document.getElementById("body").style.backgroundColor = "Blue"; 9 | } 10 | function Green() { 11 | document.getElementById("body").style.backgroundColor = "Green"; 12 | } 13 | function Orange() { 14 | document.getElementById("body").style.backgroundColor = "Orange"; 15 | } 16 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L10/A1.c: -------------------------------------------------------------------------------- 1 | #include 2 | int product(int x,int y) 3 | { 4 | if(x 2 | #include 3 | int array_sum(int a[],int n) 4 | { 5 | int sum=0,i; 6 | for(i=0;i 2 | #include 3 | 4 | int main() 5 | { 6 | int a,b,sum,diff,quo,pro; 7 | printf("Enter any two numbers\n"); 8 | scanf("%d%d",&a,&b); 9 | sum=a+b; 10 | diff=a-b; 11 | pro=a*b; 12 | quo=a/b; 13 | printf("The sum of two numbers is %d",sum ); 14 | printf("\nThe difference of the two numbers is %d",diff); 15 | printf("\nThe product of the two numbers is %d",pro); 16 | printf("\nthe quotient of the two numbers is %d", quo); 17 | return 0; 18 | } 19 | -------------------------------------------------------------------------------- /Sem4/COMP LAB/L4/Q1.ASM: -------------------------------------------------------------------------------- 1 | DATA SEGMENT 2 | NUM1 DW 2345H 3 | NUM2 DW 2422H 4 | RES DW 2 DUP (?) 5 | DATA ENDS 6 | CODE SEGMENT 7 | ASSUME CS:CODE, DS:DATA 8 | 9 | START:MOV AX,DATA 10 | MOV DS,AX 11 | 12 | MOV AX,0 13 | MOV DX,0 14 | MOV CX,NUM2 15 | 16 | BACK: ADD AX,NUM1 17 | ADC DX,0 18 | LOOP BACK 19 | 20 | LEA SI,RES 21 | MOV [SI],AX 22 | MOV 2[SI],DX 23 | 24 | MOV AH,4CH 25 | INT 21H 26 | 27 | CODE ENDS 28 | END START 29 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB3/Q4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 |
13 |
14 | 15 |
16 |
17 |

18 | 19 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Members

5 | 6 | {% for x in mymembers %} 7 | 8 | 9 | 10 | 11 | 12 | 13 | {% endfor %} 14 |
{{ x.id }}{{ x.Itemname }}{{ x.Quantity }}delete
15 |

16 | Add member 17 |

18 | 19 | 20 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L8/2.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | int Largest(int num,int m) 4 | { 5 | if(num>m) 6 | m=num; 7 | return(m); 8 | } 9 | int main() 10 | { 11 | int n,num,i,m; 12 | printf("Enter the value of n\n"); 13 | scanf("%d",&n); 14 | printf("Enter the numbers\n"); 15 | scanf("%d",&num); 16 | m=num; 17 | for(i=1;i<=n-1;i++) 18 | { 19 | scanf("%d",&num); 20 | m=Largest(num,m); 21 | } 22 | printf("The largest number is %d",m); 23 | return 0; 24 | } 25 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L8/A3.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | int toggle(char a[],int n) 4 | { 5 | int i; 6 | for(i=0;i=65&&a[i]<=90) 9 | a[i]+=32; 10 | else if(a[i]>=97&&a[i]<=122) 11 | a[i]-=32; 12 | } 13 | return(a); 14 | } 15 | int main() 16 | { 17 | int i; 18 | char a[100]; 19 | printf("Enter the string\n"); 20 | gets(a); 21 | for(i=0;a[i]!='\0';i++); 22 | puts(toggle(a,i)); 23 | return 0; 24 | } 25 | -------------------------------------------------------------------------------- /Sem3/OOP/L7/2.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | class Counter{ 3 | static int count=0; 4 | Counter(){ 5 | count+=1; 6 | } 7 | int add(int i1, int i2){ 8 | return i1+i2; 9 | } 10 | } 11 | 12 | public class Second{ 13 | public static void main(String args[]){ 14 | Counter c1, c2, c3; 15 | c1=new Counter(); 16 | c2=new Counter(); 17 | c3=new Counter(); 18 | System.out.println(c3.add(3,4)); 19 | System.out.println("No. of objects created:"+Counter.count); 20 | } 21 | } -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB4/Q1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 | 18 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L4/A2.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int i,j; 7 | for(i=1;i<=3;i++) 8 | { 9 | for(j=1;j<=3;j++) 10 | { 11 | if(i==j) 12 | continue; 13 | printf("%d\t%d\n",i,j); 14 | } 15 | } 16 | printf("\n"); 17 | for(i=1;i<=3;i++) 18 | { 19 | for(j=1;j<=3;j++) 20 | { 21 | if(i==j) 22 | break; 23 | printf("%d\t%d\n",i,j); 24 | } 25 | } 26 | return 0; 27 | } 28 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/bin/Debug/Q1.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB3/Q4/Q4.js: -------------------------------------------------------------------------------- 1 | var i, j, k; 2 | var str; 3 | var out = ""; 4 | function fun() { 5 | var text = document.getElementById("input").value; 6 | for (i = 0; i < 3; i++) { 7 | str = text.charAt(i); 8 | for (j = i + 1; j < 4; j++) { 9 | str += text.charAt(j); 10 | for (k = j + 1; k < 5; k++) { 11 | str += text.charAt(k); 12 | out += str + ","; 13 | str = str.substring(0, 2); 14 | } 15 | str = str.substring(0, 1); 16 | } 17 | } 18 | document.getElementById("output").textContent = out; 19 | } 20 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L5/A3.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int l,sum=0,i; 7 | printf("Enter the number of digits\n"); 8 | scanf("%d",&l); 9 | int a[l]; 10 | printf("Enter the digits\n"); 11 | for(i=0;i9) 15 | { 16 | printf("Invalid Input"); 17 | exit(0); 18 | } 19 | } 20 | for(i=l-1;i>=0;i--) 21 | sum=sum*10+a[i]; 22 | printf("The number is %d",sum); 23 | return 0; 24 | } 25 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L8/1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | int fact(int n) 4 | { 5 | int i,f=1; 6 | for(i=1;i<=n;i++) 7 | f=f*i; 8 | return(f); 9 | } 10 | int main() 11 | { 12 | int n,r,nCr,i,r1=1,r2=1; 13 | printf("Enter the value of n and r\n"); 14 | scanf("%d%d",&n,&r); 15 | 16 | for(i=1;i<=n;i++) 17 | { 18 | if(i<=r) 19 | r1=r1*i; 20 | if(i<=(n-r)) 21 | r2=r2*i; 22 | } 23 | nCr= fact(n)/(r1*r2); 24 | printf("nCr is %d",nCr); 25 | return 0; 26 | } 27 | -------------------------------------------------------------------------------- /Sem4/OS LAB/L5/1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | pid_t getpid(void); 5 | pid_t getppid(void); 6 | int main() 7 | { 8 | pid_t pid; 9 | pid=fork(); 10 | if(pid<0) 11 | printf("Child process creation failed"); 12 | else if(pid>0) 13 | { 14 | printf("In child process\n"); 15 | printf("PID : %d \n",getpid()); 16 | printf("Parent's PID: %d \n",getppid()); 17 | } 18 | else 19 | { 20 | printf("In parent process \n"); 21 | printf("PID : %d \n",getpid()); 22 | printf("Parent's PID : %d \n",getppid()); 23 | } 24 | return 0; 25 | } 26 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/bin/Debug/L2Q1.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Sem5/ES LAB/L2/3.s: -------------------------------------------------------------------------------- 1 | AREA RESET, DATA, READONLY 2 | EXPORT __Vectors 3 | 4 | __Vectors 5 | DCD 0x100000FF ; stack pointer value when stack is empty 6 | DCD Reset_Handler ; reset vector 7 | 8 | ALIGN 9 | 10 | AREA mycode, CODE, READONLY 11 | EXPORT Reset_Handler 12 | ENTRY 13 | Reset_Handler 14 | LDR R0,=N1 15 | LDR R1,[R0] 16 | LDR R0,=N2 17 | LDR R2,[R0] 18 | SUBS R6,R1,R2 19 | LDR R0,=RES 20 | STR R6,[R0] 21 | STOP 22 | B STOP 23 | N1 DCD 0X741235FA 24 | N2 DCD 0XA145ADFC 25 | AREA mydata, DATA, READWRITE 26 | RES DCD 0 27 | END -------------------------------------------------------------------------------- /Sem3/DS/L2/1c.cpp: -------------------------------------------------------------------------------- 1 | // Program to compare two strings 2 | 3 | #include 4 | using namespace std; 5 | int main(){ 6 | char a[50],b[50]; 7 | int i; 8 | cout<<"Enter String 1:"; 9 | cin>>a; 10 | cout<<"Enter String 2:"; 11 | cin>>b; 12 | for (i=0;a[i]==b[i]&& a[i]!='\0';i++); 13 | if(a[i]b[i]){ 17 | cout<<"String 1 is greater than 2"; 18 | } 19 | else{ 20 | cout<<"String 1 is equal to String 2"; 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/obj/Debug/L2Q1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\190911126\L2Q1\L2Q1\bin\Debug\L2Q1.exe.config 2 | D:\190911126\L2Q1\L2Q1\bin\Debug\L2Q1.exe 3 | D:\190911126\L2Q1\L2Q1\bin\Debug\L2Q1.pdb 4 | D:\190911126\L2Q1\L2Q1\obj\Debug\L2Q1.csprojResolveAssemblyReference.cache 5 | D:\190911126\L2Q1\L2Q1\obj\Debug\L2Q1.Form1.resources 6 | D:\190911126\L2Q1\L2Q1\obj\Debug\L2Q1.Properties.Resources.resources 7 | D:\190911126\L2Q1\L2Q1\obj\Debug\L2Q1.csproj.GenerateResource.Cache 8 | D:\190911126\L2Q1\L2Q1\obj\Debug\L2Q1.exe 9 | D:\190911126\L2Q1\L2Q1\obj\Debug\L2Q1.pdb 10 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB1/4/profile.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Profile 8 | 9 | 10 | Home 11 |

Your Profile

12 |

Name: ASHISH JAIN

13 |

Email-Id: ashishjain4365@gmail.com

14 |

Mobile No: 4578124596

15 |

Address: A-12, Manipal, Karnataka-576104

16 | 17 | -------------------------------------------------------------------------------- /Sem3/OOP/L7/A4.java: -------------------------------------------------------------------------------- 1 | class Example4{ 2 | static int num; 3 | static String mystr; 4 | //First Static block 5 | static{ 6 | System.out.println("Static Block 1"); 7 | num = 68; 8 | mystr = "Block1"; 9 | } 10 | //Second static block 11 | static{ 12 | System.out.println("Static Block 2"); 13 | num = 98; 14 | mystr = "Block2"; 15 | } 16 | public static void main(String args[]){ 17 | System.out.println("Value of num="+num); 18 | System.out.println("Value of mystr="+mystr); 19 | } 20 | } -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L1/8.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int a,b,c,d,e1,e2,e3,e4; 7 | a=30; 8 | b=10; 9 | c=5; 10 | d=15; 11 | e1=(a+b)*c/d; 12 | e2=((a+b)*c)/d; 13 | e3=a+(b*c)/d; 14 | e4=(a+b)*(c/d); 15 | printf("The evaluation for the first expression is %d",e1); 16 | printf("\nThe evaluation for the second expression is %d",e2); 17 | printf("\nThe evaluation for the third expression is %d",e3); 18 | printf("\nThe evaluation for tyhe fourth expression is %d",e4); 19 | return 0; 20 | } 21 | -------------------------------------------------------------------------------- /Sem3/OOP/L10/12.java: -------------------------------------------------------------------------------- 1 | import java.math.*; 2 | class NegativeNumber extends Exception{ 3 | public String toString(){ 4 | return "Can't calculate for Negative Numbers"; 5 | } 6 | } 7 | 8 | public class Twelfth{ 9 | public static void main(String args[]){ 10 | try{ 11 | int n= Integer.parseInt(args[0]); 12 | if(n<0) 13 | throw new NegativeNumber(); 14 | System.out.println(Math.sqrt(n)); 15 | } 16 | catch(NegativeNumber e){ 17 | System.out.println(e); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /Sem3/OOP/L11/A5.java: -------------------------------------------------------------------------------- 1 | 2 | class Mythread7 extends Thread 3 | { 4 | public void run() 5 | { 6 | System.out.println("Start"); 7 | try 8 | { 9 | Thread.sleep(1000); 10 | } 11 | catch(InterruptedException e) 12 | { 13 | System.out.println("InterruptedException"); 14 | } 15 | System.out.println("End"); 16 | } 17 | } 18 | public class L11A5 19 | { public static void main(String[] args) 20 | { 21 | Mythread7 t1=new Mythread7(); 22 | t1.start(); 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /Sem4/COMP LAB/L2/A1.ASM: -------------------------------------------------------------------------------- 1 | ;Program to reverse an array 2 | Data Segment 3 | Array1 dW 1111H, 2222H, 3333H, 4444H, 5555H , 6666H, 7777H, 8888H, 9999H, 0AAAAH 4 | COUNT dB 05H 5 | Data ends 6 | 7 | Code Segment 8 | Assume CS:Code, DS: Data 9 | Start: 10 | MOV AX, Data 11 | MOV DS, AX 12 | 13 | LEA SI, Array1 14 | MOV CH, 00H 15 | MOV CL, COUNT 16 | 17 | MOV DI, SI 18 | ADD SI, 18 19 | 20 | NEXT: 21 | MOV AX, [DI] 22 | MOV BX, [SI] 23 | MOV [SI], AX 24 | MOV [DI], BX 25 | ADD DI,2 26 | SUB SI,2 27 | LOOP NEXT 28 | 29 | MOV AH,4CH 30 | INT 21H 31 | 32 | Code ends 33 | end start 34 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L3/A1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int n,d,c,f=1,s=0,i; 7 | printf("Enter any number\n"); 8 | scanf("%d",&n); 9 | c=n; 10 | while(c>0) 11 | { 12 | d=c%10; 13 | i=1; 14 | while(i<=d) 15 | { 16 | f=f*i; 17 | i++; 18 | } 19 | s=s+f; 20 | f=1; 21 | c=c/10; 22 | } 23 | if(s==n) 24 | printf("%d is a strong number",n); 25 | else 26 | printf("%d is not a strong number",n); 27 | return 0; 28 | } 29 | -------------------------------------------------------------------------------- /Sem5/ES LAB/L4/3.s: -------------------------------------------------------------------------------- 1 | AREA RESET, DATA, READONLY 2 | EXPORT __Vectors 3 | 4 | __Vectors 5 | DCD 0x100000FF ; stack pointer value when stack is empty 6 | DCD Reset_Handler ; reset vector 7 | 8 | ALIGN 9 | 10 | AREA mycode, CODE, READONLY 11 | EXPORT Reset_Handler 12 | ENTRY 13 | Reset_Handler 14 | LDR R0,=N1 15 | LDR R1,[R0] 16 | AND R2,R1,#0X0F 17 | AND R3,R1,#0XF0 18 | LSR R3,#4 19 | MOV R5,#10 20 | MLA R3,R3,R5,R2 21 | LDR R0,=RES 22 | STR R3,[R0] 23 | 24 | STOP 25 | B STOP 26 | N1 DCD 0X79 27 | AREA mydata, DATA, READWRITE 28 | RES DCD 0 29 | END -------------------------------------------------------------------------------- /Sem5/ES LAB/L6/2.c: -------------------------------------------------------------------------------- 1 | // 8 Bit binary Up Down Counter 2 | #include 3 | 4 | unsigned int i,j,c=0,f=0;; 5 | unsigned long LED = 0x00000000; 6 | 7 | int main(void) 8 | { 9 | LPC_PINCON->PINSEL0 &= 0xFF0000FF; 10 | LPC_GPIO0->FIODIR |= 0X00000FF0; 11 | 12 | while(1) 13 | { 14 | c++; 15 | LPC_GPIO0->FIOPIN=LED<<4; 16 | if(LED==255) 17 | f=1; 18 | else if(LED==0) 19 | f=0; 20 | if(f==0) 21 | { 22 | LED++; 23 | } 24 | else 25 | { 26 | if(LED==0) 27 | f=0; 28 | else 29 | LED--; 30 | } 31 | for(i=0;i<50000;i++); 32 | 33 | 34 | } 35 | } -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L7/3.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int i,n,f=0; 7 | char a[1000]; 8 | printf("Enter a string\n"); 9 | gets(a); 10 | for(i=0;a[i]!='\0';i++); 11 | n=i+1; 12 | for(i=0;i 2 | #include 3 | 4 | int main() 5 | { 6 | int u,l,i,f; 7 | printf("Enter the upper and lower limit\n"); 8 | scanf("%d%d",&u,&l); 9 | printf("The prime numbers are"); 10 | while(l<=u) 11 | { 12 | i=2; 13 | f=0; 14 | while(i 2 | #include 3 | 4 | int main() 5 | { 6 | int n,l,s,i; 7 | printf("Enter the length of array\n"); 8 | scanf("%d",&n); 9 | int a[n]; 10 | printf("Enter the numbers\n"); 11 | for(i=0;il) 18 | l=a[i]; 19 | else if (a[i] 2 | #include 3 | 4 | int main() 5 | { 6 | int i,n,l,p; 7 | printf("Enter the length of array\n"); 8 | scanf("%d",&l); 9 | int a[l+1]; 10 | printf("Enter the elements of array\n"); 11 | for(i=0;i=p;i--) 16 | a[i]=a[i-1]; 17 | a[p-1]=n; 18 | printf("The new array is\n"); 19 | for(i=0;i<=l;i++) 20 | printf("%d\n",a[i]); 21 | return 0; 22 | } 23 | -------------------------------------------------------------------------------- /Sem3/OOP/L11/A2.java: -------------------------------------------------------------------------------- 1 | 2 | class Mythread4 extends Thread 3 | { 4 | int j; 5 | Mythread4(int j) 6 | { 7 | this.j=j; 8 | } 9 | public void run() 10 | { 11 | for(int i=1;i<=10;i++) 12 | System.out.println(j+"*"+i+"= "+(j*i)); 13 | } 14 | } 15 | public class L11A2 16 | { 17 | public static void main(String[] args) 18 | { 19 | Mythread4 t1=new Mythread4(5); 20 | Mythread4 t2=new Mythread4(7); 21 | Mythread4 t3=new Mythread4(13); 22 | t1.start(); 23 | t2.start(); 24 | t3.start(); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB7/1b.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | import sqlite3 3 | conn = sqlite3.connect('test.db') 4 | print ("Opened database successfully") 5 | conn.execute("INSERT INTO STUDENT VALUES (1, 191, 'IT', 6, 'A', 8.92, 'abc1@gmail.com' )"); 6 | conn.execute("INSERT INTO STUDENT VALUES (2, 192, 'IT', 6, 'B', 9.12, 'abc2@gmail.com' )"); 7 | conn.execute("INSERT INTO STUDENT VALUES (3, 193, 'CSE', 4, 'A', 7.25, 'abc3@gmail.com' )"); 8 | conn.execute("INSERT INTO STUDENT VALUES (4, 194, 'EEE', 4, 'A', 8.08, 'abc4@gmail.com' )"); 9 | conn.commit() 10 | print ("Records created successfully") 11 | conn.close() 12 | -------------------------------------------------------------------------------- /Sem5/ES LAB/L8/1.c: -------------------------------------------------------------------------------- 1 | //C Program to display a number on the LCD Screen when a dice is rolled. 2 | 3 | #include 4 | #include "lcdmsh.h" 5 | #include 6 | 7 | unsigned char msg1[13]="Dice Result"; 8 | unsigned char key; 9 | 10 | int main() 11 | { 12 | unsigned char k; 13 | lcd_init(); 14 | temp1 = 0x80; 15 | lcd_com(); 16 | delay_lcd(800); 17 | lcd_puts(&msg1[0]); 18 | while(1) 19 | { 20 | 21 | if(!(LPC_GPIO2->FIOPIN & 1<<12)) 22 | { 23 | k = (rand()%6)+1; 24 | k=k+0x30; 25 | temp1 = 0xc0; 26 | lcd_com(); 27 | delay_lcd(800); 28 | lcd_puts(&k); 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L1/4.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int a,b,c,d,e,f; 7 | a=sizeof(int); 8 | b=sizeof(char); 9 | c=sizeof(float); 10 | d=sizeof(double); 11 | e=sizeof(long int); 12 | f=sizeof(long double); 13 | printf("Size of int data type is %d",a); 14 | printf("\nSize of char data type is %d",b); 15 | printf("\nSize of float data type is %d",c); 16 | printf("\nSize of double data type is %d",d); 17 | printf("\nSize of long int data type is %d",e); 18 | printf("\nSize of long double data type is %d",f); 19 | return 0; 20 | } 21 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q1/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace Q1 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace Q2 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q1/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace L2Q1 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sem5/DBS LAB/L2/Q2/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace L2Q2 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L2/2.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int n1,n2,n3; 7 | printf("Enter three numbers to be arranged\n"); 8 | scanf("%d%d%d",&n1,&n2,&n3); 9 | if(n1>n2) 10 | { 11 | if(n1>n3) 12 | printf("The largest among the three numbers is %d",n1); 13 | else 14 | printf("The largest among the three numbers is %d",n3); 15 | } 16 | else if(n2>n3) 17 | printf("The largest among the three numbers is %d",n2); 18 | else 19 | printf("The largest among the three numbers is %d",n3); 20 | return 0; 21 | } 22 | -------------------------------------------------------------------------------- /Sem3/OOP/L7/A6.java: -------------------------------------------------------------------------------- 1 | class Example6{ 2 | static int i; 3 | static String s; 4 | //Static method 5 | static void display() 6 | { 7 | //Its a Static method 8 | Example6 obj1=new 9 | Example6(); 10 | System.out.println("i:"+obj1.i); 11 | System.out.println("i:"+obj1.i); 12 | } 13 | void funcn(){ 14 | //Static method called in non-static method 15 | display(); 16 | } 17 | public static void main(String args[]) //Its a Static Method 18 | { 19 | //Static method called in another static method 20 | display(); 21 | } 22 | } -------------------------------------------------------------------------------- /Sem5/DBS LAB/L1/Q2/obj/Debug/Q2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\DBMS LAB\LAB 1\Q2\Q2\bin\Debug\Q2.exe.config 2 | F:\DBMS LAB\LAB 1\Q2\Q2\bin\Debug\Q2.exe 3 | F:\DBMS LAB\LAB 1\Q2\Q2\bin\Debug\Q2.pdb 4 | F:\DBMS LAB\LAB 1\Q2\Q2\obj\Debug\Q2.csproj.AssemblyReference.cache 5 | F:\DBMS LAB\LAB 1\Q2\Q2\obj\Debug\Q2.Form1.resources 6 | F:\DBMS LAB\LAB 1\Q2\Q2\obj\Debug\Q2.Properties.Resources.resources 7 | F:\DBMS LAB\LAB 1\Q2\Q2\obj\Debug\Q2.csproj.GenerateResource.cache 8 | F:\DBMS LAB\LAB 1\Q2\Q2\obj\Debug\Q2.csproj.CoreCompileInputs.cache 9 | F:\DBMS LAB\LAB 1\Q2\Q2\obj\Debug\Q2.exe 10 | F:\DBMS LAB\LAB 1\Q2\Q2\obj\Debug\Q2.pdb 11 | -------------------------------------------------------------------------------- /Sem3/OOP/L1/A1.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | public class Fourth{ 3 | public static void main(String args[]){ 4 | Scanner scan = new Scanner(System.in); 5 | System.out.println("Enter the number"); 6 | int n = scan.nextInt(); 7 | int temp = n, rem, rev=0; 8 | while(n!=0){ 9 | rem=n%10; 10 | rev=rev*10+rem; 11 | n/=10; 12 | } 13 | if (temp==rev){ 14 | System.out.println("Number is a palindrome"); 15 | } 16 | else{ 17 | System.out.println("Number is not a palindrome"); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /Sem5/ES LAB/L3/4.s: -------------------------------------------------------------------------------- 1 | AREA RESET, DATA, READONLY 2 | EXPORT __Vectors 3 | 4 | __Vectors 5 | DCD 0x100000FF ; stack pointer value when stack is empty 6 | DCD Reset_Handler ; reset vector 7 | 8 | ALIGN 9 | 10 | AREA mycode, CODE, READONLY 11 | EXPORT Reset_Handler 12 | ENTRY 13 | Reset_Handler 14 | LDR R0,=N1 15 | LDR R1,[R0] 16 | LDR R0,=N2 17 | LDR R2,[R0] 18 | LOOP 19 | CMP R1,R2 20 | BEQ QUIT 21 | SUBHI R1,R2 22 | SUBLO R2,R1 23 | B LOOP 24 | QUIT 25 | LDR R2,=GCD 26 | STR R1,[R2] 27 | STOP 28 | B STOP 29 | N1 DCD 0X18 30 | N2 DCD 0X7 31 | AREA mydata, DATA, READWRITE 32 | GCD DCD 0 33 | END -------------------------------------------------------------------------------- /Sem6/AT LAB/LAB2/Q3/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | #ffff0000 11 | #5D96B9 12 | #E5CF72 13 | #6D8F3E 14 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB2/2/d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Sem5/ES LAB/L4/4.s: -------------------------------------------------------------------------------- 1 | AREA RESET, DATA, READONLY 2 | EXPORT __Vectors 3 | 4 | __Vectors 5 | DCD 0x100000FF ; stack pointer value when stack is empty 6 | DCD Reset_Handler ; reset vector 7 | 8 | ALIGN 9 | 10 | AREA mycode, CODE, READONLY 11 | EXPORT Reset_Handler 12 | ENTRY 13 | Reset_Handler 14 | LDR R0,=NUM 15 | LDR R1,[R0] 16 | MOV R2,#10 17 | MOV R4,#8 18 | LOOP 19 | UDIV R3,R1,R2 20 | MLS R5,R2,R3,R1 21 | ADD R6,R5 22 | ROR R6,#4 23 | MOV R1,R3 24 | SUBS R4,#1 25 | BNE LOOP 26 | LDR R0,=RES 27 | STR R6,[R0] 28 | STOP 29 | B STOP 30 | NUM DCD 0XAC 31 | AREA mydata, DATA,READWRITE 32 | RES DCD 0 33 | END -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB1/4/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Login 8 | 9 | 10 |

Login

11 |
12 |
13 | 14 | 15 |
16 |
17 | 18 | 19 |
20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB4/Q2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | 13 |

14 | 15 |
16 |
17 | 18 | 19 |
20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /Sem5/ES LAB/L5/1.s: -------------------------------------------------------------------------------- 1 | AREA RESET,DATA,READONLY 2 | EXPORT __Vectors 3 | 4 | __Vectors 5 | 6 | DCD 0X10001000 7 | DCD Reset_Handler 8 | 9 | AREA mycode,CODE,READONLY 10 | ENTRY 11 | EXPORT Reset_Handler 12 | 13 | Reset_Handler 14 | LDR R0, =0X10000000 15 | MOV R3,#9 16 | 17 | LOOP 18 | ADD R5,R0,#4 19 | LDR R1,[R0] 20 | MOV R6,R3 21 | MOV R4,R0 22 | MOV R7,R1 23 | LOOP2 24 | LDR R2,[R5] 25 | CMP R1,R2 26 | BLO SKIP 27 | MOV R1,R2 28 | MOV R4,R5 29 | SKIP 30 | ADD R5,#4 31 | SUBS R6,#1 32 | BNE LOOP2 33 | STR R1,[R0] 34 | STR R7,[R4] 35 | ADD R0,#4 36 | SUBS R3,#1 37 | BNE LOOP 38 | 39 | NOP 40 | END 41 | 42 | 43 | -------------------------------------------------------------------------------- /Sem3/OOP/L2/4.java: -------------------------------------------------------------------------------- 1 | public class Fourth{ 2 | public static void main(String args[]){ 3 | int n=Integer.parseInt((args[0])); 4 | 5 | if (n==0){ 6 | int x=10; 7 | double y=x; 8 | System.out.println("When x=10 and y=x then y="+y); 9 | } 10 | else if (n==1){ 11 | double x=10.5; 12 | int y=x; 13 | System.out.println("When x=10.5 and y=x"+y); 14 | } 15 | else if (n==2){ 16 | double x=10.5; 17 | int y= (int)x; 18 | System.out.println("When x=10.5 and y=(int)x then y="+y);} 19 | 20 | } 21 | } -------------------------------------------------------------------------------- /Sem3/OOP/L9/2.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | import java.util.Arrays; 3 | public class Second{ 4 | public static void main(String args[]){ 5 | Scanner scan= new Scanner(System.in); 6 | String str= scan.nextLine(); 7 | int found=-1; 8 | for(int i=0;i 2 | #include 3 | int IsPalin(char a[]) 4 | { 5 | 6 | int i,l,f=0; 7 | for(l=0;a[l]!='\0';l++); 8 | 9 | for(i=0;i0){ 12 | dig=n%10; 13 | val+=dig*dig*dig; 14 | n=n/10; 15 | } 16 | if(val==temp){ 17 | System.out.println("Armstrong Number!"); 18 | } 19 | else 20 | System.out.println("Not an Armstrong Number!"); 21 | } 22 | } -------------------------------------------------------------------------------- /Sem4/COMP LAB/L2/2A.ASM: -------------------------------------------------------------------------------- 1 | DATA SEGMENT 2 | A DW 1A10H, 2B20H, 3C30H, 4D40H, 5E50H, 2 DUP(?) 3 | N DW 5 4 | N_OVERLAP DW 3 5 | DATA ENDS 6 | 7 | CODE SEGMENT 8 | ASSUME CS:CODE DS:DATA 9 | 10 | START:MOV DX,DATA 11 | MOV DS,DX 12 | MOV SI,N 13 | DEC SI; SI=N-1 14 | MOV DI,SI 15 | ADD DI,N; DI=2*N-1 16 | SUB DI,N_OVERLAP 17 | MOV CX,N 18 | 19 | BACK:MOV AX,[SI] 20 | MOV [DI],AX 21 | DEC SI 22 | DEC SI 23 | DEC DI 24 | DEC DI 25 | LOOP BACK 26 | 27 | MOV AH,4CH 28 | INT 21H 29 | 30 | CODE ENDS 31 | END START 32 | 33 | 34 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L8/A1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | int IsPrime(int num) 4 | { 5 | int i,f=0; 6 | for(i=2;i 2 | 3 | 4 | 5 | 6 | 7 | Cart 8 | 9 | 10 | Home 11 |

My Cart

12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 |
20 | checkout 21 | 22 | -------------------------------------------------------------------------------- /Sem1/PSUC LAB/L5/A1.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | int l,i,f=0,n; 7 | printf("Enter the length of array\n"); 8 | scanf("%d",&l); 9 | int a[l]; 10 | printf("Enter the elements of array\n"); 11 | for(i=0;i 2 | #include 3 | 4 | int main() 5 | { 6 | int i,l,p; 7 | printf("Enter the length of array\n"); 8 | scanf("%d",&l); 9 | int a[l]; 10 | printf("Enter the elements of array\n"); 11 | for(i=0;il) 16 | { 17 | printf("Invalid input"); 18 | exit(0); 19 | } 20 | for(i=p-1;i 2 | #include 3 | 4 | int main() 5 | { 6 | int l,n,i,p=0; 7 | printf("Enter the length of array\n"); 8 | scanf("%d",&l); 9 | int a[l]; 10 | printf("Enter the elements of array\n"); 11 | for(i=0;i 2 | #include 3 | 4 | int main() 5 | { 6 | int n,i,j; 7 | printf("Enter the length of array\n"); 8 | scanf("%d",&n); 9 | int a[n]; 10 | printf("Enter the elements of array\n"); 11 | for(i=0;i 2 | #include 3 | 4 | int main() 5 | { 6 | int i,j,n,trace=0,norm=0; 7 | printf("Enter the dimension of square matrix\n"); 8 | scanf("%d",&n); 9 | int a[n][n]; 10 | printf("Enter the elements\n"); 11 | for(i=0;i> fruits_number 10 | 11 | 12 | Question 3 13 | ******File name studentinformation.txt****** 14 | i) 15 | grep -E "ICI" studentinformation.txt |wc -l 16 | 17 | ii) 18 | touch ITstudents 19 | sed 's/IT/Information Technology/g' studentinformation.txt >> ITstudents 20 | 21 | Question 4 22 | ******File name studentMIT.txt****** 23 | find . -type f -name "*MIT*" 24 | sed 's/MIT/Manipal Institute of Technology/g' studentMIT.txt 25 | 26 | Question 5 27 | find . -type f -name "*[0-9]*" -exec wc {} \; 28 | -------------------------------------------------------------------------------- /Sem5/ES LAB/L1/1a.s: -------------------------------------------------------------------------------- 1 | AREA RESET, DATA, READONLY 2 | EXPORT __Vectors 3 | 4 | __Vectors 5 | DCD 0x100000FF ; stack pointer value when stack is empty 6 | DCD Reset_Handler ; reset vector 7 | 8 | ALIGN 9 | 10 | AREA mycode, CODE, READONLY 11 | EXPORT Reset_Handler 12 | ENTRY 13 | Reset_Handler 14 | LDR R0, =SRC 15 | LDR R1, =DST 16 | MOV R2, #10 17 | 18 | LOOP 19 | LDR R3,[R0],#04 20 | STR R3,[R1],#04 21 | SUBS R2,#1 22 | BNE LOOP 23 | STOP 24 | B STOP 25 | SRC DCD 0X11111111, 0X22222222, 0X33333333, 0X44444444, 0X55555555, 0X66666666, 0X77777777, 0X88888888, 0X99999999, 0XAAAAAAAA 26 | AREA mydata, DATA, READWRITE 27 | DST DCD 0,0,0,0,0,0,0,0,0,0 28 | END -------------------------------------------------------------------------------- /Sem6/ITT LAB/LAB9/P1/members/templates/add.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |

Add member

11 | 12 |
13 | {% csrf_token %} Item Name:
14 | 15 |

16 | Quantity:
17 | 18 |

19 | 20 |
21 | 22 | 23 | --------------------------------------------------------------------------------