Recent projects

deliverable2_mongodb

MongoDB · an anonymous user
52 minutes ago
// AUTHORS db.authors.insertMany([ { authorID: "au01", firstName: "Chinua", lastName: "Achebe" }, { authorID: "au02", firstName: "Ngugi", lastName: "Wa Thiong'o" } ]); // BOOKS db.books.insertMany([ { ISBN: "9780141186887",

sample

C# · an anonymous user
55 minutes ago
using System; using System.linq; using System.Collections.Generic; namespace MyCompiler { public class DictionaryItem { public string ID { get; set; } public string Name { get; set; } } public class Rate { public DictionaryItem VendorType { get; s

create_insert_fetch.sql

SQL · vasavi3057
55 minutes ago
-- create a table CREATE TABLE students ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, gender TEXT NOT NULL ); -- insert some values INSERT INTO students VALUES (1, 'Ryan', 'M'); INSERT INTO students VALUES (2, 'Joanna', 'F'); -- fetch some val

export_taches_jusqu_aujourdhui.p

Python · an anonymous user
56 minutes ago
#!/usr/bin/env python3 """ Exporte les taches Mobility Work dans un Excel : Equipment id, Statut (format web app), assignes, tags, temps planifie/arret/duree, dates. Pagination + dedoublonnage. Usage : $env:MW_API_KEY="ta_cle_api" python ex

Deliverable 2

MongoDB · an anonymous user
56 minutes ago
use EduvosLibary db.createCollection("Member") db.createCollection("Book") db.createCollection("Author") db.createCollection("BookAuthor") db.createCollection("BorrowedBooks") //Question 2.2 // Insert records into Member collection

Deliverable 2

MongoDB · an anonymous user
56 minutes ago
use EduvosLibary db.createCollection("Member") db.createCollection("Book") db.createCollection("Author") db.createCollection("BookAuthor") db.createCollection("BorrowedBooks") //Question 2.2 // Insert records into Member collection

mongodb

MongoDB · SumitJanuk
57 minutes ago
// Create AUTHOR db.createCollection("AUTHOR"); // Create BOOK db.createCollection("BOOK"); // Create MEMBER db.createCollection("MEMBER"); // Create BOOKAUTHOR (BRIDGING VALUE)

Deliverable 2

MongoDB · an anonymous user
57 minutes ago
use EduvosLibary db.createCollection("Member") db.createCollection("Book") db.createCollection("Author") db.createCollection("BookAuthor") db.createCollection("BorrowedBooks") //Question 2.2 // Insert records into Member collection

trapezoidal rule

Octave · an anonymous user
58 minutes ago
%trapezoidal rule f=input('enter the function f(x):'); x0=input('enter the value of intial limit x0='); xn= input('enter value of final limit xn='); N=input('enter the total number of subintervals N='); h=(xn-x0)/N; area=0; while(x0<xn) area=area+(

itdsa

MongoDB · an anonymous user
58 minutes ago
db.createCollection("AUTHOR"); db.createCollection("BOOK"); db.createCollection("BOOKAUTHOR"); db.createCollection("MEMBER"); db.createCollection("BORROWEDBOOKS");

Question 2

MongoDB · Tokelo_Jeloa
59 minutes ago
/// QUESTION 2.1: CREATE COLLECTIONS db.createCollection("Author"); db.createCollection("Book"); db.createCollection("Member"); db.createCollection("BookAuthor"); db.createCollection("BorrowedBooks"); /// QUESTION 2.2: INSERT RECORDS (two per coll

2.6

MongoDB · zimenhlapo
1 hour ago
db.borrowedbooks.aggregate([ { $lookup: { from: "member", localField: "memberID", foreignField: "memberID", as: "memberDetails" } }, {

test

Java · an anonymous user
1 hour ago
import java.util.*; import java.lang.*; import java.io.*; import javax.swing.*: // The main method must be in a class named "Main". class Main { public static void main(String[] args) { JFrame fenster = new JFrame(title: "Zähler");

deliverable 2 Yoliswa ntando mjojo

MongoDB · an anonymous user
1 hour ago
/* ============================================================ DELIVERABLE 2: Eduvos Online Library Database System (MongoDB) ============================================================ Note: the same sample data set is reused in Delivera

assigment-1

Octave · an anonymous user
1 hour ago
% assigment -1 % y1 = 1988; % m1= 01; % d1 =12 ; % y2 = 1988; % m2 = 02; % d2 = 12; % m=0; % function y = older(y1,m1,d1,y2,m2,d2) % y1 = y1 + m1 + d1;

trapezoidal rule

Octave · an anonymous user
1 hour ago
%trapezoidal rule f=input('Enter the function f(x):'); x0=input('Enter the value of initial limit x0='); xn=input('Enter the value of final limit xn='); N=input('Enter the total number of subintervals N='); h=(xn-x0)/N; area=0; while(x0<xn) area=are

2.5

MongoDB · zimenhlapo
1 hour ago
db.borrowedbooks.deleteOne( { fineAmount: 50 } )

mukesh

MySQL · an anonymous user
1 hour ago
create database mukesh_store;

trapezoidal

Octave · an anonymous user
1 hour ago
% Trapezoidal Rule f=input('Enter the function f(x):,s'); x0=input('Enter the value of initial limit x0='); xn=input('Enter the value of final limit xn='); N=input ('Enter the total number of subintervals N='); h=(xn-x0)/N; area=0; while(x0<xn) area

自習インスタンス化

Java · an anonymous user
1 hour ago
import java.util.*; import java.lang.*; import java.io.*; // The main method must be in a class named "Main". class Main { public static void main(String[] args) { System.out.println("Hello"); Print A = new Print(); A.exe();