Posts

Mastering the Art of Writing Efficient Code: Lessons from a Coding Competition

  Introduction The inter-university coding competition started in a huge lab. Many students were confident about winning, and John was also excited about his chances. An alarm indicated that the competition had begun, with a duration of one hour. All supervisors provided initial instructions to start the test, which included three questions that all students had to solve within the hour. The question paper was displayed on all the students' computers. While everyone read the questions and began trying to solve the problems, John took a different approach. He grabbed a rough sheet and jotted down some sequences and algorithms to tackle the problems. He spent the first few minutes reshaping the problems, paying attention to details, and creating the right algorithms. Once he finished his draft, he started coding. John solved all three questions in 50 minutes and completed the task. He was declared the winner, securing the first position. Efficient and well-written code is in ...

Tips to become a productive programmer.

Becoming a good programmer involves a combination of education, practice, and continuous learning. Here are some tips to help you on your journey to becoming a proficient programmer: 1. Learn the Basics:     Start with a solid foundation in the basics of programming languages, data structures, and algorithms. Understand concepts like variables, loops, conditionals, functions, and object-oriented programming. 2. Choose a Language:    Select a programming language to focus on initially. Popular choices for beginners include Python, JavaScript, or Java. The language you choose will depend on your interests and the type of applications you want to develop. 3. Practice Regularly:     Programming is a skill that improves with practice. Code regularly and work on small projects to apply what you've learned. Use online coding platforms, participate in coding challenges, and contribute to open-source projects. 4. Build Projects:     Apply your knowledge by...

List of Projects

 Ardunio Projects Arduino Home Automation Self control Rebotic Car Links: https://www.youtube.com/watch?v=hrS5MoOoH9s https://www.youtube.com/watch?v=zhwKN8mLOzE Tools: Arduino uno, Ardunio mini , hardware components, arduino programming  Android Mobile Applications Food ordering application Deaf and dump aid application Smart math mobile application Confectionary items management system Restaurant orders booking application Matrimonial application Android car manager Budget analyzer links https://www.youtube.com/watch?v=RY-1HmFx9DI https://www.youtube.com/watch?v=pyiWN7gKcoM&t=6s https://www.youtube.com/watch?v=VGY-HzcWZJw&t=12s https://www.youtube.com/watch?v=3QLg0c3iHpw&t=395s https://www.youtube.com/watch?v=1_VMXQNMAHo https://www.youtube.com/watch?v=OyAHm2YfIdg&t=337s Tools Android studio, Java SQLite,DB Browser, Firebase, JSON  Desktop Applications Face Recognition based attendance system Survey Builder, Real Time Financial Data ware house Hospital M...

Arduino Home Automation

Image

Self Controlled Robotic Car

Image

elibrary Web application Demo using jsp/servlet and my sql

Image

How to insert view update and delete data using PHP and MySQL step by step with Graphics

 How to insert view update and delete data using PHP and MySQL step by step with Graphics Step 1 : create table in mySQl using query CREATE TABLE `users` (   `userid` text NOT NULL,   `name` text DEFAULT NULL,   `password` text DEFAULT NULL,   `email` text DEFAULT NULL,   `mobile` text DEFAULT NULL,   `address` text DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; step 2: create a configuration file to connect mysql database with the php  <?php session_start(); $con = mysqli_connect('localhost','root'); mysqli_select_db($con,'fyp'); if(mysqli_connect_error()) {     die("DB Connection Failed"); } ?> Step 3: Create from for insert operation name as AddUsers.php and paste the code  <?php include 'config.php';?> <?php  if(isset($_POST['done'])) { if(!empty($_POST))  {     if(!empty($_POST['userid'])&& !empty($_POST['password'])) {           $userid = $_POST['user...

Product Management System using Array in C++

Image
 Product Management System using C++ Step 1:   Create a product class #include<iostream> #include<string> using namespace std; class Product { int id; string name; int price; public: Product() { id=0; name=""; price=0; } Product(int i,string n,int p) { id=i; name=n; price=p; } void setID(int i) { id=i; } void setName(string n) { name=n; } void setPrice(int p) { price=p; } int getID() { return id; } string getName() { return name; } int getPrice() { return price; } void display() { cout<<"\n Product ID: "<<id; cout<<"\n Product Name: "<<name; cout<<"\n Product Price: "<<price; } bool addProduct(int i,string n,int p) { id=i; name=n; price=p; return true; } }; Step 2: use this product class in main function #include<iostream> #include<string> #include...

Learn PHP in just 24 minutes

Image

How to make heart with name in C++

Image
  How to make heart with your name using C++  Solution:   #include <stdio.h> #include <string.h>  #include <iostream>  using namespace std; int main() {          char name[50];     int len; int i, j, n;     cout<<"Enter your name:";          gets(name);       cout<<"Enter value of n : ";          cin>>n;     len = strlen(name);          for(i=n/2; i<=n; i+=2)     {         for(j=1; j<n-i; j+=2)         {             cout<<" ";         }           for(j=1; j<=i; j++)         {             cout<<"*";         }           for(j=1; j<=n-i; j++) ...

How to insert image into table using C# in ASP.net |Part 1

Image

Flip eBook Generator Demo 2021 in Hindi|Urdu

Image

Link list using C++ improved version 2021

Image
 Link list using C++ improved version 2021 source code: #include<iostream> using namespace std; class Node  {  private:   int object;   Node * nextNode;//address of next node  public:   int get() { return object; };   void set(int object) { this->object = object; };   Node * getNext() { return nextNode; };   void setNext(Node * nextNode) { this->nextNode = nextNode; };  }; ////////////////////list class////////////////// /* The List class */  class List  {  public://methods or function  //declare the functions  List(); //constructor  void add (int addObject); //add new object  int get(); //get node  bool next();   friend void traverse(List list);   friend List addNodes(); //add new node  ////  // position currentNode and lastCurrentNode at first element  void start()  { ////headNode currentNode lastCurrentNode ...

JAVA Complete Reference

Image
 JAVA Complete Reference in Hindi or Urdu Java Reference file Learn Java Part One Learn Java Part 2

how to insert update delete data in gridview in asp.net using c#

Image

Learn CS401 Assembly Language Step By Step Very easily |Part 1 in urdu/Hindi

Image

Visual Studio How To dynamically Add or Remove TextBoxes using JQuery

Image
Visual Studio How To dynamically Add or Remove TextBoxes using JQuery  Step one: add aspx page <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title>Dynaically Add or Remove Text Boxes</title> </head>  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />     <script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.js"></script>     <script type="text/javascript" src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript">     $(function () {         var values = eval('<%=Values%>');     if (values != null) {   ...

Online Food Ordering App Final Presentation

Image

Online Food Ordering App Final Presentation

Image

SEAM Final Presentation Demo 2

Image