Giter Site home page Giter Site logo
  • 👋 Hi, I’m @SarthakGautam2561.
  • 👀 I’m interested in Software Engineering.
  • 🌱 I’m currently learning Web Development.
  • 💞️ I’m looking to collaborate on a Web Development project.
  • 📫 You can reach me on email - [email protected]

Sarthak Gautam's Projects

10-practice-project-html-css icon 10-practice-project-html-css

HTML CSS 10 PRACTICE PROJECT Project that we are going to build in this complete practice course Project 1 - Tribute Website Project 2 - Job Application Project 3 - Parallax Wesbite Project 4 - Landing Page Project 5 - Restaurant Website Project 6 - Music Website Project 7 - Youtube Clone Project 8 - Javascript Documentation Project 9 - Blog Wesbit

contact icon contact

Web Development Company offers web development services all world Web Development Company would you like to create new website for own business contact us Web Development Company? We’re always happy to hear from prospects, existing clients, partners, competitors pretty much anybody. We’ll say you very immediately if we can help solve your challenging situation. If you have an interesting project, great, large,or small, idea or would like to simply pick our brain and talk business. Contact us at the below mentioned Email ([email protected]) or fill in the form below and we’ll be in Tip very soon. w3daddy.com is a website design and development Agency based in all country. Being in web development Company we’ve got already created several E-commerce website across the world including USA, Australia, South Africa, geographical area, France, Spain, Germany, Italy, U.A.E., Malaysia, UK, Asian country and European countries’ customers. By having the correct set of tools for website development, we will work on any level of website base application development comes as per the customer’s needs. At on-line website application development our primary goal is our client satisfy with our development project. we tend to check that with every and each project, we offer higher come back of Investment to our customers. we’ve got a team of outstanding website base application development / Programmers, web site designers, Print designers, Web/Database Programmers, web site selling specialists, Photographers, Prepares specialists Web Development Company and Digital Artists. If you are not positive a way to build your own web site, w3daddy Web Development Company is that the higher place to begin your web development project develop with very low cost. we will conjointly work on all internet tools that’s comes as per the customer’s needs. At w3daddy company each step of the method goes to making sure that your web site appearance nice, functions seamlessly and grows your business creating our client made. Over the years we’ve got learned to supply highest quality websites which might offer nice results to our customers. Contact USA for Liquid web site Layout, Responsive Website Development style, Fluid web site style, Browser Compatible internet coming up with, Mobile APP, Custom internet Application development, internet coming up with and Mobile website base Application Development. Web Development Company India offers Web Development services in USA, Canada, etc Please feel free to contact us for all your web development requirement.

cse425_04_1511944642 icon cse425_04_1511944642

