GithubHelp home page GithubHelp logo
  • πŸ‘‹ Hi, My name is Devanand kumar rana
  • πŸ‘€ I’m interested in web designing and Software testing
  • 🌱 I’m currently learning Bachelor of Computer applicstion.
  • πŸ’žοΈ I’m looking to collaborate on ...Web designer's
  • πŸ“« How to reach me ... in Instagram follow : devanand4166

--πŸ’–πŸ’– my Favourite Language is C++ --πŸ’–πŸ’–

i Am also Inersested in Web designing..... basic language know about WEB DEVLOPMENT. HTML..🀞🀞🀞🀞🀞 CSS..πŸ€·β€β™‚οΈ JAVASCRIPT..πŸ˜‰

c--logo-icon-1 html-removebg-preview hjh-removebg-preview

Devanand Rana's Projects

1d_array.c icon 1d_array.c

One dimensional array is an array that has only one subscript specification that is needed to specify a particular element of an array.

all_turtle_program icon all_turtle_program

turtle is a pre-installed Python library that enables users to create pictures and shapes by providing them with a virtual canvas. The onscreen pen that you use for drawing is called the turtle and this is what gives the library its name.

bar_chart.python icon bar_chart.python

A bar chart or bar graph is a chart or graph that presents categorical data with rectangular bars with heights or lengths proportional to the values that they represent. The bars can be plotted vertically or horizontally.

bar_graph icon bar_graph

A bar graph is a chart that plots data using rectangular bars or columns (called bins) that represent the total amount of observations in the data for that category.

binary_search icon binary_search

CServer Side ProgrammingProgramming. Binary Search is a search algorithm that is used to find the position of an element (target value ) in a sorted array. The array should be sorted prior to applying a binary search. Binary search is also known by these names, logarithmic search, binary chop, half interval search.

bubble_sort icon bubble_sort

Bubble sort in C is a straightforward sorting algorithm that checks and swaps elements if they are not in the intended order. It compares two adjacent elements to find which one is greater or lesser and switches them based on the given condition until the final place of the element is found.

class_object.python icon class_object.python

A Python class is like an outline for creating a new object. An object is anything that you wish to manipulate or change while working through the code. Every time a class object is instantiated, which is when we declare a variable, a new object is initiated from scratch.

convert_whatsapp-_chat_excel_and-_txt_using_python icon convert_whatsapp-_chat_excel_and-_txt_using_python

In this article, we will discuss how to export a specific user’s chats to an Excel sheet. To export the chats, we will use several Python modules and libraries. In the Excel file, we will create four columns: Date, Time, Name, and Message. We’ll create these columns through Pandas, export all the chat details to their respective columns, and use Pushbullets to retrieve the data using the API key.

dda_line-drawing-algorithm icon dda_line-drawing-algorithm

DDA stands for Digital Differential Analyzer. It is an incremental method of scan conversion of line. In this method calculation is performed at each step but by using results of previous steps. Suppose at step i, the pixels is (xi,yi) The line of equation for step i yi=mxi+b......................equation 1 Next value will be yi+1=mxi+1+b.................equation 2 m =DDA Algorithm yi+1-yi=βˆ†y.......................equation 3 yi+1-xi=βˆ†x......................equation 4 yi+1=yi+βˆ†y βˆ†y=mβˆ†x yi+1=yi+mβˆ†x βˆ†x=βˆ†y/m xi+1=xi+βˆ†x xi+1=xi+βˆ†y/m Case1: When |M|<1 then (assume that x12) x= x1,y=y1 set βˆ†x=1 yi+1=y1+m, x=x+1 Until x = x2 Case2: When |M|<1 then (assume that y12) x= x1,y=y1 set βˆ†y=1 xi+1=DDA Algorithm, y=y+1 Until y β†’ y2

delete_araay_value icon delete_araay_value

In C programming, an array is derived data that stores primitive data type values like int, char, float, etc. To delete a specific element from an array, a user must define the position from which the array's element should be removed. The deletion of the element does not affect the size of an array.

digital_clock.c icon digital_clock.c

This program will generate a digital clock using c program. The logic behind to implement this program, Initialize hour, minute, seconds with 0. Run an infinite loop. Increase second and check if it is equal to 60 then increase minute and reset second to 0.

email_otp_verification icon email_otp_verification

Validating an Email Address in Python. Validating an email means that whether the input that the user made corresponding to the email address field is as per the format in which we want.

error_exception_handling icon error_exception_handling

In Python, exceptions can be handled using a try statement. The critical operation which can raise an exception is placed inside the try clause. The code that handles the exceptions is written in the except clause. We can thus choose what operations to perform once we have caught the exception.

export-whatsapp-chat-history-to-excel-using-python icon export-whatsapp-chat-history-to-excel-using-python

In this article, we will discuss how to export a specific user’s chats to an Excel sheet. To export the chats, we will use several Python modules and libraries. In the Excel file, we will create four columns: Date, Time, Name, and Message. We’ll create these columns through Pandas, export all the chat details to their respective columns, and use Pushbullets to retrieve the data using the API key.

file_handling icon file_handling

The key function for working with files in Python is the open() function. The open() function takes two parameters; filename, and mode. There are four different methods (modes) for opening a file: "r" - Read - Default value. Opens a file for reading, error if the file does not exist.

find_addesh_and_value_in_array icon find_addesh_and_value_in_array

An address is a non-negative integer. Each time a program is run the variables may or may not be located in same memory locations. Each time you run the program above may or may not result in the same output. Q .How do you find the value of an address? Two ways: Cast the address literal as a pointer: char value = *(char*)0xff73000; Cast the literal as a pointer to the type. and. ... Assign the address to a pointer: char* pointer = (char*)0xff73000; Then access the value: char value = *pointer; char first_byte = pointer[0]; char second_byte = pointer[1];

find_position_and_value_in_an_array icon find_position_and_value_in_an_array

An address is a non-negative integer. Each time a program is run the variables may or may not be located in same memory locations. Each time you run the program above may or may not result in the same output.

for_loop.python icon for_loop.python

for loops are used when you have a block of code which you want to repeat a fixed number of times. The for-loop is always used in combination with an iterable object, like a list or a range. The Python for statement iterates over the members of a sequence in order, executing the block each time.

funstion.python icon funstion.python

In computer programming, a function is a named section of a code that performs a specific task. This typically involves taking some input, manipulating the input and returning an output.

grocery_shop icon grocery_shop

Simple and Easiest Method use for making this Software.

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.