Thursday, December 27, 2018

Internships in India for College Students

Internships in India for College Students
1.  http://www.twenty19.com/internships/
 Purpose:

  • Twenty19 is an student opportunity portal

 30 lakh+ college student trust twenty19..

 Twenty19 strives to educate and enable students to learn by doing.it's so useful for educated person.
2. https://internshala.com/


InternshalaInternshala is an internship and online training platform, based out of Gurgaon, India. Founded by Sarvesh Agrawal, an IIT Madras alumnus, in 2010, the website helps students find internships with organisations in India.



InternshalaInternshala Student Partner 11 (ISP) is India's largest studentcommunity. ... During this program, you will learn to lead from the front and develop essential skills like marketing and communication while you represent Internshalain your college and understand how it all comes together for a cause

Million+ of student on this website are apply national and multinational company for internship.
 

Join India’s largest student community







Pattern(python 2.7.15)

SOME IMPORTANT PATTERN IN PYTHON 2.7.15 PROGRAMMING LANGUAGE














Question 1.                                                                                                     OUTPUT:                                                               
                                                                                                  
n=input("enter any number")
for i in range(n):                                                        
    print("*")*i                                                            
print("*")*(i+1)                                                            
for i in range(n,0,-1):                                                 
    print("*")*i                                                 





Question 2..
  
n=int(input("enter the number"))
print("\n")
for i in range(0,n):
    print("  ")*i,
    for j in range(n,i,-1):
        print("*"),
    print

enter the number6

     * * * * * *
        * * * * *
           * * * *
              * * *
                 * *
                    *

Friday, December 7, 2018

RIGHT THING.

                     DO THE RIGHT THING. 

 The most original thing of every person is  do the right  thing .
yeah 
it's a most difficult task of everyone .


We always know 
it's the right thing,
when in the end 
there is peace.

Everybody know that  " right thing "  is  peacefull . 
but 
the  truth is that this path may be difficult for some person
or 
may be not .

 ~ last but not least 
but we can try to go this path 
for few minute , hour , day , week, year or whole life .




Arrays in Solidity Programming Language.

Arrays Solidity supports both generic and byte arrays. It supports both fixed size and dynamic arrays. It also supports multidimensional ...