Posts

My journey to be an engineer

             My journey to be an engineer       Deterrents had never been hindering my push to prevail throughout everyday life. As an engineer to be, it is essential to me to be ready for obstacles in reality. The world these days needs an individual who could contend and has incredible capacities to remain on a similar level as others. Different abilities and basic assessment of an issue are fundamental for a specialist to bounce into this difficult vocation. As per me, an essential arranging and full planning to accomplish the point of being a specialist engineer.  To achieve my objective, it is indispensable to reflect myself and make an activity in expanding my adequacy and arriving at my latent capacity. 4000 miles from old neighborhood are a penance that I had made for a degree as well as more than that.  Moreover, I have an issue to track down the central issues and significant realities during the talks, and I'm burning through my time recording the focuses which excessive

AFFILIATE MARKETING

Image
Earn today!Become an affiliate marketer! What is affiliate? Affiliate marketing is the process of earning a commission by promoting other people's (or company's) products. You find a product you like, promote it to others and earn a piece of the profit for each sale that you make. How to become an affiliate marketer? 1.Find and join an affiliate program. 2.Choose which offers to promote. 3.Obtain a unique affiliate link for each offer. 4.Share those links on your blog, social media platforms, or website. 5.Collect a commission anytime someone uses your links to make a purchase. Best affiliate programs: 1.INSTAMOJO: Instamojo is India’s first 100% Free payment gateway. Yes, they do charge transaction fees also, but the merchant has the option to take transaction charges from the buyer. As you have seen in IRCTC portal do. If your blog or website niche is

Simple dice game-Python

Image
In this article we will create a classic rolling dice simulator with the help of basic Python knowledge. Here we will be using the random module since we randomize the dice simulator for random outputs. program/code: import random def inp(s): i=input(s) for x in i: if((ord(x)>=48) and (ord(x)<=57)): pass else: print("\nINVALID INPUT \nInput must be a integer ") return(inp(s)) return i def dies(x): if(x==1): print(" ___") print("| |") print("| x |") print("| |") print("|___|") elif(x==2): print(" ___") print("| |") print("| x x |") print("| |")

Introduction to C programming,Decision control and looping statements ,Arrays,Strings in C

Image
Introduction to C Programming click here Introduction to C programming &nbsp C is a general-purpose high level language that was originally developed by Dennis Ritchie for the Unix operating system. It was first implemented on the Digital Eqquipment Corporation PDP-11 computer in 1972.The Unix operating system and virtually all Unix applications are written in the C language........ click here Decision control and looping statements in C &nbsp C – Decision control statements in C programming language. ... Using decision control statements we can control the flow of program in such a way so that it executes certain statements based on the outcome of a condition (i.e. true or false). In C Programming language we have following decision control statements. Facebook marketing a-z video training click here Arrays in C &nbsp An array is a collection of data items, all of the same type, accessed using a common name. A one-dimensional array is like a list;

Digital marketing

Image
Digital marketing Definition Digital marketing is advertising delivered through digital channels. Channels such as social media, mobile applications, email, web applications, search engines, websites, or any new digital channel. Futures The offline and online world are colliding. Traditional devices such as fridges, ovens and even billboards will all be modernized to leverage digital media. Types of digital marketing 1. Content Marketing Content marketing is a type of digital marketing that focuses on creating and distributing content for a target audience. The content aims at being valuable, relevant, and (ideally) consistent. Its ultimate goal is to drive a profitable customer action. 2. Search Engine Optimization (SEO) SEO, or Search Engine Optimization, is the process of getting quality traffic from free, or organic, search results on the search engines (like Google and Bing). It’s important that the traffic you drive to your website is relevant to your industry

Inheritance,Operator overloading,Error and exception handling in python

Image
click here inheritance in python programming. It refers to defining a new class with little or no modification to an existing class. The new class is called derived (or child) class and the one from which it inherits is called the base (or parent) class.... click here operator overloading in python Operator Overloading in Python. Operator Overloading means giving extended meaning beyond their predefined operational meaning. For example operator + is used to add two integers as well as join two strings and merge two lists. It is achievable because '+' operator is overloaded by int class and str class..... click here error and exception handling in python The try and except block in Python is used to catch and handle exceptions. ... As you saw earlier, when syntactically correct code runs into an error, Python will throw an exception error. This exception error will crash the program if it is unhandled. The except clause determines how your program responds t

Data structures,Classes and objects in python

Image
click here data structures in python dictionaries, strings, sets and frozensets. Lists, strings and tuples are ordered sequences of objects. Unlike strings that contain only characters, list and tuples can contain any type of objects.... click here classes and objects in python What are classes and objects in Python? Python is an object oriented programming language. Unlike procedure oriented programming, where the main emphasis is on functions, object oriented programming stress on objects. Object is simply a collection of data (variables) and methods (functions) that act on those data.......

Decision control statements,Functions and modules,Algorithms in python

Image
computer science and engineering click here decision control statements in python if statement is the most simpledecision making statement. It is used to decide whether a certain statementor block of statements will be executed or not i.e if a certaincondition is true then a block ofstatement is executed otherwise not. Here, condition after evaluation will be either true or false. click here functions and modules Modules. A Python module is a file that contains one or morefunction definitions.Modules are a handy way of keeping related functionstogether, so that you can easily reuse them between projects, or share them with other programmers click here algorithms pdf Algorithms pdf.Complex algorithms can use a range of sequencing, iteration and selection blocks. To design an algorithm you can draw a flowchart or write pseudo-code. Your algorithm (flowchart or pseudo-code) can then be converted by a programmer using the programming language of their choice (e

Introduction to computers and problem solving strategies,Basics of python programming

Image
hayakrivar computer science and engineering click here introduction to computers and problem solving strategies A program is a sequence of instructions that can be executed by a computer to solve some problem or perform a specified task. … Instead, computers have their own languages that they understand. Each of these languages is known as a programming language click here basics of python programming Basic Data Types – Learn the five types: strings, tuples, lists, dictionaries, and integers. Operators – Python operators – basically, ways to do things.