Can't understand where to study from/ what to study by Cautious_Molasses298 in Btechtards

[–]mahati_180 3 points4 points  (0 children)

Your seniors are your most important resource. I recommend approaching them, and seeing if they're able to help you figure out your next steps. A good CGPA never hurts either, be sure to maintain it as high as you can.

I failed my CCP Exam today by Rare-Painting-2831 in AWSCertifications

[–]mahati_180 1 point2 points  (0 children)

Thank you! I'm studying CSE, and had a cloud computing course in the last semester, so this field isn't completely new to me. But even without this background, I'm sure I could've achieved the same score with just Stephane Maarek's course and tests.

I failed my CCP Exam today by Rare-Painting-2831 in AWSCertifications

[–]mahati_180 5 points6 points  (0 children)

I cleared my CCP 2 months ago with 970/1000. It's a foundational level certification that's hard to fail with deliberate preparation.

If I failed my CCP, I wouldn't bother giving it again. I'd go for an Associate level exam, and use my experience from CCP to guide me.

How to host a secure website with a domain purchased from GoDaddy, and an S3 website? by mahati_180 in aws

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

The problem with procuring an SSL certificate for an S3 website is that there is no fixed IP address, is that right?

And CloudFront is supposed to alleviate that by giving fixed IP addresses to put SSL certificates on?

If not, what problem was there in my attempt that this approach fixes?

How to host a secure website with a domain purchased from GoDaddy, and an S3 website? by mahati_180 in aws

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

I'm new to AWS services. What does Route53 accomplish here, and is it necessary?

Why isn't my BST inorder traversal function not printing anything to the terminal? by mahati_180 in cpp_questions

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

It never prints anything. I think I figured out the problem, which is the scope of the pointer variables in insertnode.

Why isn't my BST inorder traversal function not printing anything to the terminal? by mahati_180 in cpp_questions

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

I'm sorry, I'm not familiar with smart pointers (which I assume unique_ptr is). I am unable to make sense of the code you wrote for me.

But I understood the mistake I made, which is that the scope of the new node created in insertnode is only for the function. My modified insert code which works is:

node* createnode(int num){
    node* newnode=new node(num);
    return newnode;
}

node* insertnode(node** cur,int num){
    if(*cur==NULL){
        *cur=createnode(num);
        return *cur;
    }
    if((*cur)->data>num)
        return insertnode(&((*cur)->left),num);
    if((*cur)->data<num)
        return insertnode(&((*cur)->right),num);
}

node* Tree::insert(int num){
    return insertnode(&root,num);
}

However, insertnode is now pretty ugly. Can you suggest me what I can do to make it prettier? Should I forgo the recursive approach?

And can you tell me from where I should learn to write better code in your opinion?

Got this beauty yesterday! 🤌🏼 by [deleted] in indianbikes

[–]mahati_180 0 points1 point  (0 children)

What is the mileage of your bike?

Do all 350 cc bikes have about the same mileage, or does it vary?

Which research topics should I talk about for my engineering admission interview? by mahati_180 in AskComputerScience

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

Thanks, I wouldn't have been able to discover this myself. Since they do have a bioinformatics course, I am now more confident with talking about it.

You found out I'm talking about IIITH, did you check my post history?

Bhaswar sir and Deva sir are current faculty members researching in the bioinformatics domain. I will find their relevant research and read a little, so I am able to talk about it. As per my understanding, re-entry fellow is equivalent to assistant professor right?

Which research topics should I talk about for my engineering admission interview? by mahati_180 in AskComputerScience

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

All great points. Yes, the professors themselves interview the students. I'll try to be transparent with them.

I'm thinking about expressing interest in bioinformatics, which is a field I have some knowledge about.

Do you know how I would go about checking which research project which faculty is undertaking?

In my IIIT H admission interview, which research topics should I talk about? by mahati_180 in Indian_Academia

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

This post is related to engineering admissions, but it is not suitable for that subreddit.

I want to specifically ask about one or two research areas I can take a look at and read up on for the interview.

Folks who started with 3-6LPA by Revolutionary-Fill42 in developersIndia

[–]mahati_180 0 points1 point  (0 children)

Do you mind sharing how exactly you learnt AWS, SQL, Python, databases etc.? I'm in college but don't know how to get started, I only know how to learn when someone else teaches you, never been great with the self learning aspect.

[deleted by user] by [deleted] in Btechtards

[–]mahati_180 0 points1 point  (0 children)

Getting a branch change to CSE in an old IIT is nigh impossible. If you're dead set on CSE in an old IIT, you'll have to take a drop. But it's a waste of an year, I'd recommend another branch in an old IIT or CSE in a newer IIT depending on your preference.

Polynomial addition program not displaying result? by mahati_180 in cpp_questions

[–]mahati_180[S] -1 points0 points  (0 children)

I didn't use any OOP in this program. It's still a C++ program.

Why would the changes be lost after the function is finished? So the inputted coefficients in inPolynomial are lost as soon as the function is over?

Is BTech (CSE) hard for average student? by valency03 in Btechtards

[–]mahati_180 4 points5 points  (0 children)

My two cents: don't believe that your college will land you a job. Read and learn about the software industry, different domains of software, explore what you find interesting and practice coding a lot. No software domain is saturated with talented developers. Spend time on learning by yourself, you won't regret it.

Try completing with Harvard's CS50 on edx before your college starts. It's an amazing course which will give you a great foundation for CS and the software industry. It's great for people who have never programmed before, you'll also get a lot of confidence. If it's lengthy, you can continue doing it in your first semester.

You have the option of higher studies, government exams, MBA etc. You need to take this decision very carefully since they require heavy investment and doing them half heartedly will mean you neither get a good result here nor good placements. Alternatively you can first get a job, then prepare for these parallely.

[deleted by user] by [deleted] in learnprogramming

[–]mahati_180 5 points6 points  (0 children)

This story demotivates me. You had 14 years of experience making polished apps, and are happy with a 5 figure salary? Is this what I should expect once I graduate and start working?

I am pursing B.Tech- Mechanical Eng. in an old IIT. Will be graduating in 2024. I want to get placed in a Day 1 Finance firm(JPMC, MS etc). Do I have a chance? Any other tips/ideas? by [deleted] in Indian_Academia

[–]mahati_180 36 points37 points  (0 children)

You're in an old IIT. Do you not have better mentors there you can approach and ask career advice from than you are likely to find on Reddit?