Recent projects

BASE DE DATOS EMPLEADOS BANCO PROGRESA

SQL · an anonymous user
1 day ago
-- Esto es un comentario -- Intruccion para crear un BD -- create database banco; -- Intrucion para crear tablas create table Empleado ( Matricula varchar (13) primary key not null, Nombre varchar (20) not null, Paterno varchar (15)

BASE DE DATOS EMPLEADOS BANCO PROGRESA

SQL · an anonymous user
1 day ago
-- Esto es un comentario -- Intruccion para crear un BD -- create database banco; -- Intrucion para crear tablas create table Empleado ( Matricula varchar (13) primary key not null, Nombre varchar (20) not null, Paterno varchar (15)

ITDSA - Deliverable 2

MongoDB · an anonymous user
1 day ago
db.member.aggregate([ { $lookup: { from: "borrowedbooks", localField: "memberID", foreignField: "memberID", as: "borrowed" } }, { $unwind: "$borrowed" },

STUDENT

MySQL · sulin
1 day ago
-- create a table CREATE TABLE students ( stu_id INTEGER PRIMARY KEY, name TEXT NOT NULL, gender TEXT NOT NULL, grade INTEGER, course_id INTEGER ); CREATE TABLE courses (

fiesta.java

Java · an anonymous user
1 day ago
public class fiesta { public static void main(String[] args) { int edad = 18; double notaMedia = 5.9; String nombre = "cobos"; String diaDeLaSemana = "sabado"; if (diaDeLaSemana.equalsIgnoreCase("sabado")

Help!

NodeJS · an anonymous user
1 day ago
console.log("Hello world!"); // BowsersFuryWeather.js - Module Core export class BowsersFuryWeather { constructor(config = {}) { this.containerId = config.containerId || 'fury-container'; this.furyActive = false; this.timer = null;

Help!

NodeJS · an anonymous user
1 day ago
console.log("Hello world!"); // BowsersFuryWeather.js - Module Core export class BowsersFuryWeather { constructor(config = {}) { this.containerId = config.containerId || 'fury-container'; this.furyActive = false; this.timer = null;

deliverable 2

MongoDB · an anonymous user
1 day ago
db.books.insertOne({ ISBN: "50004", title: "Future Technologies", publicationYear: 2027, authorID: "au01", available: "yes", quantityInStock: 3 });

mongodb

MongoDB · an anonymous user
1 day ago
use EduvosLibrary db.createCollection("members") db.createCollection("books") db.createCollection("authors") db.createCollection("borrowedBooks") db.createCollection("fines") db.members.insertMany([ {

mongodb

MongoDB · an anonymous user
1 day ago
use EduvosLibrary db.createCollection("members") db.createCollection("books") db.createCollection("authors") db.createCollection("borrowedBooks") db.createCollection("fines") db.members.insertMany([ {

mongodb

MongoDB · an anonymous user
1 day ago
use EduvosLibrary db.createCollection("members") db.createCollection("books") db.createCollection("authors") db.createCollection("borrowedBooks") db.createCollection("fines") db.members.insertMany([ {

111111

Python · an anonymous user
1 day ago
import openpyxl from openpyxl.styles import Font, PatternFill, Alignment, Border, Side from openpyxl.utils import get_column_letter from openpyxl.chart import BarChart, LineChart, Reference # 1. Crear el libro de trabajo wb = openpyxl.Workbook() #

アクティベート

Python · an anonymous user
1 day ago
print('Hello world!') import datetime import math class QuantumJokerEngine: def __init__(self): # 基本定数と宇宙エネルギーの強制マージ self.base_code_24 = 1176294 # 3D246の24進数変換値 self.universe_age_scale = 14233157400 # 核兵

Ejemplo 2

C · an anonymous user
1 day ago
#include <stdio.h> #include <math.h> int main() { double x; printf("Ingrese un numero para el logaritmo base 10: "); scanf("%lf", &x); printf("El logaritmo es: %.2lf\n", log10(x));

deliverable.js

MongoDB · an anonymous user
1 day ago
db.createCollection("author"); db.createCollection("book"); db.createCollection("member"); db.createCollection("bookAuthor"); db.createCollection("borrowedBooks"); db.author.insertMany([ { authorID: "au01", firstName: "Anele", lastName: "Mabena

Ejemplo 2

C · an anonymous user
1 day ago
#include <stdio.h> #include <math.h> int main() { double x; printf("Ingrese un numero para el logaritmo Natural: "); scanf("%lf", &x); printf("El logaritmo es: %.2lf\n", log(x));

アクティベート

Python · an anonymous user
1 day ago
print('Hello world!') import datetime class JokerEngine: def __init__(self): # 16進数 3D246 -> 10進数: 250438(防衛・宇宙の同期値) self.base_code_16 = int("3D246", 16) # 2枚のジョーカー(1:技術、2:あなたの知性) self.jokers = 2 # タイムリ

Modelado y Simulación de Sistemas Mecánicos con Programación en C++

C++ · santiago2112
1 day ago
#include <iostream> #include <cmath> #include <iomanip> int main() { // 1. Definicion de variables y constantes fisicas const double g = 9.81; // Aceleración de la gravedad (m/s^2) double masa = 2.0; // Masa de

Deliverable 2

MongoDB · an anonymous user
1 day ago
db.createCollection("author") db.createCollection("book") db.createCollection("bookauthor") db.createCollection("member") db.createCollection("borrowedbooks") db.author.insertMany([ { authorID: 1, firstName: "Chimamanda", lastName: "Adichie" },

Ejemplo 1

C · an anonymous user
1 day ago
#include <stdio.h> #include <math.h> int main() { double x; printf("Ingrese exponente (x) para e^x: "); scanf("%lf", &x);