Skip to main content

Posts

Showing posts from May, 2022

Make Calculator Using Html, CSS and JavaScript - Technology369kk

Hello everyone! In this post, I’ll guide you through building a functional calculator using HTML, CSS, and JavaScript. This will also help complete Assignment 5 provided by Ranjeet Sir. Follow along, and by the end, you’ll have a fully working calculator that you can customize and make your own. 2nd page of Assignment  DOWNLOAD CODE:  HTML FILE :- DOWNLOAD CSS  FILE    : - DOWNLOAD Download this file then complete your calculator. 2nd Page of Assignment  Copy And Paste create Assignments 5A. Code:  <! DOCTYPE html > < html lang = "en" > < head >         < title > Create Addition Program </ title > </ head > < body >     < h1 align = "center" > Assignment 5 </ h1 > < br >     < h2 align = "left" > 5A. </ h2 >     < p > Number: < input id = "number1A" ></ p >     < p > Number: < input id =...

Top 20 Basic Program Questions and Answer's | OutPut- Technology369kk

Most Important 20+ Program use this same logic find all popular programming language such as C, C++, Python, Java, JavaScript and one so on.  So In this post discuss most popular and famous Python , C, C++, Java and JavaScript  language used find program all program one by one.  These program can be asked from basic  use in array, string, pointer, list, loop, condition statement etc. chapter are similarly find all questions.  Let's see the list of all basic program: -  Write a program add two number.  Hints How to Find :- c = a+b Where a, b and c is variable.                 print(c) Program  1. Python  >>> a=10 >>> b=20 >>> c=a+b >>> print(c) 30 >>> Done In Python   2. C and C++  // #include<iostream> // in C++ #include<stdio.h> // in C #include<conio.h> int main(){ int ...