#ug-computer-science

1 messages · Page 1 of 1 (latest)

outer nest
#

how is uni of birmingham for comp sci?

lunar idol
#

(@soft apex ) printf is misspelt as pritnf

#

didn't realize how old this was

#

but I recommend you post errors next time

fiery ginkgo
#

Good day, folks I want to ask if anyone here has any ideas on where I should start and what topics come in basic since I don't know much about computer science and my test is on December 12th (it's the basic one like so basic). I was initially studying medical but I was unable to pass the entrance test, so I'm now studying computer science. I would be very grateful if anyone here could offer guidance on where to start and what supplies are fundamental.

sacred jasper
#

use @fiery ginkgo w3 schools

#

for beginners

#

I want to ask, why when if (n3 = n1+n2)), the first if statement is executed? and not skipped.

#

and what is i||j?? what does it do inside the if function?

minor peakBOT
#

Help needed <@&597298407476035596>

lunar idol
sacred jasper
#

means nothing is compared?

lunar idol
#

We already know what I and J are

#

0 and 1

sacred jasper
#

we can just assume that, i||j doesnt exists for the function, like we comment them

lunar idol
#

Yeah

sacred jasper
#

alright how about the other one

lunar idol
#

Don’t you want to put braces though

sacred jasper
#

where??

lunar idol
#

Everywhere?

sacred jasper
#

not necessary if there is only 1 line

lunar idol
#

Ugly as hell either way

sacred jasper
#

cuz computer will read the next line under if or else statement

#

yeaa ik but thats my question paper

#

LOOOOL

sacred jasper
#

i always use bracelets

lunar idol
#

Especially

#

Yeah

#

As for the first

#

(n3=n1+n2) is probably “truthy” and so the body of the if statement runs

sacred jasper
#

also this one, why 0 cant execute the if function?

#

if i change them to like 2,3 4 and so on, they will output min number

#

define truthy?

sacred jasper
lunar idol
#

so?

#

wait what are you saying exactly

sacred jasper
#

result^

#

why they output 2 3 5 when that is not even the true condition

lunar idol
#

what's not even the true condition?'

sacred jasper
#

like it means, if 4=5

#

its not comparing

lunar idol
#

I'm saying it ends up a "truthy" value

sacred jasper
#

n3 will now become 5

lunar idol
#

which is why

sacred jasper
#

means true value?

#

so it will execute the 1st cout

lunar idol
#

because it's assigning and then checking if that value is non 0

sacred jasper
#

ahhh

#

OHHH

#

so that if condition

#

is checking

#

if n3 is non 0

#

if yes, then cout the numbers

lunar idol
#

or not, Idk haven't touched c++ in 2 months but yeah something along those lines

sacred jasper
#

hahahaha

lunar idol
#

but n3 changes to n1+n2 as well

#

before it's compared

sacred jasper
sacred jasper
#

n3 = 5

#

and check if 5 is non 0

#

so it is true

lunar idol
#

yeah

sacred jasper
#

so thats why 2 3 5 is printed right?

#

tysmm ! @lunar idol

minor peakBOT
#

Gave +1 rep to un1ND3X#1594

lunar idol
#

no problem

sacred jasper
#
using namespace std;

