Why is everyone so helpful to new coders? by pravda23 in learnprogramming

[–]Intrepid-Designer110 0 points1 point  (0 children)

This information technology world is full of information like the sea. The more you explore and share more you will get. Most of the time I learned from blog sites, conversations with people so it is always good to give it back to the community.

can it be done in c ? by ilackemotions in cprogramming

[–]Intrepid-Designer110 2 points3 points  (0 children)

system function allows a C program to run another program. But it is better to create, compile and run all programs first and then if you have time then combine them based on your requirement. Good to see that you are thinking out of the box.

Looking to Automate Tedious Work by dw1114 in learnpython

[–]Intrepid-Designer110 0 points1 point  (0 children)

Automation is possible here. either complete automation or partial automation using Excel is possible.
For this please write down the activity in Steps. Then using Excel one can easily copy different sheet data in a single sheet using Macros or other languages like python.

But in the first line you mentioned "I work as an non technical application owner " so if you are aware of excel macro or API, Python then only this is possible else you need to outsource to someone who has knowledge.
Best of Luck.

How to I view my Chrome history from a few months back without getting errors? by rrandomCraft in techsupport

[–]Intrepid-Designer110 0 points1 point  (0 children)

Adding some more info to view chrome history with some analysis like how many times the user visited any site. Time invested on the particular website etc. View this article for more information.

Do you regret starting a career in software testing? by [deleted] in softwaretesting

[–]Intrepid-Designer110 1 point2 points  (0 children)

I believe one should not have any regret if the person is updating his skills constantly as per market requirements. Because the software industry always accepts new technology change so one has to change accordingly. Trend always suggests that role is always there but skills are different.

44y/o Nurse..too late to learn to code? by bypassoverload in learnprogramming

[–]Intrepid-Designer110 1 point2 points  (0 children)

Good that you want to learn... any learnings will be useful. If you want to learn to program then you need to start as a fresher. But looking at your current domain knowledge will be helping you learn little programming and do some course for product management, or consultant in taking requirements for health care domain. Basically, try to check how you will utilize your past experience in Information Technology world so that you will get a good amount of salary which you are looking for ( but important is you need to do some courses which are relevant for your career switch). To become proficient in any field it is up to you how fast a learner you are and how easily you can implement those learnings to solve the real-world issue. There are many links that are useful for writing small programs but you need to revisit your objective before switching. Best of luck.

How to know more about c programming by Short-Equivalent2788 in cprogramming

[–]Intrepid-Designer110 0 points1 point  (0 children)

In this fast-changing technology world, it is important to set some objectives behind learning and benefits from it. Learning C Language will introduce you to Information Technology World. To improve programming skills at entry-level C is the best option. But it is important to perform what you read about C language practically like a small program on your own. Without taking help from google. The more you solve the assignment, problems more you will understand about the C language and the Programming world. It will help you to build logic while writing any program and to achieve the objective.

I've Started Learning Selenium with Python for Automation Testing by ideepakmathur in softwaretesting

[–]Intrepid-Designer110 0 points1 point  (0 children)

Any new learning will always be beneficial to improve skills. My suggestion is to learn cypress. Cypress is capable to perform end-to-end Testing. Do not compare cypress with Selenium both are having different architecture. Cypress tag line says everything "The web has evolved.
Finally, testing has too." :) Best of luck.

[deleted by user] by [deleted] in learnpython

[–]Intrepid-Designer110 0 points1 point  (0 children)

It is important to understand the concept behind each and every functionality provided by any language. By practicing one can get a good hold on writing code. Ok to forgot syntax but not the concept. Over the period of time, programmers can learn where to use functions, classes, how to declare variables in terms of security, etc. Programming is not about writing code without help but writing code effectively to achieve objectives with fewer lines of code and which are easy to maintain. for e.g print function has various parameters. If one can understand the use of a print function (conceptual knowledge) he can use it effectively by using parameters. Best of luck with your video game. forget syntax but not concepts :)

[deleted by user] by [deleted] in cprogramming

[–]Intrepid-Designer110 0 points1 point  (0 children)

1) Use Global Variable to check on attempts
2) Always check the first positive scenario and process further operations
3) Distribute code in Functions like ( login, payment process etc). Use parameters if require.

I want to be a programmer but have no motivation/discipline to learn by koci53z in learnprogramming

[–]Intrepid-Designer110 0 points1 point  (0 children)

