Recent content by Akshay_Anti

  1. A

    A Curious Question about LCD Display

    That could be possible. But one question- suppose the green pixel is blocked, why would I see magenta color, shouldn't i see a mix of red and blue- purple?
  2. A

    A Curious Question about LCD Display

    True that. The LCD screen is made up of pixels and contains fluid crystal matrix filled in it. Application of mechanical pressure to the screen tends to displace the pixels from that area and also causes color providing matrix to drift away. Press it too hard or for long time and then you'll...
  3. A

    A Curious Question about LCD Display

    Hello, I have observed that if by chance a hair strand manages to cling to LCD Screen like TV or laptop screen, a small region near the hairline shows chromatic abberation. Is it due to some diffraction or Interference? Please explain.. Thanks in advance
  4. A

    Practical Examples of RK4 Method for Second Order Differential Equations

    Hello, I need some examples of practical second order differential equation that can be solved by Runge kutta method. I tried searching on net but couldn't find a satisfying answer. Please help.. Thanks in advance
  5. A

    Which IDE is best for a college student learning multiple programming languages?

    Hello, I am a college gong student and thus will be taught about new programing languages like C/C++, Java, HTML, etc. I am using dev cpp as IDE at the moment. However, I am not comfortable with the same and want to switch. A senior of mine suggested me using Netbeans, another Visual Studio and...
  6. A

    Shutdown sequence initialisation

    Could you guide me on how to proceed? I am a new enthusiast and know quite less about the same.. Thanx
  7. A

    Shutdown sequence initialisation

    Hello, How to create a batch file that shuts down system at a particular time (not countdown but when the time approaches, it shuts down the system) after closing all the open programs? I don't want to use task scheduler P.S. how to make it a batch file that runs even when the system is...
  8. A

    Conflict between experimental and theoretical probability results

    true that... but all coins being biased in a similar fashion that heads turn up more than tails? That's not just co-incidence...
  9. A

    Conflict between experimental and theoretical probability results

    exactly... as the no of trials increase, the value tends to 0.500 but when i searched for documentations on net, i found only 1 case when no of occurences of tails was larger.. And that too after 15 cases in favour of heads... Any idea why?
  10. A

    Conflict between experimental and theoretical probability results

    Hello! Recently, I read abt some experiments related to probability which involved tossing of coins.It listed the experiments performed by following- Comte buffon:- 2048 heads from 4040 tosses. J E Kerrich:-5067 heads from 10000 tosses. Karl Pearson:-12012 heads from 24000 tosses. My...
  11. A

    C/C++ How to Handle an Infinite Loop in C/C++ Code?

    i can check using if() condition, but how to check for escape character?
  12. A

    C/C++ How can I add a time delay before the exit command in C/C++?

    Hello! I was writing a basic program and was wondering about this problem:- when i give exit(0); the compiler exits as soon as that part of code is reached. Is there any piece of code such that after it reaches that part of code, it waits for some time before executing exit command? This can...
  13. A

    C/C++ How to Handle an Infinite Loop in C/C++ Code?

    Hello there! I typed this code and saved it as a .c file #include<stdio.h> #include<stdlib.h> #include<conio.h> int main() { int a; while(1) { if (kbhit()) { system("cls"); printf("%d...
Back
Top