int main()
{
    int n1, n2, n3;
   cout<<"\nEnter three numbers: ";
   cin>>n1>>n2>>n3;
   if(5!=0)
    cout<<n1<<" "<<n2;
   else
    cout<<n1*2<<" "<<n2*2<<" "<<n3*2;

}```
#

i got it already, they are basically asking this ^ @fiery ginkgo

lunar idol
#

that's pretty much exactly what

sacred jasper
sacred jasper
minor peakBOT
#

Help needed <@&597298407476035596>

sacred jasper
#

continued^

lunar idol
#

I think they want you to sort it first

#

you're not really sorting it h

zealous canopy
#

Can someone suggest a video to solve such questions

minor peakBOT
#

Help needed <@&597298407476035596>

reef fern
#

with 0000000 being 1

#

instead of 0

zealous canopy
#

Can you suggest me some resource from where I can learn this concept, I'm completely lost

reef fern
# zealous canopy All of them will be 8 bit signed?

Okay, n bits can store 2^n values so 8 bits would be able to store 256 values if it is unsigned we can store integers from 0 to 255 they make up 256 values together. If you have a signed integer, you can only use 7 bits since one is used for storing whether it's positive or negative. If you have 7 bits you can go from either positive or negative 0 to 127. Since we want to store 128 and -128, we'd have to not use the first value as 0 and instead start counting at 1. So that'd be positive or negative 1 to 128 ig. I'm not really sure what ur teacher expects here tho cuz I've never taken a CS course.

sacred jasper
#

I did not use the Hint given from the question, but lecturer said I have to use it and follow all instructions from the question. so how do apply the hint inside the code?

what I have ask the lecturer about is you need to call the circle function as circle c(x,y) not circle c(x,1)

minor peakBOT
#

Help needed <@&597298407476035596>

lunar idol
#

You only need one value to get the area

#

Your question isn’t clear

sacred jasper
#

to make sure that you use the same class and the function when you call it

#

i use x y from the sample output since it ask for x y

sacred jasper
#

it’s like

#

you cin x but didn’t cin y

#

so y wasn’t used

old drift
#

cin?

#

Oh nvm nvm

#

C language

sacred jasper
#

c++

old drift
#

Ig use c(x,x)

sacred jasper
#

hmmm okkk

#

`#include <iostream>
using namespace std;

class shape
{
private:
double x1,y1 ;
public:
void get_data(double x,double y)
{
x1=x;
y1=y;
}
virtual void display_area()
{

}
getarea()
{
    double a=x1*y1;
    return a;
}

};

class triangle: public shape
{
public:
triangle(double x,double y)
{
get_data(x,y);
}
void display_area()
{
double tarea;
tarea = getarea()/2;
cout<<"Area of triangle is: "<<tarea<<endl;
}
};
class rectangle: public shape
{
public:
rectangle(double x,double y)
{
get_data(x,y);
}
void display_area()
{
double rarea;
rarea = getarea();
cout<<"Area of rectangle is: "<<rarea<<endl;
}
};
class circle: public shape
{
public:

circle(double x,double y)
{
    get_data(x,y);
}
  void display_area()
{
  double carea;
  carea = getarea()*getarea()*3.1416;
  cout<<"Area of circle is : "<<carea<<endl;
}

};
int main()
{
double x,y;
cout<<"Enter the values of x & Y for triangle: ";
cin>>x>>y;
triangle t(x,y);
cout<<"Enter the values of x & Y for rectangle: ";
cin>>x>>y;
rectangle r(x,y);
cout<<"Enter the radius circle: ";
cin>>x;
circle c(x,1);
t.display_area();
r.display_area();
c.display_area();
return 0;
}`

#

i forgot to send u guys the code

sacred jasper
minor peakBOT
#

Help needed <@&597298407476035596>

sacred jasper
#

but without referring to my code and question, how would you solve this one?

sacred jasper
#

nevermind

#

this one can right?

#

`#include <iostream>
using namespace std;

class shape
{
private:
double x1,y1 ;
public:
void get_data(double x,double y)
{
x1=x;

    if(y==0)
    {
        y1 = 1;
    }
    else
    {
        y1 = y;
    }
}
 virtual void display_area()
{

}
getarea()
{

    double a=x1*y1;
    return a;

}

};

