Tell Me Something About Yourself - Interview Answers.
Try to introduce some of your most important employment-oriented skills as well as your education and accomplishments to the interviewer. Answer to this question is very important because it positions you for the rest of the interview. That's why this statement is often called the "Positioning Statement".
One should take the opportunity to show his/her communication skills by speaking clearly and concisely in an organized manner. Since there is no right or wrong answer for this question hence it is important to appear friendly.
YOUR ANSWERS CAN BE:
1) I am a person with strong interpersonal skills and have the ability to get along well with people. I enjoy challenges and looking for creative solutions to problems.
2) Besides the details given in my resume, I believe in character values, vision and action. I am quick in learning from mistakes. I am confident that the various tests that you have conducted will corroborate my competencies aptitude and right attitude for the…
One should take the opportunity to show his/her communication skills by speaking clearly and concisely in an organized manner. Since there is no right or wrong answer for this question hence it is important to appear friendly.
YOUR ANSWERS CAN BE:
1) I am a person with strong interpersonal skills and have the ability to get along well with people. I enjoy challenges and looking for creative solutions to problems.
2) Besides the details given in my resume, I believe in character values, vision and action. I am quick in learning from mistakes. I am confident that the various tests that you have conducted will corroborate my competencies aptitude and right attitude for the…
i want program for this output,if we enter 4352 means output will come like this
ReplyDelete4
4 3
4 3 5
4 3 5 2
In TCL
Deleteset a 4352
set spl [split $a ""]
set len [llength $spl]
for {set i 0} {$i <$len} {incr i} {
puts [lappend list [lindex $spl $i]]
}
set a 4352
Deleteset spl [split $a ""]
set len [llength $spl]
for {set i 0} {$i <$len} {incr i} {
puts [lappend list [lindex $spl $i]]
}