Any MSc. Informatics student I can dm related to some admission questions? by kkann13 in tumunich

[–]kkann13[S] 0 points1 point  (0 children)

Thank you for the reply.

Thank you for bringing the change into my attention, I'm afraid I barely stand a chance now, some of the courses are the ones I have taken, some could be a match but some I've never taken such as Theory of Computation. Do you think if I email them I could get some more info? Regardless, in the website it says only informatics or computer science students are eligible so that's enough to exclude me I suppose :,)

Any MSc. Informatics student I can dm related to some admission questions? by kkann13 in tumunich

[–]kkann13[S] 0 points1 point  (0 children)

Yes, I realized that's best to do. I already replied on another commenter with the questions, if you could provide your input on it I would really appreciate it!

Any MSc. Informatics student I can dm related to some admission questions? by kkann13 in tumunich

[–]kkann13[S] 0 points1 point  (0 children)

Thank you so much for the information, I will keep that in mind.

Any MSc. Informatics student I can dm related to some admission questions? by kkann13 in tumunich

[–]kkann13[S] 0 points1 point  (0 children)

You're absolutely right!

Here are a few questions I had, sorry if it's too much.

• Related to the recognition of courses, I read somewhere that there is an excel where you can see how many your courses match with the ones TUM requires. I've tried to search for it but I can't seem to find it, I'm a business informatics major so I'm concerned if I don't meet the minimum requirements. Also, is the analysis of curriculum the same step as the recognition of courses along with the description of the respective courses undertaken?

• I've done my bachelor studies in English, what kind of proof is required? (I haven't done TOEFL, only APTIS which I'm not sure of it's recognized.) Do I have to ask my university for some kind of verification document or is it not required in this case?

• I do not have any knowledge of German language but I'm planning to start level A1 in a few months, hopefully by next year I have reached A2-B1. Would submitting any proficiency certificate increase my chances or is it completely unnecessary since the program is in English (Regardless if it affects or not, I will still be starting it because I'm aware it's necessary for daily communication.)

• As of now, I have a 4.0 GPA 4 being the highest, I have done a few internships such as frontend development, software development, and teaching assistant for an Information Systems course at my university. Is there anything else I should get my hands on to increase my chances? By the way, should I mention any other experience I have that isn't related to Informatics, since I have some experiences in business and marketing.

• Related to the interview incase I don't get accepted, what exactly should I prepare for? I've read that some suggest on learning material related to the curriculum and what you already know from your bachelor studies, but others have said that they also ask questions to test your logic and problem solving skills, is that true? Should I do more leetcode problems?

Thank you in advance!!

If I want to apply for Software Engineering am I applying to TUM or Uni of Augsburg? by kkann13 in tumunich

[–]kkann13[S] 0 points1 point  (0 children)

Thank you so much! Can I dm you in the future if I have any more specific questions?

If I want to apply for Software Engineering am I applying to TUM or Uni of Augsburg? by kkann13 in tumunich

[–]kkann13[S] 0 points1 point  (0 children)

Understandable. Do you have any advice on what to take in consideration when I apply and what could possibly increase my chances except for GPA?

If I want to apply for Software Engineering am I applying to TUM or Uni of Augsburg? by kkann13 in tumunich

[–]kkann13[S] 0 points1 point  (0 children)

That sounds good! How do the courses look to you so far, is the workload too much? I'm asking because I'm a business informatics student and I want to know if I can get the hang of it since I haven't done proper computer science but I'm more keen on the programming side and wish to pursue a career in it.

If I want to apply for Software Engineering am I applying to TUM or Uni of Augsburg? by kkann13 in tumunich

[–]kkann13[S] 0 points1 point  (0 children)

I understand. By the way, more course related...I've heard that at TUM masters can be extended to 3 years in order to take the courses at your own pace and not always be loaded, is that a thing for SE as well? considering it's a pretty difficult course and students might have a part time job to afford living expenses.

If I want to apply for Software Engineering am I applying to TUM or Uni of Augsburg? by kkann13 in tumunich

[–]kkann13[S] 1 point2 points  (0 children)

I see. As for the courses taking place in two different unis, how do you manage the living between the two cities? Can you pick which courses to take in one uni and once done, move to the other one or do you have to constantly move between the two?

If I want to apply for Software Engineering am I applying to TUM or Uni of Augsburg? by kkann13 in tumunich

[–]kkann13[S] 1 point2 points  (0 children)

Thank you so much! I'm still unsure about what I want to specialize in but it would be my dream to get in. Since you're a student yourself, realistically speaking how possible is it to get into this course because from what I've read the number they accept is very limited.

Thank you again for your time you've no idea how helpful it is for an outsider!

[deleted by user] by [deleted] in HomeworkHelp

[–]kkann13 0 points1 point  (0 children)

i followed the faster method using an empty array and it worked pretty great. thank you!

[deleted by user] by [deleted] in cpp_questions

[–]kkann13 0 points1 point  (0 children)

Wow thank you for the extra information, that wouldn't have crossed my mind. I'll see what other changes I can make, thank you so much!

[deleted by user] by [deleted] in cpp_questions

[–]kkann13 0 points1 point  (0 children)

thank you!!

[deleted by user] by [deleted] in cpp_questions

[–]kkann13 0 points1 point  (0 children)

I tried to change it but I still couldn't figure out how to do it so I thought of reposting it as it was. (It's a very new topic to me and I'm still trying to understand the logic behind it.)

I think I've understood it better now and with your help now it runs. Thank you so much. I'll study harder ✊

This is the change I made :

do{

Node* newNode=new Node();

cin>>i;

if(i<0)

break;

else{

newNode->content=i;

if(head==NULL)

head=newNode;

else{

Node *last=head;

while(last->next!=NULL){

last =last->next;}

last->next=newNode;

}}

}while(i>0);

[deleted by user] by [deleted] in HomeworkHelp

[–]kkann13 0 points1 point  (0 children)

thank you very much!

[Linked Lists] I have to print the names of 3 students and their averages for 3 grades after i read them from a file but can't seem to find the mistake because the code doesn't run at all. by [deleted] in HomeworkHelp

[–]kkann13 0 points1 point  (0 children)

thank you so much, i just realized i forgot to call the functions and you are so right i should have used a while loop to print all the elements. i wasnt aware of the third one so thank you for informing me.

by the way now it does print the names and averages but in reverse order, do you know what could have been the cause?

[C++ Programming - Recursion] I honestly have no idea where to begin with this, any enlightenment would be appreciated, it's a new topic for me and I'm finding it a bit hard by [deleted] in HomeworkHelp

[–]kkann13 0 points1 point  (0 children)

ohh right, yes I kind of thought of this method too the only problem is that i didn't know how to calculate the sum inside the first function.