aaaa12345
The most boring thing a girl will find is a guy who ask questions. Instead, try to build a rapport on common interest. Share interesting stories, incidents, jokes, deep concepts (philosophy can help too depending upon the type of girl you are speaking to) Also, if you ask question, they should be open ended.
. e. g Do not ask Did you go for the movie XYZ?
The answer will be Yes/No, but you can put it differently. I saw the movie XYZ, and I loved it. It is really worth watching.
She will have to explain that she saw it, did not see it, will go/not go to see it. this helps to fill in the void, and the conversation is more flexible and unstructured. Another variation if you have not seen the movie : I read the review of the movie ABC.
The critics are praising Ranbir Kapoor for his acting. This can take the conversation on the critics, movie, favourtie actor, stories etc. etc.
I would suggest you to read the book : How to win friends and influence people by Dale Carnegie. It is available on Amazon dot in for about 125 bucks odd and is well worth a read. Good luck
· Other Questions
What is it like to marry an Albanian man as a foreigner?
It is challenging but rewarding . Marrying outside of your culture is going more of a challenge.Albanian men from my experience are hard working, very moral and like to be the head of the house, make the decisions and avoid any domestic responsibilities.
The Albanian women seem to treat their men like kings and serve them like children. As a British woman I have found this hard to live up to! But i offer my own benefits.
I earn plenty of money, have travelled the world and can support him with navigating a Western world. So we are equal with what we provide for our family. My husband makes most of the decisions within our family including the finances and what we are striving towards.
He is sensible and ambitious and has more drive then myself. I support him.My inlaws have always been welcoming of me and are happy we married.
From my understanding they wanted him to find a wife of the same age, the same ethnicity, who had not been previously married and had no children. I met the wants of the family but if i did not I do not believe he would have married me even if he loved me.I feel an Albanian husband is a good choice for me and he has certainly made sure that we are doing well with our life together and achievements as a family.
------
What is the easiest online business to start for beginners?
The Easy Way takes money and luck. Advertising on Facebook using a graphic, congruent ad text and call to action.
IF it returns a positive cash flow, this would be a ticket to riches. When the audience size is large enough, you can scale that $20 a day ad spend to $5,000 a day. The No Money Ways: Starting any online business takes time.
It takes time to learn the basics besides constructing a favorable looking public site. Then comes the heavy lifting. Getting TRAFFIC.
There are different models to choose from. - Product or Service Business Having a product or service youre offering to the public. It could be local or appeal to a broader audience.
- Affiliate Marketing Instead of creating ones own product on one can promote quality products others created. One needs to center on a niche, develop content and promote affiliate products.- Drop Shipping Involves advertising products that you arbitrage by purchasing your customers request at a discount store such as AliExpress.
There are also freelance jobs one could perform. Fiverr is a popular marketplace. If one Googles: freelance jobs theyll be met with a huge list of online job choices.
I hope you have a LOT of money and find success the easy Facebook advertising way.If not, the non-Facebook advertising ways takes lots of work and are not easy but if you find one, please share.
------
What will be the output of the following code and how?
Output will be:2 4Sorry for this little long answer.Letu2019s execute step by step:First line of main function ( system(u201cclsu201d); ) is for clearing the output console, You might know this.Now letu2019s understand something in brief about static variables because in the next line there is a static variable declaration.
Point 1: static variables are always initialize with 1. Therefore i 0;Pint 2: static variableu2019s value does not changes after multiple function call. (This is bonus point, here itu2019s no use of this point).
Now in for loop the first statement is i, now this statement is post increment statement. Therefore in this step the value of i will become 2 (i 1).Now again next statement is i, therefore new value of i will become 2 (i 2).
Now the flow will come into the body of for loop. Now, there is cout
And now it checks whether i4 answer is no. Now again next instruction is i then again i 3, and next instruction is again i therefore i 4 . Now next instruction comes into the body of for loop.
Now cout
Thankyouu2026.
------
Why can't computers understand simple English language?
The real stumbling block is that computers understand very little to start with.
Its less a matter of processing english and more a problem of not having concepts to map the language onto. Most of the ambiguity in the human language is easily figured out when you understand the world. Yes, there are some sentences which are truly ambigous and even humans get confused, but they aren't the stumbling block.
If that was all that interfered with computers understanding english, we'd be happy. Most of the time, though, only one interpretation makes sense because of your world knowledge. In order to understand text, you have to know the meaning behind each part.
Fully solving this will probably require a true AI. In the meantime, we try to scrape by and figure out as much as we can without this understanding, and use other data sources and statistical methods to try to replace it. For instance, you know that dogs chase cats, but a computer may have to realize that dog and cat often appear together connected by chase, with the dog doing the chasing, in a lot of text.
Even then, it can't visualize a dog chasing a cat and understand the reprecussions of this, it just knows this phrase occurs a lot.
------
Whatu2019s wrong with char *ptr "Hello World"; printf("%cn", ptr);?
%s in a printf format string accepts a memory address, and is converted to the null-terminated string starting at that address.
%c in a printf format string accepts an 8-bit integer (which is what a "char" actually is), and copies that single character into the string. If a larger integer is passed to %c, only the low-order 8 bits matter. Therefore,n- ptr, without the preceding asterisk, stores the memory address where the "Hello World" string starts.
So printf("%sn", ptr) corresponds to the intended use of %s.n- printf("%cn", ptr) interprets the memory address as an integer, and prints the character corresponding to its bottom 8 bits. In general, you do not know in advance what this value will be; getting 'H' (which has ASCII encoding 72) is a coincidence!
(I did not get 'H' when I compiled and ran the same code.) Though you'll usually get a multiple of 8 or 16.n- *ptr is just the number 72.
Modern operating systems ensure that small numbers like this are not valid memory addresses for your program to access. printf("%sn", *ptr) attempts to look up the string starting at memory address 72, and the hardware/operating system detects this illegal operation and causes your program to abort ("segmentation fault").n- printf("%cn", *ptr) corresponds to the intended use of %c, and would yield 'H' if it executed.
As a practical matter, compiling with gcc -Wall will let you easily catch most missing or extra asterisk errors. Whats wrong with the following code?.
------
Is it worth learning assembly?
It really depends on what area you intend to work in.Web apps?
Payroll systems? Windows apps? Almost any GUI apps?
Very little practical value there as you will likely never use it and are so far away from the hardware that the lessons you learn wonu2019t be applicable.But in the area of resource constrained embedded systems?Abso-flipping-lutely.
And by u201cresource constrainedu201d I mean 4- and 8-bit microcontrollers which may or may not have any compilers available for them. And yes, they are still widely in use.Consider a consumer product which sells for less than a dollar, a ships millions of units per year.
Every penny you save on materials can turn into tens of thousands of dollars in extra profit. Even working in the wide range of 8-bit chips with C support, youu2019ll need to understand the chipu2019s architecture and instruction set to maximize the work you get out of it. Not to mention when the compiler gets something wrong (Yes, Iu2019m looking at you Microchip, especially bank switching in ISRs) with an obscure architecture.
It is also a necessity if you ever want to really understand Knuthu2019s Art of Computer Programming series, as he invented his own u201cmachineu201d and u201cmachine languageu201d for implementing all the algorithms. Is learning Assembly language worth the time?
------
Why are Albanian women so stunningly beautiful?
There are many beautiful Balkan women. The most beautiful Albanian woman (and dare I say one of the most beautiful women) I've ever seen is 22-year-old Megi Luka. She has won Miss World Albania twice and represented Albania in the Miss Universe pageant.
Her gorgeously shaped big green-blue eye's really make her face. She's one of the rare extremely naturally stunning women you almost rarely find. Which is ironic because she grew up in a rural area in Albania.
It seems like many of the extreme beauty's grew up in rural areas almost as if they're beauty needs to be hidden from the world. A rare natural beauty. One time before a red carpet event when she was getting her makeup done in the makeup chair, the makeup artists actually told her that she didn't even need to wear any makeup to go out there since she's already incredibly naturally beautiful.
They gave her the option of going out to the red carpet with or without makeup, but sadly she chose to wear makeup. She's incredibly lucky to be born so naturally beautiful, I am very envious of the rare few women who were born naturally incredibly beautiful. She has this unique looking beauty.
She's a straight 10/10 because she's a very sweet and kind hearted person as well as being beautiful on the outside