Course: CSE425 - Concepts of Programming Language Instructor’s Name: Adjunct Associate Professor Kamruddin Nur Section: 04 Assignment: Implement searching on the given data (NCHS_-_Leading_Causes_of_Death__United_States) in Comma Separated File Format Language Used: Shell script(mandatory), C plus plus(optional), Python(optional) Submission Deadline: 15th December, 2019 Student’s Name: Md. Mahmudul Haque Id No. : 1511944642 The code of the assignment that I have implemented are on three languages and before hopping into the contrast and comparison of those languages I am here giving a brief description on my procedure of coding. I used string searching Users are offered to search on their preference of column value While a match is found the program will return the entire row of that file I used for and while loop to search for the specific string that user might look for Exceptions are handled in C plus plus and Python whereas I used if else statement to handle exception in Shell Script Aliasing are used Type casting have been used in Python Concatenation of strings are used in all the languages. Now let’s see what are the comparison and contrast between the codes of those languages! Shell script: Key Points of my Code Description #no libraries needed to import! And no curly braces In shell script no libraries are needed to import explicitly. So it is indicating that this programming language is more easy to write and read for the non-programmers also. And for the curly braces, to implement the code, prior knowledge is required. while: #no condition More liberal while handling loop. Needs user interruption or programmer’s sentinels to stop infinity cycle. If else fi, case….esac, do… done To indicate the end of if-else block I have to write ‘fi’ term after each if-else block and similar happened to case … esac term under the case block and do … done block. Not readable and to write, one has to have prior knowledge. No need to declare the type of variables In Shell Script the type of variables are not needed to be declared by the programmer explicitly. So it is loosely typed and checking runtime. And least reliable. ‘ ;; ’ after every case block To mark the end of each case Shell script needs to be said the ‘ ;; ’ . * state in case block This is indicating the general block of case if the options does not match then this block will be operated. Not so readable. foo = foo + ‘,’ Or foo = ‘,’ + foo + ‘,’ Easy to concatenate, so easy to write. Also orthogonal. No exception handling I used if else fi instead. C plus plus(C++): Key Points of my Code Description #include <bits/stdc++.h> Libraries are needed to be declared explicitly. Different than Shell Script and Python. using namespace std It is used to indicate the compiler that the standard naming convention of c++ is being used. So it is more strict in terms of language building block. Different than Shell Script and Python. int main() { …. } To execute the whole code the code must be in between the curly braces of main function block. So this is supporting abstraction. Also the statements are compound and understandable if C is known. Different than Shell Script and Python. Type checking; example - string year; Usually check the type during compile time and strongly typed. Different than Shell Script. But python is loosely typed. while(1){ .. } To operate the while loop, the coder must at least need to assign it to a true value. Expressive and writeable though always need to have some knowledge on c++ before writing code using it. Also compound. Different than Shell Script and Python. ifstream Working as a input stream to read the file. Type and work specified. Similar to Python and Shell Script try{ …if(inFile) else throw “....” } catch(const char* e){ … } To handle exception, c++ has some built in library to handle it and user either can define or not to about the variation of exception he/she wants to handle. The try block is used as experiment part whereas the catch block will catch if there is no such file according to my code. Compound with form and meaning. Almost similar to Python but Shell script does not have this facility. bool flag This is indicating that c++ is capable of using concised parameters in terms of programming paradigm. But not orthogonal as I have to handle boolean value all the time. Similar to Python in some case but Shell Script does not have it. cout or cin Capable of printing and taking input through object as c++ allows object oriented programming whereas Python also support this. Python: Key Points of my Code Description flag = True Boolean data type exists and so it is concise which is similar to C++ but Shell Script does not have this print() Capable of procedural, functional, and object oriented job. C++ is almost similar but Shell script is totally different here. try: ….. except Exception: ……. To handle exception, python has some built in library to handle it and user either can define or not to about the variation of exception he/she wants to handle. The try block is used as experiment part whereas the catch block will catch if there is no such file according to my code. Compound with form and meaning like C++. file = open("NCHS_-_Leading_Causes_of_Death__United_States.csv") Python allows aliasing whereas C++ uses referencing in alias. with file: ... Helpful while handling files. Do not need to reopen and close the file every time. C++ also have similar to this but in stream format. But Shell script is more better in handling files option = input() option = int(option) Allows type checking like C++ but loosely typed like Shell script if... elif... Have conditional statements which are also in C++ and Shell Script Conclusion: So far according to my knowledge, I found out that while interacting with file Shell script is much more easier but also Python gives a good file handling libraries now like: Pandas and C++ is more prone to let user follow the programming paradigm while handling files.

dancewebsite icon dancewebsite

This is the dance website from the web development course by Code With Harry

exploration_light icon exploration_light

X Rebirth modification: Doubled range and intensity values for the Shunk's front spotlight

first-pr icon first-pr

Make Your first PR as part of hactoberfest 2k21. You can add here your first project you made while learning any new language ..P.S it can be hello world as well xd:)

first-pr-hacktoberfest icon first-pr-hacktoberfest

Add any of your code or file to Open source code (GitHub) !! Lets start you Kickup on Open Source Code from this Repository

googlecourse icon googlecourse

This repository is for the course I am pursuing by google.

hacktoberfest-2021 icon hacktoberfest-2021

This Repo is created for beginners to promote open source contribution (hacktoberfest). The steps are provided in the readme file. Give it a star⭐ if you liked it :)

hacktoberfest2022-1 icon hacktoberfest2022-1

Contribute on this repository with valid pull request to Hacktoberfest 2022 and earn amazing swags!

hello_world icon hello_world

After hearing a lot about GitHub. I was just curious to use and try this out. Looks like fun. So lets get started with a very simple C Program to print the word "Hello World" I don't know if i am right but just let me try out. Best of luck to me with GitHub.

loadbal icon loadbal

MIPT diploma project: implementation of dynamic load balancing.

poke-dex icon poke-dex

This is a small webpage that allows user to add their favourite Pokémons! This project aims to help people in creating their first pull requests and participating in Hacktoberfest 2020.

pullathon-21 icon pullathon-21

CONTEST 5🥳 - Pullathon-21 🥳. A beginner-friendly repository for first-timers

textutils icon textutils

A tool for analyzing text data in Django backend

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.