Notes, summaries, assignments, exams, and problems for Computers

Sort by
Subject
Level

Find the Largest Number and Calculate Factorial in C++

Classified in Computers

Written on in with a size of 2.11 KB

Input three numbers and find the largest. Enter a number and display the day name of the week.
#include
#include
using namespace std;
using namespace std;
int main() {
int num1, num2, num3;
int day;
cout << "Enter three numbers: ";
cout << "Enter a number (From 1 to 7): ";
cin >> num1 >> num2 >> num3;
cin >> day;
if (num1 > num2 && num1 > num3) {
cout << "Largest number is " << num1;
} else if (num2 > num3) {
cout << "Largest number is " << num2;
} else {
cout << "Largest number is " << num3;
}
switch (day) {
case 1: cout << "Sunday"; break;
case 2: cout << "Monday"; break;
... Continue reading "Find the Largest Number and Calculate Factorial in C++" »

Practical Machine Learning Labs in TensorFlow and PyTorch

Posted by Anonymous and classified in Computers

Written on in with a size of 14.76 KB

Lab 1: Basic TensorFlow Computation Graph

This example demonstrates how to define and execute a simple computation graph in TensorFlow using the @tf.function decorator, which converts a Python function into a high-performance TensorFlow graph.

import tensorflow as tf

# Define a simple computation graph
@tf.function  # Converts Python function into a TensorFlow graph
def my_graph(x, y):
  return x * y + 5  # Simple equation: (x * y) + 5

# Create TensorFlow constants (nodes)
x = tf.constant(3.0)
y = tf.constant(4.0)

# Run the computation graph
result = my_graph(x, y)

# Print the result
# Convert tensor to a NumPy array to see the value
print(f"Result of (x * y) + 5: {result.numpy()}")

Lab 2: Simple Linear Regression with Keras

Here, we build,... Continue reading "Practical Machine Learning Labs in TensorFlow and PyTorch" »

Python Django Project Setup and Database Integration

Classified in Computers

Written on in with a size of 4.14 KB

Python Django Project Setup

Follow these steps to initialize and configure your Python Django environment.

Initial Environment Navigation

  • Step 1: Open the Command Prompt and use cd.. to navigate back.
  • Step 2: Use cd.. again to reach the desired root.
  • Step 3: Navigate to your Python directory: cd Raj_Python.
  • Step 4: Enter your project folder: cd mscit_dproject.

Creating the Project and Application

  • Step 5: Create the project: django-admin startproject [Project Name].
  • Step 6: Navigate into the project folder: cd [Project Name].
  • Step 7: Create a new application: python manage.py startapp [App Name].
  • Step 8: Open the project in VS Code and configure settings.py.

Configuring settings.py

In settings.py, import the OS module and define your template directory:

import

... Continue reading "Python Django Project Setup and Database Integration" »

Bootstrap Components: Navigation Tabs, Tables, and Forms

Classified in Computers

Written on in with a size of 2.78 KB

Corrected Exam

<!DOCTYPE html>

Images and Table with Nav Tabs

Lorem ipsum dolor sit amet consectetur adipisicing elit. Ducimus deserunt natus est et, incidunt id quasi ex veniam tenetur quibusdam optio dolor rem dicta officia voluptate nemo rerum quod amet.

Data Table

#NameAgeCountry
1Alice25USA
2Bob30UK
3Charlie28Canada

Alert Notification

Hello! This is an alert that can be closed by clicking on the "X" button.

<!DOCTYPE html>

Document

Form Section

Text Input
Select Option Choose... Option 1 Option 2 Option 3 Option 4
Accept Terms

Send

Grid

Lorem ipsum, dolor sit amet consectetur adipisicing elit. Assumenda autem culpa dolorum dolorem voluptatum quisquam ipsam quia quae libero rerum aut pariatur saepe quaerat doloribus... Continue reading "Bootstrap Components: Navigation Tabs, Tables, and Forms" »

180 Essential Excel Shortcuts for Windows

Posted by Anonymous and classified in Computers

Written on in with a size of 220.94 KB

Cheat Sheets N More

180 Essential Excel Shortcuts for PC

Master Anything Faster · Cheat Sheets N More

Microsoft Windows Edition

200 Shortcuts

Part 1: Absolute Basics

Moving Around

  • Move one cell in any direction: Arrow Keys
  • Confirm entry and move down: Enter
  • Confirm entry and move up: Shift + Enter
  • Move one cell to the right: Tab
  • Move one cell to the left: Shift + Tab
  • Move down one screen: Pg Dn
  • Move up one screen: Pg Up
  • Move one screen to the right: Alt + Pg Dn
  • Move one screen to the left: Alt + Pg Up
  • Move to first column in row: Home

Important Places

  • Go to cell A1: Ctrl + Home
  • Go to last used cell: Ctrl + End
  • Jump to edge of data region: Ctrl + Arrow
  • Select to edge of data region: Ctrl + Shift + Arrow
  • Open Go To dialog: F5
  • Open Go To (alternate): Ctrl + G

Selecting Cells

  • Extend selection
... Continue reading "180 Essential Excel Shortcuts for Windows" »

Cheat Sheets: Definition, Academic Use, and Technical Reference

Classified in Computers

Written on in with a size of 3.02 KB

What is a Cheat Sheet? Definition and Terminology

A cheat sheet or crib sheet is a concise set of notes used for quick reference. The term may also be rendered as cheatsheet.

Academic Use and Exam Preparation

Cheat sheets are so named because they may be used by students without the instructor's knowledge to cheat on a test. However, in many educational settings, particularly high school or undergraduate studies, rote memorization is often less important than basic education or intense graduate studies. Therefore, students may be permitted to consult their own notes during the exam, which is not considered cheating.

The act of preparing a so-called cheat sheet is also an educational exercise. For this reason, students are typically only allowed... Continue reading "Cheat Sheets: Definition, Academic Use, and Technical Reference" »

dsdfs

Classified in Computers

Written on in with a size of 7.22 KB

Kako si lep danes 

What is Lorem Ipsum?

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

What is Lorem Ipsum?

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard... Continue reading "dsdfs" »

Programming Concepts: Constants, Constructs, and Operators

Classified in Computers

Written on in with a size of 1.72 KB

Programming Fundamentals

What is a Constant?

A constant is a data value that remains unchanged during the execution of a program.

Three Programming Constructs

The three fundamental programming constructs are: selection, iteration, and sequence.

Logical Operators

One example of a logical operator is AND.

  • Operator: and
  • Description: Logical AND: True if both operands are true.
  • Syntax: x and y

Functions vs. Procedures

Difference: A function is typically used to calculate a value from a given input, while a procedure is a set of commands executed in a specific order.

Similarity: Functions must return a value, but in stored procedures, it is optional. Procedures can return zero or multiple values. Functions usually have only input parameters, whereas procedures... Continue reading "Programming Concepts: Constants, Constructs, and Operators" »

Java Arithmetic Operations Web App

Classified in Computers

Written on in with a size of 1.24 KB

Arithmetic Operations in Java

Input Form

Enter number 1:
Enter number 2:
  • Addition
  • Subtraction
  • Multiplication
  • Division

<% String num1Str = request.getParameter("num1"); String num2Str = request.getParameter("num2"); String operation = request.getParameter("operation"); if (num1Str != null && num2Str != null && !num1Str.isEmpty() && !num2Str.isEmpty() && operation != null) { double num1 = Double.parseDouble(num1Str); double num2 = Double.parseDouble(num2Str); double result = 0; switch (operation) { case "add": result = num1 + num2; out.println("

Result: " + result + "

"); break; case "subtract": result = num1 - num2; out.println("

Result: " + result + "

"); break; case "multiply": result = num1 * num2; out.println("... Continue reading "Java Arithmetic Operations Web App" »

Refer to the exhibit. When a static IP address is being configured on the host, what address should be used for the default gateway

Classified in Computers

Written on in with a size of 4.69 KB

HOSTàROUTER: 1

ENABLE

CONFIGURE TERMINAL

INTERFACE GIGABITETHERNET 0/0

IP ADDRESS 192.168.1.126 255.255.255.224

NO SHUTDOWN

EXIT

INTERFACE GIGABITEETHERNET 0/1

IP ADDRESS 192.168.1.158 255.255.255.240

NO SHUTDOWN

HOSTàSWITCH 2

ENABLE

CONFIFURE TERMINAL

INTERFACE VLAN 1

IP ADDRESS 192.168.1.157 255.255.255.240

NO SHUTDOWN

HOST/ROUTER 3

EXIT (LLEGAR AL CONFIGURE TERMINAL)

HOSTNAME MIDDLE

ENABLE SECRET CISCO

LINE CONSOLE 0

PASSWORD CLASS

LOGIN

EXIT

SECURITY PASSWORD MIN-LENGTH 10

SERVICE PASSWORD ENCRYPTION

IP DOMAIN-NAME CISCO

CRYPTON KEY GENERATE RSA

1024

EXIT

USERNAME CICLOS

LINE VTY 0 4

LOGIN LOCAL

TRANSPORT INPUT SSH

EXIT

INTERFACE GIBABITEETHERNET 0/0

IPV6 ADDRESS 2001:DB8:ACAD:A::1/64

IPV6 ADDRESS FE80::1 LIN

EXIT

GIBABITETHERNET 0/1

IPV6 ADDRESS 2001:DB8:ACAD:B::1/64

IPV6

... Continue reading "Refer to the exhibit. When a static IP address is being configured on the host, what address should be used for the default gateway" »