Skip to main content

Technical Facts.

Hi guys,
                 In this post we discuss about some technical facts ,which are you don't know.


Technical Facts.


1) i-phone company sheep their all products by airoplane:-

                                                Apple company don't sheep their products by sheep or other                 transportation method, they use only airoplane.


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


2)Wiki-pedia website is free for everyone ,anybody can edit information on its pages :-

                                                 Wiki-pedia website is free for everyone ,anybody can login and edit information on its pages.But we cannot write wrong information ,if we write some wrong information then their robotic programms correct this information.


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


3)In 1995 NASA was hacked by jonthon Jems using only single computer:-
                                           
                                                 In 1995 NASA was hacked by jonthon Jems (16 year old ) using only single computer. He hack data of 3000 users ,due to this NASA computer was off for three weeks.


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


4)Motorolla company has created a pill called as password pill ,it unlock all the device near it:-
                                               Motorolla company has created a pill called as password pill. If we ate this pill then all the device near you will unlock automatically.This pill don't affect on your body.



password pill.


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


5)Google buy at least one company per week:-
                                             
                                              Google buy at least one company per week. You tube ,Android was now bought  by Google.


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


6)Email existed before the world wide web:-                                                                           


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


7)Domain name registration was free till 1995:-


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

8)92 % of the world's currency is digital:-
                   
                                                   This mean most of money you earn ,transact ,spend ,they are only exist on computer ,hardwares. Only 8 % currency is physical money.

Digital currency.


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

9) Google ,YouTube ,Facebook,Twitter ,WhatsApp are banned in China:-


Technical fact.


****************************************************************************
10) 123456 is most common password hacked:-

123456 password fact.


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





Comments

alina said…
Hi. great information. I got a lot of information from your post. thank you for sharing this article with us. keep it up. check for techtalk here you can find some tips and tricks about technology.

Favourite post

Part 2 : TCS DCA python coding questions

TCS wings1 DCA python coding TCS elevate wings1 coding questions This post contains only coding questions asked in TCS digital wings1 or tcs elevate wings1 exam. If anyone want coding answer of these questions please comment me or reach me through email provided. Given a string str which consists of only 3 letters representing the color,(H) Hue, (S) Saturation, (L) Lightness, called HSL colors. The task is to count the occurrence of ordered triplet “H, S, L” in a given string and give this count as the output. This question was asked in April 21 Digital Capababilty Assessment Examples: A) Input HHSL Output 2 Explanation : There are two triplets of RGB in the given string: H at index O, S at index 2 and Lat index 3 forms one triplet of HSL. H at index 1, S at index 2 and Lat index 3 forms the second triplet of HSL. B) Input:   SHL Output: 0 Explanation : No triplets exists. In this 3 Palindrome, Given an input string word, split the string into exactly 3 palindromic substrings. Work...

Part 1 : TCS DCA python coding questions

TCS wings1 DCA python coding TCS elevate wings1 coding questions This post contains only coding questions asked in TCS digital wings1 or tcs elevate wings1 exam. If anyone want coding answer of these questions please comment me or reach me through email provided. Find how many Sexy Prime Numbers in a given range k and p.  Sexy prime means the prime numbers that differ from each other by 6. Where difference between two sexy prime numbers is 6. Constraint: 2 <=p<k<= 1000,000,000. Sample Input: 4  40 Output: 7 Explanation: [5,11] [7,13] [11,17] [13,19] [17,23]  [23,29] [31,37] Problem Description -: Given two non-negative integers n1 and n2, where n1 For example: Suppose n1=11 and n2=15. There is the number 11, which has repeated digits, but 12, 13, 14 and 15 have no repeated digits. So, the output is 4. Example1: Input: 11 — Vlaue of n1 15 — value of n2 Output: 4 Example 2: Input: 101 — value of n1 200 — value of n2 Output: 72 Consider the string S1 = 321 All char...

Calculator program using python tkinter

Project Name:- Simple Calculator Software using Python Tkinter. Dependencies:-                           1)Install  Tkinter- https://www.techinfected.net/2015/09/how-to-install-and-use-tkinter-in-ubuntu-debian-linux-mint.html                                 2)Install Math Library- for python3- pip3 install math  for python2- pip install math  ******************************************//************************************************************************ from tkinter import * from math import * class cal: def press( self ,n): self .text.insert(INSERT,n) def dl( self ): self .text.delete( 1.0 , 2.0 ) def equal( self ): self .exp= self .text.get( 1.0 ,END) try : self .result= eval ( self .exp) self .text.delete( 1.0 , 2.0 ) ...