class triangle: public shape
{
public:
triangle(double x,double y)
{
get_data(x,y);
}
void display_area()
{
double tarea;
tarea = getarea()/2;
cout<<"Area of triangle is: "<<tarea<<endl;
}
};
class rectangle: public shape
{
public:
rectangle(double x,double y)
{
get_data(x,y);
}
void display_area()
{
double rarea;
rarea = getarea();
cout<<"Area of rectangle is: "<<rarea<<endl;
}
};
class circle: public shape
{
public:

circle(double x,double y)
{
    get_data(x,y);
}
  void display_area()
{
  double carea;
  carea = getarea()*getarea()*3.1416;
  cout<<"Area of circle is : "<<carea<<endl;
}

};
int main()
{
double x,y;
cout<<"Enter the values of x & Y for triangle: ";
cin>>x>>y;
triangle t(x,y);
cout<<"Enter the values of x & Y for rectangle: ";
cin>>x>>y;
rectangle r(x,y);
cout<<"Enter the radius circle: ";
cin>>x;
circle c(x,0);
t.display_area();
r.display_area();
c.display_area();
return 0;
}`

minor peakBOT
#

Help needed <@&597298407476035596>

lunar idol
#

Why do you check if it’s 0 and then set it to 1

#

Why don’t you just do y1=y and use y=1?

digital pawn
sacred jasper
sage notch
#

bachelor of science in computer science VS bachelor of science in mathematics and data science

#

what are the differences and what career options would i have after graduating?

#

i need to choose one and i literally dont know which one to pick

#

any advice would be helpful

digital pawn
steel creek
#

Does uk computer science degree tough than US and which programming language UK students use mostly

#

And how tough is to balance work and life pursuing CS?

lunar idol
#

regarding “which programming language Uk students use”

#

Found this

old drift
#

Same

#

Java is love

#

Java is life

magic dagger
#

hi can anyone teach me how to do this

undone elk
# magic dagger

I don't exactly remember how to do this, but I'm pretty sure it's in the A2 computer science textbook

lunar idol
#

yeah Eminem is right

steel creek
#

Is IT degree cheaper than CS degree?? Any idea

rain sleet
#

how do i change 4.8 to 4.80 in java

thick sierra
rain sleet
#

ok thnx

thick sierra
#

here's the docs if you want them

old drift
thick sierra
rain sleet
thick sierra
old drift
#

does it matter if I make 4.80 a string? nope

thick sierra
#

yea you're right

#

no point in storing in a DecimalFormat object here

#

I was thinking of it in a way of storing it in a way such that it is 4.80, yk

slate stone
#

CS MAJORS UPRISE 🔥 🔥

undone elk
slate stone
#

UPRISEEE

undone elk
#

UPRISEEEEE

slate stone
#

anything related to compuoters

#

compuoters coolpepe

undone elk
#

hello good morning i major in chatgpt

slate stone
#

WWW

#

best degree fr PepeHands

undone elk
#

onggg

#

programmers bought upon their own doom

thick sierra
#

how can i help you

slate stone
#

bard specialist coolpepe

umbral cosmos
thick sierra
wispy burrow
#

hello, im not sure if this is the right channel to ask, but i'm planning to take data science as a major in university, but i didn't take as/a2 computer science. i thought that maybe i could cover the syllabus during holidays, and i want to ask if it's beneficial to learn it or should i learn computer science elsewhere?

tight juniper
#

Learn elsewhere

#

Look at some college courses

#

Better

#

You don’t need A level cs

#

It’s bs anyways

wispy burrow
wispy burrow
minor peakBOT
#

Gave +1 rep to (Standard Deviation) Male#2029

tight juniper
wispy burrow
tight juniper
#

like not worth learning C if all the work you're ever gonna do is in data science or smthn like that

wispy burrow
#

like the foundation of CS?

#

i heard for data science C# is used?

tight juniper
tight juniper
#

not too sure

#

but that's beyond the point

tight juniper
#

and you're getting into data science

#

it's probably smarter to start with Python

#

and then focusing more on data science stuff since that's what you're studying

tight juniper
#

and not have to waste your time in things meaningless to you

wispy burrow
minor peakBOT
#

Gave +1 rep to (Standard Deviation) Male#2029

wispy burrow
#

do u think CS foundation would help me understand data science more?

tight juniper
#

what's cs foundation?

wispy burrow
#

or can i just cope with what they give me

wispy burrow
tight juniper
#

ohh

wispy burrow
#

everything that goes with it

#

you know

tight juniper
#

you learn that

#

as you work on projects and stuff

#

idk if it's worth just trying to learn it without applying it at the same time

wispy burrow
#

oo

tight juniper
#

Id say the best way

#

if you're a complete beginner

#

is to learn the syntax and basics like that of whatever language

#

and then work on a project

wispy burrow
#

i mean i studied IT so i have javascript knowledge

tight juniper
#

javascript is great

wispy burrow
#

so that should be somewhat enough to understand what's going on, although syntaxes and such would probably be different

tight juniper
#

it should make it quicker

#

i say just learn the syntax

#

and basics like that

#

then start working on projects immediately

wispy burrow
#

yep

#

by projects

#

can u give a few examples

#

lol

tight juniper
#

hmm

#

well

#

depends

#

i think since you're doing data science

#

i have one idea but im also making turning it into a startup

#

i made it already

#

lemme think of something else

#

relevant to data science

wispy burrow
#

oo

#

yes please

#

🙏

tight juniper
#

you can do something that like

#

tracks price of real estate or something

#

i made something similar

#

it like holds the price for items in a grocery store

#

and the ratings

#

and updates it etcetc

#

but that uses sql too

wispy burrow
#

that can be done with python?

tight juniper
#

yep

wispy burrow
#

can u recommend me some websites or links that i can use to get started with?

tight juniper
#

with like tutorials orr?

wispy burrow
#

i guess like

#

coding progression

#

because idk where to start off

tight juniper
#
  1. ChatGPT
wispy burrow
#

and everything else

wispy burrow
tight juniper
#

fr though

#

i just ask whatever im stuck at

wispy burrow
#

how did u first start learning python?

tight juniper
#

it's basically google just much quicker it's cool af

wispy burrow
#

no i get it lol

#

i use chatgpt for economics all the time

tight juniper
#

and then I was picked for a program in my country

#

which was for python

#

and there they gave us so many projects to do

#

and challenges and stuff like that

wispy burrow
#

oooh

#

interesting

tight juniper
#

but you can do the same w js youtube lol

#

like

wispy burrow
wispy burrow
tight juniper
#

youtube

wispy burrow
#

oo

tight juniper
#

there's like those 5 hour tutorials or smthn

wispy burrow
#

This course will give you a full introduction into all of the core concepts in python. Follow along with the videos and you'll be a python programmer in no time!
Click the ⚙️ to change to a dub track in Spanish, Arabic, or Portuguese.

Want more from Mike? He's starting a coding RPG/Bootcamp - https://simulator.dev/

⭐️ Contents ⭐
⌨️ (0:00) Intr...

▶ Play video
#

does this work

#

lmao

tight juniper
#

yep

#

that's good

#

for the basics

wispy burrow
#

alright

#

thank u so much man @tight juniper

minor peakBOT
#

Gave +1 rep to (Standard Deviation) Male#2029

tight juniper
#

sure

#

then once you're a bit more comfortable you can begin with like dsa and stuff

#

just make sure to be comfortable with stuff like lists arrays sets conditions loops operators and recursion

#

variables etcetc

#

for that though it's better if you try to find a college course online

#

MIT has their courseware

#

open for everyone

#

so you can check that out too

#

i recommend you do

undone elk
#

Only reason you'd do other languages is if you're interested in mixing with compsci

#

A2 CS is somewhat useful if you wanna learn Classes and Polymorphism and etc

#

But if your school forces you to do it in Pascal or VBNET then don't even bother

minor peakBOT
#

Gave +1 rep to Oriole#1906

vague lichen
#

im done with a2 level cs i did programming in python. now i have uni in a couple months . is it better to learn python better to learn java to get a headstart in uni?

minor peakBOT
#

Help needed <@&597298407476035596>

tight juniper
vague lichen
undone elk
#

Python is great

#

The other 2 are outdated and there's no point learning them

tight juniper
#

so I recommend you do Java instead

#

as it will help reduce your workload when the semester starts

undone elk
#

Because while concepts are similar, Object Oriented Programming is very deeply implemented

#

And it's difficult to wrap your head around if your only experience is python

#

In Java, everything is a Class

#
print("Hello, World!") #python

vs

class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!"); 
    }
}
#Java
tight juniper
#

ours

#

the one which introduces java

#

is different

#

and one which

#

teaches oop is different

undone elk
#

Then we have Object Oriented Programming that's taught in Java

tight juniper
#

ooooh

undone elk
#

Yep

tight juniper
#

for us

#

for freshmen there's 2

#

one if you never programmed before which is in Java

#

the other if you did

#

but both are like

#

basic stuff

#

then higher level courses have more oop

undone elk
undone elk
undone elk
tight juniper
undone elk
tight juniper
undone elk
tight juniper
#

you learn alot by making an OS

undone elk
#

I'm so lucky I'm a Data Sci major and don't have to do that course

tight juniper
#

it is but I mean like

#

most of my seniors

#

who I talked to

#

it's a recurring theme

#

that they say it's one of the most useful classes

undone elk
#

Yeah it's supposed to be insanely useful

tight juniper
#

like you learn most from it

#
  • I really love C
undone elk
#

But most people expect to fail it at least once at my uni

tight juniper
#

fair enough😭

undone elk
#

I think 120 people got 0 in the 3rd assignment this semester

tight juniper
#

nah for me

#

my grades are quite good

#

so far at least

#

hope to keep it this way😭

#

I learnt a bit about quantum computing this year and it was really cool

#

but not in class

#

i wanna take it in few years

#

once I can

#

quantum computing is so cool

undone elk
#

I have no idea what it is but ik it's cool

tight juniper
#

a dumbass seminar

#

meant mostly for arts and business students

tight juniper
#

like basically

#

the computer can carry multiple calculations at once

#

rather than just one as opposed to rn

undone elk
# tight juniper my grades are quite good

It's also actually just really hard for us to get good scores in like most Aussie unis, it's basically impossible to get 85, and 75 is a fuckton of hard work that most people don't have the time for.
I have a 65 average overall rn, and that's gonna be destroyed this semester

tight juniper
#

cause it isn't like binary but states of electrons that carry the info, and that could basically be infinite

undone elk
#

Makes sense

tight juniper
#

or i mean

#

heard

tough frost
#

Hallo childs

pulsar pecan
#

Hallo father

lucid garnet
#

@tough frost @pulsar pecan hello 👴

median night
#

@tough frost Plural for child is children. There's no point in saying that since dis a cs channel not eng

void geyser
keen agate
#

What is this?

sharp hinge
#

first

boreal shell
#

What is undergrad Computer Science?

hexed pebble
#

A channel for people who'll study Computer Science at Undergrad Level. E.g. Karthik and I

boreal shell
#

Ohh ok

lucid garnet
#

I want to do this in my UG and maybe PG too
Because I hate the S from the CS

feral gyro
#

take the D then

lucid garnet
#

@feral gyro can u tell me it's full form

feral gyro
#

no

#

that is left as an exercise for the reader

lucid garnet
#

@feral gyro not all like exercise... So spill it...

feral gyro
median night
#

😂

wise stone
#

@slate stone what does it mean

#

wait you're learning UG CS ? @slate stone

#

no clue what this eq means

#

is it a vector eq

#

oh damn

#

you're making an arduino project

#

@slate stone

#

I have made a bluetooth speaker

#

Unfortunately, no programming though

#

bruh you on another level

#

great job

#

what are you trynna make though

waxen rover
#

VR Porn

keen agate
#

holy shit

#

raytracing

earnest basin
#

Hey guys. I'm about to enter year 1 and I'm pretty lost on what to prepare myself for

jolly bronze
#

@earnest basin start with python chief

earnest basin
#

Yikes

#

Is anyone familiar with SAP

fast igloo
#

hey guys, which subjects did yall give for SATs for CS?

#

since chem is out of the loop,,, there is math, phy and?

shell wedge
#

@fast igloo doesn't really matter, Math and physics is enough. but if you have an interest in any other subject or a language (or even American history), go for it. Two is usually enough unless your Uni has specific requirements (like for example, Cornell has specific subject test requirements)

fast igloo
#

@shell wedge alright thanks!

slate stone
#

“the heading of the document should be placed in border with shadow”
What does that mean?
How do we do that in ms word?

#

Can anyone please help me with that^?

jolly bronze
#

Like this except you apply to header

#

And setting to be shadow one

median night
#

Microsoft word

#

2007

#

;o

lucid garnet
#

@median night Sattish's is the 2019 i guess

jolly bronze
#

Mine is MS Word 2019

#

Yep

lucid garnet
#

see

median night
#

Well

#

I

jolly bronze
#

😒

median night
#

awsdoofjklavnsdf

#

Well goodluck

jolly bronze
#

Who u saying that to

lucid garnet
#

u ask her

median night
#

It's for whoever that needs luck

jolly bronze
#

Aight, @slate stone hope that answers your question

lucid garnet
#

wait if u got MS wword questions... ask me i got more than 70 percentile according to LinkedIn test 😂

slate stone
#

Oh, I see
Thank you! @jolly bronze

jolly bronze
#

👌

median night
#

@slate stone sigh your pfp always makes my day

slate stone
#

Can anyone please help me?
How can we highlight a word using style?

jolly bronze
#

@slate stone still need help?

slate stone
#

Yep

#

@jolly bronze

jolly bronze
#

so in ms word right?

slate stone
#

Yes

jolly bronze
#

so the yellow highlight rightttt

#

the only way you can highlight is putting a shadding over so like this

#

hope that helps

slate stone
#

No, I wanna highlight the text using style

jolly bronze
#

aight wait

#

sorry bro but that i dont know how to do

#

best thing i can tell you is maybe go throught google

#

or the microsoft word community

#

they must have talked about it

slate stone
#

Alright, thanks!

jolly bronze
#

👌🏼

vital grail
#

anyone that knows java

#

dm me now

#

please

rotund sigil
#

@vital grail you might want to approach to #programming for a better response regarding your programming queries.

true laurel
#

Does anyone have some good resources for Linear Algebra?

pulsar pecan
#

Yupp

#

A bit abstract

#

You can try Strang if you're looking at applications

true laurel
#

Ooo, this really must be a hella good book.

#

Someone else I asked about learning linear algebra also recommended the same book

#

Thanks!

slate grove
#

Pog

slate grove
#

@pulsar pecan sorry for tagging any books for determinants or like programming

pulsar pecan
#

Determinants as in lin alg?

slate grove
#

like in differentiation

#

sorry derivatives

#

mb

pulsar pecan
#

Programming idk mate I've always learnt from the internet or courses, I've heard that Donald Knuth's "Art of programming" series is good but might be heavy at the starting but do check it out

#

For basic calc hmmm

#

Lemme think

slate grove
#

ahh coool

dreamy basin
#

don't use books for programming @slate grove

ebon bobcat
#

what is the difference between computer science and computer engineering?

#

and which one is more evolving in today's time (taking in consideration the movement of fields in the next say 5-7 years)

mossy raven
#

is UI UX a good math

#

path*

#

I know graphic design atm, In As. Would take a UI UX major in Uni be good and financially good?

unique nacelle
#

hello

#

does anyone use java over here?

void marsh
#

Whats the diff between Uni CS engineering and Unis CS only in the US

#

I was curious

noble rivet
void marsh
#

ah thanks

wooden barn
#

Hey, does anyone know what career paths I could go into with AS/A level chemistry, ict and math?

slate stone
#

Is it best to start learning Discrete Maths before I start uni this semester? Or should I start with the programming language such as C++?

pulsar pecan
pulsar pecan
#

@slate stone I saw your message

#

Gimme a sec

#

Check out the slides here

#

This is what I'm using

slate stone
#

Thanks !!

worthy heart
#

znask set "CS Helper"

royal knotBOT
true laurel
#

I didn't know where to post this but uhhh

#

someone asked this on piazza and I honestly don't know the answer lol

small arch
#

guys

#

what does "n !" mean in C

#

?

wanton pilot
steel creek
#

Anyone know how to get back to win 10 from win 11 without data loss currently in latest update

fickle granite
undone elk
#

Why would you wanna go back from 11 to 10

#

Is 11 bad or something?

steel creek
fickle granite
#

How long have you had win 11 for

steel creek
fickle granite
#

Yeah you can't revert without a full reset

steel creek
fickle granite
#

Backup, reset, load backup?

#

The rollback period is only 10 days iirc

#

After that you can't revert without data loss

steel creek
fickle granite
#

Enjoy windows 11 buddh

steel creek
undone elk
#

and move all your required files onto that

#

and then reset lol

#

i dont think 128GB usbs are too expensive

steel creek
jagged lantern
#

Should've googled the error code xD

steel creek
slate stone
#

Help needed by @wraith lynx | <@&597298407476035596>

wraith lynx
#

wait... it didn't parse my text.

#

well, i''m having a machine project due in 5 days in which part of it would involve the use of 2 hashing functions to search for the frequency of a pattern of size k in a string. the language that i'll use is c/c++.

#

what hashing functions would you guys recommend?

steel creek
#

Is pursuing CS degree worth these days for future??

agile rose
#

Yes

#

CS is one of the major fields that will be relevant in the future and have a ton of opportunities

#

@steel creek

agile rose
#

Like every technological field uses cs

steel creek
agile rose
#

Theory and practical

#

You need to know programming

#

Like python, java, C, C++ etc

steel creek
#

Thanks

agile rose
#

You're welcome

fickle swallow
#

does anyone want to study computer programming together?

wraith lynx
#

i need help converting the md5 and sha-1 hashing functions into a function that can do the assigned task in java:

slate stone
#

Help needed by @wraith lynx | <@&597298407476035596>

wraith lynx
#

and i could not do it

sage notch
#

should net neutrality be restored? and why?

slate stone
#

Anyone here have experience with MongoDB and C#?

slate stone
#

What math would I be taught in undergraduate computer science?

dawn zodiac
undone elk
#

@fickle granite in Java that too

fickle granite
#

F

old drift
undone elk
#

im jk

old drift
undone elk
#

XD

#

Java is a pain

old drift
#

i feel like i can do whatever I want in py and c++

#

and all I hear about java and JS is pain

undone elk
undone elk
#

I might do it next year

outer nest
#

Hi, I'm about to finish grade 12 and am wondering how I should prepare for a bachelor's degree in computer science. Anyone got any tips, resources or anything I should look out for?

steel creek
undone elk
#

i have a question

#

in the game im making, i want to be able to take a keypress action, but only implement the keypress every 10 frames

#

so for example: if at frame 1, the user presses the left key to move the character left- it should wait till frame 10, and only then move the character left

#

can someone help me with the logic for this

minor peakBOT
#

Help needed <@&597298407476035596>

undone elk
#

@lucid garnet ik you dont have the CS helper role but any ideas🥺 (sorry for ping)

lucid garnet
undone elk
lucid garnet
#

I'm sorry

#

I'm not doing cs

#

I'm actually doing BCA

#

Computer application

undone elk
#

oof ok my bad

lucid garnet
#

We don't have keypress stuff I believe

undone elk
#

hm nws

lucid garnet
#

Aite back to hibernation

undone elk
#

😂

dawn zodiac
undone elk
undone elk
dawn zodiac
#

so something like Left Key Pressed -> add (Left, 10) to the queue

#

and on the update ticket, it goes through the whole queue and decrements each delay by 1, and if it equals 0, then we set the current direction to that direction

minor peakBOT
#

Gave +1 rep to scythetwirler#5510

dusty magnet
#

Hello i was asked to do a project about a villa rental system, i just have to write the business rule and draw the entity relationship diagram , but the thing is that I have never been to a villa before and i can't see anything about it on the net, can you people help me please

#

/ask

#

:(

minor peakBOT
#

Help needed <@&597298407476035596>

dusty magnet
#

I need to get at least 7 entities

narrow mauve
#

hello, just finished my A levels. would anyone give me tips on what to do this summer to prepare?👀

tight juniper
#

Probably see what your uni teaches 1st semester

#

That's what ig many are doing

minor peakBOT
#

Help needed <@&597298407476035596>

soft apex
#
int main()
{
    int num = 4,i,y,x = 30;
    for(y=1; y<=num; y++)
        {
            goto(x,y+1);
        }
    for(i=0; i<=y; i++)
        {
            pritnf(“%3d”,abs(i));
            x = x-3;
        }
}```
soft apex
violet heron
undone elk
soft apex
undone elk
#

Never done C before

soft apex
old drift
#

i forgor there was a cs channel too

#

i only remember it being dead

unborn oxide
late lodge
#

Example product:

#include<stdio.h>
int main()
{
    int num = 4,i,y,x = 30;
    for(y=1; y<=num; y++)
        {
            goto(x,y+1);
        }
    for(i=0; i<=y; i++)
        {
            pritnf(“%3d”,abs(i));
            x = x-3;
        }
}
#

Ok now why is it not formatting C properly me angy

#

Prob bc i dont know the actual C language thingy that discord considers as C but ok

#

Ok i think its just me being on mobile thats why its not showing idk

#

But it should have cool colours like ur IDE

soft apex
#

Me thinking same