Questions tagged [manual]

a technical communication document intended to give assistance to people using a particular system

A user guide or user's guide, also commonly known as a manual, is a technical communication document intended to give assistance to people using a particular system.

Wikipedia article

400 questions
-2
votes
3 answers

can anyone explain the output of this program

Given the following fragment of code, how many tests are required for 100% decision coverage? if width > length then biggest_dimension = width if height > width then biggest_dimension = height end_if else …
-2
votes
1 answer

Seeking for outdated intel optimization manuals (2010-2011)

I am reading Intel® 64 and IA-32 Architectures Optimization Reference Manual , from 2014 (not the latest), but the latencies reported at the end of the manual (APPENDIX C: INSTRUCTION LATENCY AND THROUGHPUT) stop at the Sandy architecture. I need…
Kroma
  • 1,109
  • 9
  • 18
-2
votes
1 answer

Help manual of google checkout and paypal

I'm trying to find help manuals of Google Checkout and PayPal with screenshots, online.
manish
  • 1
  • 1
-2
votes
1 answer

Learning C on Windows

I'm studying C now on my own and I have a long C# background. I have a few e-books about C but what I would really love is to find some authoritative material online such as manuals and reference content. When I need information about C# or the…
HelloWorld
  • 2,375
  • 5
  • 22
  • 21
-2
votes
5 answers

what is smoke testing? And at what circumstances we can use smoke testing in our project

I don't have a clear idea about smoke testing and sanity testing, some books say that both are same but some tester in some project called as a smoke testing and some tester in some project called as sanity testing, So please give me clear cut idea…
wasim159
  • 1
  • 1
-2
votes
2 answers

Odd or Even in PHP/MySQL

I want to ask how to set odd or event in mysql->php output. I can do this with that code: if($i%2 == 0) { $class = 'content'; } else { $class = 'contents'; } echo "... ...but if i remove manual a row in the mysql things…
SZ4
  • 61
  • 2
  • 9
-2
votes
8 answers

example of interactive manual for web app

I have requirement to write help(for example show description of what some button does) for my web app. Are there any good examples for doing this?
IAdapter
  • 62,595
  • 73
  • 179
  • 242
-3
votes
2 answers

libstdc++-doc simply ignores imported c functions,c++ really junky?

Each header from the C Standard Library is included in the C++ Standard Library under a different name, generated by removing the .h, and adding a 'c' at the start, for example 'time.h' becomes 'ctime'. The only difference between these…
Je Rog
  • 5,675
  • 8
  • 39
  • 47
-3
votes
1 answer

How to measure test coverage

How can i measure the coverage of the manual tests? Are there tools to measure the coverage of the manual tests? I have searched but all the articles refer to unit tests Thank you
-5
votes
1 answer

Convert C# to VB.Net WebBrowser Event

I know C# and I want to convert this code into VB.NET. lol.Navigated += new WebBrowserNavigatedEventHandler(Form1_Navigated); I used all Online Converters but didn't work. But I want to know how convert this code manually.
1 2 3
26
27