answersLogoWhite

0

What else can I help you with?

Related Questions

Can a woman get aids from another woman when neither women have aids?

No not if neither of you have aids. You two should get checked for aids so you two dont feel uncomfortable. Just be careful and always have your partner get checked first and you should get checked frequently for STD's as well.


How many people is 'neither' referred to?

The term "neither" typically refers to two people or things, indicating that neither of the two options is applicable or present. It is used to exclude both subjects mentioned. In contexts where more than two subjects are considered, "neither" would still specifically apply to the two that are referenced.


What's the difference between neither and none?

Neither is usually used when talking about two people or two groups of people. Example: Neither of the two sisters could attend their cousin's wedding. None is usually used when talking about more than two people, or all of the people. Example: None of her relatives wanted to go to the wedding.


How the Newton rings are formed in transmitted light because the transmitted rays are not coming from two sources neither they are coming from two diff places which is basic condition of interference?

The direct way is the one and another ray getting reflected two times at the inner face of the lens would have a path difference and there by we get two different waves with phase difference which cause interference.


Is neither an adjective?

"Neither" is not an adjective; it is a pronoun or a determiner that is used to refer to each one of two people or things.


List two ways that diseases can be transmitted between people?

direct blood transmissiom victor borne transmission


How do write a function that receives two pointers to character strings where the function concatenates the two strings and prints the new concatenated string?

#include <iostream> #include <string> std::string* concat_print_strings(std::string* pStr1, std::string* pStr2 ) { std::string * strResult = new std::string( *pStr1 ); strResult->append( *pStr2 ); std::cout << strResult->c_str() << std::endl; return( strResult ); } int main() { std::string str1 = "This is a string."; std::string str2 = " And this is another string."; std::string* pStr = concat_print_strings( &str1, &str2 ); delete( pStr ); pStr = NULL; return( 0 ); }


What is the C plus plus plus program for the addition of two numbers?

#include<iostream> int main() { int num1, num2; std::cout << "C++ addition program" << std::endl; std::cout << "Enter a number: "; std::cin >> num1; std::cout << "Enter another number: "; std::cin >> num2; std::cout << "The sum is " << num1 + num2 << std::endl; }


Rearrange the string in alphabetical order in two dimensional character array?

Use a std::vector<std::string>> to store the strings, then call the std::vector::sort() method.


How do you write a C plus plus program to read two numbers and display the larger value?

#include<iostream> int main (void) { int a, b; std::cout << "Enter two whole numbers:"; std::cin >> a >> b; std::cout << "The largest of " << a << " and " << b << " is << (a>b?a:b) << std::endl; }


Why does the clinical thermometer must clean?

Diseases could get transmitted orally between two people if the instrument is not cleaned properly.


How do you write a c plus plus program to read two floating point numbers and find the sum and average?

#include<iostream> int main() { double a, b; std::cout << "Enter a number: "; std::cin >> a; std::cout << "Enter another number: "; std::cin >> b; std::cout << "Sum: " << a + b << std::endl; std::cout << "Average: " << (a + b) / 2 << std::endl; }