Skip to main content

Posts

web desinging samples

 web design samples WEB DESING : CLICK WEB DESING :  CLICK WEB DESING :  CLICK https://docs.google.com/document/d/1444gtjrX8JfTSqsZtfHhk3jrfw44fFar/edit?usp=sharing&ouid=112956812795444694362&rtpof=true&sd=true https://drive.google.com/file/d/1Bfg5bpY_Gw2STEIpipzUZDFumoLpLz0H/view?usp=sharing

Pragma Edge are Hiring

    Pragma Edge are Hiring || Graduates || 2019 TO 2023 BATCH Job Application 1:- Company: Pragma Edge Role: Development & Support Engineers Job Location: Hyderabad requirements : Qualification:  B.Tech (CSE, IT, ECE), BSc (Comp), M.Tech, BCA, MCA. Batch:  2021/2022/2023 Graduates, All candidates must be 70% & above. Required Skills:  C, C++/ Core Java/ Oracle Database/ SQL Database, Cyber Security/ AWS/ Devops/ Linux/ Unix, Angular 5/6/7/8, Hibernate, Data Science, Spring boot apply link Job Application 2:- Jr Associate Engineer - Freshers Company: Pragma Edge Role: Development & Support Engineers Job Location: Hyderabad job category-IT job type - full time ,permanent Experiance: freshers      Job Description 1.Excellent Communication skills 2.Strong understanding and analytical skills 3.Basics of any Programming Language 4.Ability to work on XML, XPaths. 5.High level understanding of REST APIs. 6.Delivering work assigned by Technical lead and key stake holders 7.Able to t

Learn Python

  Python  what is data type ?  to declaring of a variable is called data type  another words to declare the data what type of the data it is ! data types ? Text Type: str Numeric Types: int ,  float ,  complex Sequence Types: list ,  tuple ,  range Mapping Type: dict Set Types: set ,  frozenset Boolean Type: bool Binary Types: bytes ,  bytearray ,  memoryview None Type: NoneType                                                    more CODE FOR LIST SLICING: ------------ word=input('what is word?:') print(word[1::2]) ------ input: rhaajrui output :HARI --------------- where 1=index of word  2= after second letter will be print at everytime SECOND ONE   word='rhaajrui' print(word[1::2]) output:hari CODE FOR REVERSING OF A STRING:  ---------------- word=input('what is word?:') print(word[::-1])   ------ input: IRAH output :HARI --------------- CODE FOR  STRING FORMAT: name='krishna' age='18' sex= 'male' print(f'the age of {name} is {age}