GUVI
19.7K subscribers
813 photos
119 videos
1 file
754 links
GUVI (Grab Your Vernacular Imprint)
An HCL Group Company | 3M+ Learners | 19 Languages | 1000+ Hiring Companies
Master Tech Skills in your Native Language

Career Consultation: https://bit.ly/4j2Lt21
Download Telegram
Get to know with RPA that's associated with "way of automating repeating and often rules-based processes" whereas AI and ML is concerned with "thinking" and "learning". Witness the flexible low-investment less complex alternative to traditional solutions that are used for data manipulation and communications across multiple IT systems.

Interested in learning RPA, Enroll in GUVI RPA Crash course for free. Visit www.guvi.in/rpa?utm_source=telegram today.

#learntocode #guvi #codingislife #progamming #rpa
https://www.instagram.com/p/B_IEHnzhXyh/?igshid=1n4wzi54sq0ow
Question of the Day
After compilation of the java source code,which file is created by the JVM.
Anonymous Quiz
51%
a).class
42%
b).java
5%
c).cdr
3%
d).doc
*Basics of Web Storage*
https://youtu.be/LPn0ATpidQQ

The Web Storage API provides mechanisms by which browsers can store key/value pairs, in a much more intuitive fashion than using cookies.

Watch this video to know more about Web Storage and Its Uses.

Visit www.guvi.in/courses to Learn more.

Follow us on telegram for more resources and Daily quizzes - http://cutt.ly/guvi-telegram

Follow us on LinkedIn: https://www.linkedin.com/company/guviofficial
Question of the Day
Suppose income is 4001, what will be the output of following python code?

if income > 3000: print("Income is greater than 3000") elif income > 4000: print("Income is greater than 4000")
Anonymous Quiz
50%
Income is greater than 3000
27%
Income is greater than 3000 followed by Income is greater than 4000
18%
Income is greater than 4000
4%
Income is greater than 4000 followed by Income is greater than 3000
Question of the day
Question of the day:

a=input("Enter the number:") b=a*a print("The square of number is:",b) What will be the output if a value is 5?
Anonymous Quiz
58%
a) The square of number is:25
7%
b) Name Error
26%
c)Type Error
9%
d)The square of number is:55
Enter a chance to win an Alexa Echo Dot by proving your coding proficiency.

GUVI Telegram Alexa Contest Week#5 is starting on September 19
*Basics of JavaScript*
https://youtu.be/ejG0zqG_vl0

JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat.

Watch this video to know more about Java Script and Its fundamentals.

Visit www.guvi.in/courses to Learn more.

Follow us on telegram for more resources and Daily quizzes - http://cutt.ly/guvi-telegram
Question of the day
Question of the day

list[]=[21,22,23,24,25] for i in range(1,3): print(i) for j in range(1,6): print(j,end="") print()
Anonymous Quiz
20%
a) [21,22,23,24,25]
50%
b) 1 12345 2 12345
11%
c) [1,2,3,4,5]
20%
d) [1,2,3,4,5] [1,2,3,4,5] [1,2,3,4,5]
In 2014, a small instant messaging company with about 50 employees was acquired for $19 billion – more than the GDP of Afghanistan at the time. The same year, Google acquired a London-based startup who’s product beat the world’s best chess

The companies we’re talking about are WhatsApp and Deep Mind, respectively. Do you sense a pattern here? They’re all heavily valued for, and rely on, the data and artificial intelligence in their products.

AI, ML and Data Science have emerged as the most significant career options in the present years. But which one is the best for your career? Keep reading in our blog - http://bit.ly/AIvMLvDL

#GUVI #AI #artificialintelligence #deeplearning #datascience
Question of the day:
Question of the day :

What is the output of the following program? guvi = lambda guvi2: guvi2 * 2 guvi1 = lambda guvi2: guvi2 * 3 output = 2 output = guvi(output) output = guvi1(output) output = guvi(output) print(output)
Anonymous Quiz
11%
a) 2
30%
b) 12
52%
c) 24
7%
d) 36