This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
// SPORTS COACHING INSTITUTE MANAGEMENT SYSTEM | |
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
// Headers inclusion | |
#include <iostream> | |
#include <fstream> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <fstream> | |
#include <string> | |
#include <sstream> | |
#include <stdlib.h> | |
using namespace std; | |
class Institute | |
{ | |
public: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useEffect, useState } from 'react' | |
import { Image, SafeAreaView, StyleSheet, Text, TouchableOpacity, View , StatusBar} from 'react-native' | |
import MapView, { Polyline } from 'react-native-maps'; | |
import StartTrackingFooter from './StartTrackingFooter'; | |
import TrackFooterCard from './TrackFooterCard'; | |
import * as Location from "expo-location"; | |
// import useLocation from '../hooks/useGeoLocation'; | |
import {haversine} from 'haversine'; | |
import useTimer from '../hooks/useTimer'; | |
import Header from './Header'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int square(int i) { | |
return i * i; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Question 1: Consider the scenario where 6 professors are training a bunch of 63 students on 6 programming languages(Java, C, Python, CPP, C_Hash, R). | |
// Deploy the scenario in the interactive mode and perform several tasks using the constraints and conditions below, | |
// Student has following properties: | |
// Attributes -> name, age, usn, cgpa(avg. of 6 programming language scores), favProfName, favPrgLang | |
// Methods -> getters() and setters() for reading and retrieving data, readStudent() for deploying setters, showStudent() for displaying student details by deploying getters. | |
// Professor has following properties: | |
// Attributes -> name, age, profId, salary, favStudentName, progLangHandling, rating |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="search"> | |
<input type="search" class="search-box" /> | |
<span class="search-button"> | |
<span class="search-icon"></span> | |
</span> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
class student{ | |
public: int reg; | |
string name; | |
void display(); | |
void read(); | |
private:void display1() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company; | |
class login | |
{ | |
String us1 = "swaaz" ; | |
String pass1= "swaaz"; | |
} | |
public class input() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<stdlib.h> | |
int s[100],top=-1,max,i; | |
int push(); | |
int pop(); | |
int display(); | |
int palindrome(); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
struct student | |
{ | |
char n[100]; | |
char u[100]; | |
int m; | |
}stud[10],stud2; | |
int main() | |
{ | |
int n,i,p=0; |