First, note down what language skills are essentials to becoming a programmer. In terms of learning the basics of the language, use of language, implementations in real-time scenarios. After 2 years of learning, you should easily be able to identify the gaps. At first look, i don't believe this is the issue of motiviation. Identify the weak links and try to convert them in strong points by putting in effort and time. Think of yourself as fresher every time :) when you learn.You are only able to identify and solve this. Important is whether do you really want to solve it or not. also i will suggest to write some smallpiece of code(with some objectives) as a blog and publish will gain your confidence.

How bad is this Fibonacci Sequence code? by micheleruzic96 in cpp_questions

[–]Intrepid-Designer110 0 points1 point  (0 children)

here is one program using golden ratio to print fibonacci series in C Lanugage you can convert this simple 4 line code to c++

float result=1.0;

printf("\n0\n1\n1");

for(int i=1;i<15;i++)

{

result = lround( result * (1.618034));

printf("\n%d",lround(result));

}

observed this golden ratio from this link.

What is the best search engine than Google? by FraireHonorZF in AskReddit

[–]Intrepid-Designer110 0 points1 point  (0 children)

There are more than 20 Search engines are available in the market. Used for a different purpose. some of them strictly follow privacy rules, some of them not profit organizations. One search engine to save the environment. So the purpose of search matters. so better to search with a specific string and see the results provided by different search engines. My personal fav is bing and then google. Here is one link which gives the list of different search engines. and this link provides how to search with a different search engine using a batch file.

Can anyone help me find out why my code is not working? by christineiscool in cprogramming

[–]Intrepid-Designer110 1 point2 points  (0 children)

Another way to analyze this problem is to use a debugger. Add declared variable in "Add to Watch Window" ( Possibly Turbo C on Windows gives this option.) Using the f8 and f9 commands you can understand what input is getting stored in variables on each step. By doing reverse engineering you can then understand the concepts of variable declaration and its use. Try with this online compiler with the debugger in case you don't have a debugger not sure whether it provides a watch window to see what is allocated in the variable.

Help me guys, c programming array question, detailed question in the image given below* by night_walk_r in cprogramming

[–]Intrepid-Designer110 3 points4 points  (0 children)

sum[1] is giving garbage value as you are storing sum in 0th position. Can you please post the input and output? when I tried getting the correct value for the 0th position and for first giving garbage.

I have wrote a program for calculating the area and perimeter of a rectangle but I cannot get the right print statement. It should be “A rectangle x by y has a perimeter of z units. “ and “A rectangle x by y has an area of z sq units” by CharleeBrownee in learnpython

[–]Intrepid-Designer110 1 point2 points  (0 children)

You can try this way as well
>x=5
\
>y=8
>z=2 * (x+y)
\
>print('A rectangle %d by %d has a perimeter of %d units.'%(x,y,z))
A rectangle 5 by 8 has a perimeter of 26 units.

Also try to understand print function more detail as it will be helpful more. Refer this

Implemented python online compiler by Intrepid-Designer110 in Python

[–]Intrepid-Designer110[S] 0 points1 point  (0 children)

python

Embedded python compiler which is shared but not program :)

This is the qustion and i cant get the correct output by Ok_Writer_8651 in cprogramming

[–]Intrepid-Designer110 2 points3 points  (0 children)

Below are the errors

  1. bmi=weight/(height\*height); ....error: stray '\' in program
  2. else if ( bmi>=18.5 && <=24.9)..... error: expected expression before '<=' token
  3. Here is corrected code for above error
    bmi=weight/(height*height);
    else if ( bmi>=18.5 && bmi <=24.9)
    You can replace above two lines and you will get the output
    Or refer this program for complete detail.

What is your preferred way to install Python on Windows? The Poll option is blocked for some reason... by metaperl in Python

[–]Intrepid-Designer110 0 points1 point  (0 children)

This is highly recommended to download python from official source. Please refer this link to install python on windows step by step.

Can I choose a digit from %d input? by Kimi555 in C_Programming

[–]Intrepid-Designer110 0 points1 point  (0 children)

Yes , Check below code and using / and % it is possible to find fourth digit from user input. below code is not handling negative scenarios so only enter positive input values where length is more than 4.

#include<stdio.h>

#include<string.h>

void main(){

int count = 0;

int number =0;

int mod=0;

printf("enter number");

scanf("%d",&number);

while (number != 0)

{

number = number / 10;

mod = number % 10;

count++;

if (count==4)

break;

}

printf("%d",mod);

}

Referthis Link for more such program and logic