11
Nov
C++ Program on Repetitions, Arrays, Functions
#include <iostream> using namespace std; int main() { int x[9]; &nbs.....
11
Nov
Python Program on TicTacToe Game
import os class Board: #Constructor should intiliaze the board to a blank state .....
11
Nov
Java Program for Public Class Person Task
public class Person { // Data fields .....
04
Nov
Python Program on Hash Table
from linearProbingHash import LinearProbingHash from quadraticProbingHash import QuadraticProbingHa.....
04
Nov
C++ Program on maxheap20
#include <iostream> #include <iomanip> using namespace std; #include "maxheap2.....
20
Oct
C++ Program on Sum and the Average of The Numbers
#include <iostream> #include <stdio.h> using namespace std; int sumOfArray(int arr[.....
20
Oct
R Program on Model Building and Interpretation
```{r setup, include=FALSE} df<-read.csv("C:\\Users\\dell\\Downloads\\Previous Task\\Corona.....
20
Oct
C++ Program on BST Command File
#include<iostream> #include<vector> #include<fstream> #include<sstream> .....
20
Oct
Python Program on Member Class
#!/usr/bin/python3 # for windows the Shebang line is <#! python3> # Full name: # Studen.....